/openbmc/linux/drivers/scsi/aic7xxx/aicasm/ |
H A D | aicasm_scan.l | 462 FILE *newfile; 465 newfile = NULL; 468 newfile = fopen(file_name, "r"); 470 if (newfile == NULL && type != SOURCE_FILE) { 484 if ((newfile = fopen(fullname, "r")) != NULL) 489 if (newfile == NULL) { 507 yy_switch_to_buffer(yy_create_buffer(newfile, YY_BUF_SIZE));
|
/openbmc/openbmc/poky/meta/lib/oe/ |
H A D | recipeutils.py | 781 for i, (newfile, param) in enumerate(srcfiles.items()): 787 srcfile = os.path.basename(newfile) 812 copyfiles[newfile] = param 814 institem = install.pop(newfile, None) 937 for newfile, param in copyfiles.items(): 942 … newfile = os.path.join(os.path.split(newfile)[0], patchdir, os.path.split(newfile)[1]) 944 if os.path.abspath(newfile) != os.path.abspath(filedest): 945 if newfile.startswith(tempfile.gettempdir()): 946 newfiledisp = os.path.basename(newfile) 948 newfiledisp = newfile [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | recipetool.py | 97 …def _try_recipetool_appendfile(self, testrecipe, destfile, newfile, options, expectedlines, expect… argument 98 cmd = 'recipetool appendfile %s %s %s %s' % (self.templayerdir, destfile, newfile, options) 101 def _try_recipetool_appendfile_fail(self, destfile, newfile, checkerror): argument 102 cmd = 'recipetool appendfile %s %s %s' % (self.templayerdir, destfile, newfile) 1008 …def _try_recipetool_appendsrcfile(self, testrecipe, newfile, destfile, options, expectedlines, exp… argument 1009 …ipetool appendsrcfile %s %s %s %s %s' % (options, self.templayerdir, testrecipe, newfile, destfile) 1023 def _try_recipetool_appendsrcfile_fail(self, testrecipe, newfile, destfile, checkerror): argument 1024 …cmd = 'recipetool appendsrcfile %s %s %s %s' % (self.templayerdir, testrecipe, newfile, destfile o… 1040 … testrecipe, filename=None, destdir=None, has_src_uri=True, srcdir=None, newfile=None, remove=None… argument 1041 if newfile is None: [all …]
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | append.py | 223 (stdout, _) = bb.process.run('LANG=C file -b %s' % args.newfile, shell=True) 299 st = os.stat(args.newfile) 302 install = {args.newfile: (args.targetpath, perms)} 305 …oe.recipeutils.bbappend_recipe(rd, args.destlayer, {args.newfile: {'newname' : sourcepath}}, insta… 335 for newfile, srcfile in files.items(): 350 copyfiles[newfile] = {'newname' : os.path.basename(srcfile)}
|
/openbmc/linux/scripts/ |
H A D | bloat-o-meter | 52 def calc(oldfile, newfile, format): argument 54 new = getsizes(newfile, format)
|
H A D | checkpatch.pl | 7768 my $newfile = $filename; 7769 $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace); 7775 open($f, '>', $newfile) 7776 or die "$P: Can't open $newfile for write\n"; 7793 Wrote EXPERIMENTAL --fix correction(s) to '$newfile'
|
/openbmc/linux/net/ |
H A D | socket.c | 487 struct file *newfile; in sock_map_fd() local 494 newfile = sock_alloc_file(sock, flags, NULL); in sock_map_fd() 495 if (!IS_ERR(newfile)) { in sock_map_fd() 496 fd_install(fd, newfile); in sock_map_fd() 501 return PTR_ERR(newfile); in sock_map_fd() 1907 struct file *newfile; in do_accept() local 1930 newfile = sock_alloc_file(newsock, flags, sock->sk->sk_prot_creator->name); in do_accept() 1931 if (IS_ERR(newfile)) in do_accept() 1932 return newfile; in do_accept() 1956 return newfile; in do_accept() [all …]
|
/openbmc/openbmc/poky/meta/recipes-devtools/elfutils/files/ |
H A D | 0001-tests-Makefile.am-compile-test_nlist-with-standard-C.patch | 26 TESTS = run-arextract.sh run-arsymtest.sh run-ar.sh newfile test-nlist \
|
/openbmc/openbmc/poky/meta/classes-global/ |
H A D | package.bbclass | 192 newfile = os.path.join(root, o) 195 newfile = newfile.replace('*', '[*]') 196 newfile = newfile.replace('?', '[?]') 198 the_files = [newfile] 213 d.setVar('FILES:' + pkg, oldfiles + " " + newfile)
|
/openbmc/qemu/scripts/codeconverter/codeconverter/ |
H A D | patching.py | 400 newfile = self.filename.with_suffix('.changed') 401 self.write_to_filename(newfile) 402 os.rename(newfile, self.filename)
|
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/strongswan/ |
H A D | strongswan_6.0.0.bb | 129 newfile = '/' + os.path.relpath(f, dvar) 132 d.setVar('CONFFILES:' + pkg, newfile) 134 d.setVar('CONFFILES:' + pkg, oldfiles + " " + newfile)
|
/openbmc/openbmc/poky/scripts/lib/devtool/ |
H A D | standard.py | 700 newfile = os.path.join(config.workspace_path, '.devtool_md5_new') 703 with open(newfile, 'w') as tf: 725 bb.utils.rename(newfile, origfile) 1075 newfile = '%s_%s.bb' % (newname, newver) 1078 newfile = '%s.bb' % newname 1086 newfile = os.path.join(newrecipedir, newfile) 1092 logger.info('Renaming %s to %s' % (recipefile, newfile)) 1093 bb.utils.rename(recipefile, newfile) 1170 splitentry[1] = os.path.relpath(newfile, config.workspace_path) 2242 for oldfile, newfile, newfileshow in comparelist: [all …]
|
H A D | upgrade.py | 74 newfile = oldfile.replace(oldpv, newpv) 75 if oldfile != newfile: 77 os.path.join(path, newfile))
|
/openbmc/openbmc/poky/meta/recipes-bsp/grub/files/ |
H A D | autogen.sh-exclude-pc.patch | 9 (newfile), it's mode will be 000, then we will get errors when xgettext
|
/openbmc/linux/net/sctp/ |
H A D | socket.c | 5674 struct file **newfile, unsigned flags) in sctp_getsockopt_peeloff_common() argument 5690 *newfile = sock_alloc_file(newsock, 0, NULL); in sctp_getsockopt_peeloff_common() 5691 if (IS_ERR(*newfile)) { in sctp_getsockopt_peeloff_common() 5693 retval = PTR_ERR(*newfile); in sctp_getsockopt_peeloff_common() 5694 *newfile = NULL; in sctp_getsockopt_peeloff_common() 5704 (*newfile)->f_flags |= O_NONBLOCK; in sctp_getsockopt_peeloff_common() 5712 struct file *newfile = NULL; in sctp_getsockopt_peeloff() local 5721 retval = sctp_getsockopt_peeloff_common(sk, &peeloff, &newfile, 0); in sctp_getsockopt_peeloff() 5727 fput(newfile); in sctp_getsockopt_peeloff() 5733 fput(newfile); in sctp_getsockopt_peeloff() [all …]
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | data_smart.py | 213 newfile = IncludeHistory(self.current, filename) 214 self.current.children.append(newfile) 215 self.current = newfile
|
/openbmc/u-boot/scripts/ |
H A D | checkpatch.pl | 6527 my $newfile = $filename; 6528 $newfile .= ".EXPERIMENTAL-checkpatch-fixes" if (!$fix_inplace); 6534 open($f, '>', $newfile) 6535 or die "$P: Can't open $newfile for write\n"; 6552 Wrote EXPERIMENTAL --fix correction(s) to '$newfile'
|
/openbmc/openbmc/poky/meta/recipes-extended/unzip/unzip/ |
H A D | CVE-2019-13232_p2.patch | 303 int newfile;
|