Searched refs:oldfile (Results 1 – 7 of 7) sorted by relevance
/openbmc/openbmc/poky/bitbake/lib/bb/parse/parse_py/ |
H A D | BBHandler.py | 132 oldfile = d.getVar('FILE', False) 134 oldfile = None 142 if ext != ".bbclass" and abs_fn != oldfile: 160 if ext != ".bbclass" and oldfile and abs_fn != oldfile: 161 d.setVar("FILE", oldfile)
|
H A D | ConfHandler.py | 115 oldfile = None 117 oldfile = data.getVar('FILE', False) 153 if oldfile: 154 data.setVar('FILE', oldfile)
|
/openbmc/openbmc/poky/meta/recipes-devtools/syslinux/syslinux/ |
H A D | 0003-linux-syslinux-implement-install_to_ext2.patch | 55 + const char *oldfile = "extlinux.sys"; 91 + retval = ext2fs_namei(e2fs, root, cwd, oldfile, &oldino); 93 + retval = ext2fs_unlink(e2fs, cwd, oldfile, oldino, 0); 96 + program, oldfile);
|
/openbmc/linux/scripts/ |
H A D | bloat-o-meter | 52 def calc(oldfile, newfile, format): argument 53 old = getsizes(oldfile, format)
|
H A D | checkpatch.pl | 1301 my $oldfile = $file; 1347 $file = $oldfile if ($is_git_file);
|
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | upgrade.py | 71 for oldfile in files: 72 if oldfile.endswith('.inc'): 73 if oldfile.find(oldpv) != -1: 74 newfile = oldfile.replace(oldpv, newpv) 75 if oldfile != newfile: 76 bb.utils.rename(os.path.join(path, oldfile),
|
H A D | standard.py | 2299 for oldfile, newfile, newfileshow in comparelist: 2300 if oldfile: 2301 with open(oldfile, 'r') as f: 2304 oldfile = '/dev/null' 2310 diff = difflib.unified_diff(oldlines, newlines, oldfile, newfileshow)
|