Home
last modified time | relevance | path

Searched refs:outname (Results 1 – 25 of 29) sorted by relevance

12

/OK3568_Linux_fs/kernel/fs/isofs/
H A Djoliet.c42 get_joliet_filename(struct iso_directory_record * de, unsigned char *outname, struct inode * inode) in get_joliet_filename() argument
52 outname, PAGE_SIZE); in get_joliet_filename()
54 len = uni16_to_x8(outname, (__be16 *) de->name, in get_joliet_filename()
57 if ((len > 2) && (outname[len-2] == ';') && (outname[len-1] == '1')) in get_joliet_filename()
64 while (len >= 2 && (outname[len-1] == '.')) in get_joliet_filename()
/OK3568_Linux_fs/buildroot/package/patch/
H A D0004-Invoke-ed-directly-instead-of-using-the-shell.patch19 @@ -2459,9 +2459,6 @@ do_ed_script (char const *inname, char const *outname,
21 copy_file (inname, outname, 0, exclusive, instat.st_mode, true);
25 - outname);
29 @@ -2470,7 +2467,8 @@ do_ed_script (char const *inname, char const *outname,
34 + assert (outname[0] != '!' && outname[0] != '-');
35 + execlp (editor_program, editor_program, "-", outname, (char *) NULL);
H A D0002-Allow-input-files-to-be-missing-for-ed-style-patches.patch20 @@ -2394,9 +2394,11 @@ do_ed_script (char const *inname, char const *outname,
26 - copy_file (inname, outname, 0, exclusive, instat.st_mode, true);
30 + copy_file (inname, outname, 0, exclusive, instat.st_mode, true);
34 outname);
H A D0003-Fix-arbitrary-command-execution-in-ed-style-patches-.patch36 @@ -2389,24 +2390,28 @@ do_ed_script (char const *inname, char const *outname,
68 - copy_file (inname, outname, 0, exclusive, instat.st_mode, true);
72 - outname);
81 @@ -2417,14 +2422,14 @@ do_ed_script (char const *inname, char const *outname,
100 @@ -2437,13 +2442,49 @@ do_ed_script (char const *inname, char const *outname,
124 + copy_file (inname, outname, 0, exclusive, instat.st_mode, true);
128 + outname);
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/patch/patch/
H A D0001-Invoke-ed-directly-instead-of-using-the-shell.patch22 @@ -2459,9 +2459,6 @@ do_ed_script (char const *inname, char const *outname,
24 copy_file (inname, outname, 0, exclusive, instat.st_mode, true);
28 - outname);
32 @@ -2470,7 +2467,8 @@ do_ed_script (char const *inname, char const *outname,
37 + assert (outname[0] != '!' && outname[0] != '-');
38 + execlp (editor_program, editor_program, "-", outname, (char *) NULL);
H A D0003-Allow-input-files-to-be-missing-for-ed-style-patches.patch21 @@ -2394,9 +2394,11 @@ do_ed_script (char const *inname, char const *outname,
27 - copy_file (inname, outname, 0, exclusive, instat.st_mode, true);
31 + copy_file (inname, outname, 0, exclusive, instat.st_mode, true);
35 outname);
H A D0004-Fix-arbitrary-command-execution-in-ed-style-patches-.patch35 @@ -2389,24 +2390,28 @@ do_ed_script (char const *inname, char const *outname,
67 - copy_file (inname, outname, 0, exclusive, instat.st_mode, true);
71 - outname);
80 @@ -2417,14 +2422,14 @@ do_ed_script (char const *inname, char const *outname,
99 @@ -2437,13 +2442,49 @@ do_ed_script (char const *inname, char const *outname,
123 + copy_file (inname, outname, 0, exclusive, instat.st_mode, true);
127 + outname);
H A D0001-Don-t-leak-temporary-file-on-failed-ed-style-patch.patch49 @@ -2392,7 +2392,6 @@ do_ed_script (char const *inname, char const *outname,
57 @@ -2404,12 +2403,13 @@ do_ed_script (char const *inname, char const *outname,
74 @@ -2449,8 +2449,7 @@ do_ed_script (char const *inname, char const *outname,
84 @@ -2482,7 +2481,6 @@ do_ed_script (char const *inname, char const *outname,
/OK3568_Linux_fs/kernel/scripts/dtc/
H A Ddtc.c165 const char *outname = "-"; in main() local
189 outname = optarg; in main()
283 fprintf(depfile, "%s:", outname); in main()
289 outform = guess_type_by_name(outname, NULL); in main()
308 dti->outname = outname; in main()
341 if (streq(outname, "-")) { in main()
344 outf = fopen(outname, "wb"); in main()
347 outname, strerror(errno)); in main()
H A Ddtc.h292 const char *outname; /* filename being written to, "-" for stdout */ member
/OK3568_Linux_fs/u-boot/scripts/dtc/
H A Ddtc.c173 const char *outname = "-"; in main() local
197 outname = optarg; in main()
288 fprintf(depfile, "%s:", outname); in main()
294 outform = guess_type_by_name(outname, NULL); in main()
311 dti->outname = outname; in main()
343 if (streq(outname, "-")) { in main()
346 outf = fopen(outname, "wb"); in main()
349 outname, strerror(errno)); in main()
H A Ddtc.h256 const char *outname; /* filename being written to, "-" for stdout */ member
/OK3568_Linux_fs/yocto/poky/scripts/contrib/
H A Dimage-manifest423 outname = os.path.basename(args.output)
425 outname = os.path.splitext(os.path.basename(args.manifest))[0]
426 if outname.endswith('.tar.gz'):
427 outname = outname[:-7]
428 elif outname.endswith('.tgz'):
429 outname = outname[:-4]
431 tarfn = outname
438 tar.add(tmpoutdir, outname)
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/psplash/
H A Dpsplash_git.bb39 outname = "psplash-%s" % outsuffix
40 if outname == '' or outname in oldpkgs:
41 …%s' derived from the URI %s is not valid, please specify the outsuffix parameter" % (outname, uri))
43 pkgs.append(outname)
/OK3568_Linux_fs/kernel/tools/testing/selftests/powerpc/nx-gzip/
H A Dgzfht_test.c236 char outname[FNAME_MAX]; in compress_file() local
387 strcpy(outname, argv[1]); in compress_file()
388 strcat(outname, FEXT); in compress_file()
389 if (write_output_file(outname, outbuf, dsttotlen)) { in compress_file()
390 fprintf(stderr, "write error: %s\n", outname); in compress_file()
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0142-grub-install-common-Add-sbat-option.patch69 - outname, dtb ? : "", mkimage_target,
70 + outname, dtb ? : "", sbat ? : "", mkimage_target,
75 grub_install_generate_image (dir, prefix, fp, outname,
H A D0143-shim_lock-Only-skip-loading-shim_lock-verifier-with-.patch171 outname, dtb ? : "", sbat ? : "", mkimage_target,
179 grub_install_generate_image (dir, prefix, fp, outname,
H A D0137-util-mkimage-Unify-more-of-the-PE32-and-PE32-header-.patch46 FILE *out, const char *outname, char *mods[],
/OK3568_Linux_fs/yocto/poky/meta/recipes-core/busybox/busybox/
H A D0001-sysctl-ignore-EIO-of-stable_secret-below-proc-sys-ne.patch26 - bb_perror_msg("error reading key '%s'", outname);
32 + bb_perror_msg("error reading key '%s'", outname);
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/meson/meson/
H A Ddisable-rpath-handling.patch25 - self.fix_rpath(outname, t.rpath_dirs_to_remove, install_rpath, final_path,
28 + self.fix_rpath(outname, t.rpath_dirs_to_remove, install_rpath, final_path,
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/lib/gcc/aarch64-none-linux-gnu/10.3.1/plugin/include/
H A Dlibiberty.h530 const char *outname, const char *errname,
547 const char *outname,
620 const char *outname, const char *errname,
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/lib/gcc/arm-none-linux-gnueabihf/10.3.1/plugin/include/
H A Dlibiberty.h530 const char *outname, const char *errname,
547 const char *outname,
620 const char *outname, const char *errname,
/OK3568_Linux_fs/kernel/fs/fat/
H A Dnamei_vfat.c511 xlate_to_uni(const unsigned char *name, int len, unsigned char *outname, in xlate_to_uni() argument
522 (wchar_t *) outname, FAT_LFN_LEN + 2); in xlate_to_uni()
528 op = &outname[*outlen * sizeof(wchar_t)]; in xlate_to_uni()
530 for (i = 0, ip = name, op = outname, *outlen = 0; in xlate_to_uni()
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/pbzip2/pbzip2/
H A D0001-pbzip2-Fix-invalid-suffix-on-literal-C-11-warning.patch29 @@ -1829,7 +1829,7 @@ void *fileWriter(void *outname)
/OK3568_Linux_fs/u-boot/common/spl/
H A Dspl_fit.c38 char **outname) in spl_fit_get_image_name() argument
74 *outname = (char *)str; in spl_fit_get_image_name()

12