/third_party/zlib/examples/ |
H A D | gun.c | 540 inname is NULL or an empty string, read from stdin. If outname is NULL or 543 outname. 548 local int gunzip(z_stream *strm, char *inname, char *outname, int test) in gunzip() argument 567 else if (outname == NULL || *outname == 0) { in gunzip() 568 outname = "-"; in gunzip() 572 outfile = open(outname, O_CREAT | O_TRUNC | O_WRONLY, 0666); in gunzip() 575 fprintf(stderr, "gun cannot create %s\n", outname); in gunzip() 591 copymeta(inname, outname); /* copy attributes */ in gunzip() 599 if (outfile > 2) unlink(outname); in gunzip() 634 char *outname; main() local [all...] |
/third_party/curl/tests/unit/ |
H A D | unit1654.c | 44 char outname[256]; variable 61 msnprintf(outname, sizeof(outname), "%s-out", arg); 106 Curl_altsvc_save(curl, asi, outname);
|
/third_party/python/Doc/tools/extensions/ |
H A D | escape4chm.py | 44 outname = app.builder.config.htmlhelp_basename 45 with open(outdir / (outname + '.hhk'), 'rb') as f: 47 with open(outdir / (outname + '.hhk'), 'wb') as f:
|
/third_party/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
H A D | CodeMangler.java | 92 String outname = null; in CodeMangler() 104 outname = args[++i]; in CodeMangler() 205 if (outname == null) { in CodeMangler() 206 outname = inname; in CodeMangler() 207 } else if (!(outname.startsWith("\\") || outname.startsWith("/"))) { in CodeMangler() 208 outname = username + File.separator + outname; in CodeMangler() 210 outdir = new File(outname); in CodeMangler()
|
/third_party/skia/third_party/externals/libpng/contrib/gregbook/ |
H A D | wpng.c | 164 char *inname = NULL, outname[256]; in main() local 365 /* make outname from inname */ in main() 369 strcpy(outname, inname); in main() 370 strcpy(outname+len, ".png"); in main() 373 strncpy(outname, inname, len); in main() 374 strcpy(outname+len, ".png"); in main() 376 /* check if outname already exists; if not, open */ in main() 377 if ((wpng_info.outfile = fopen(outname, "rb")) != NULL) { in main() 379 outname); in main() 382 } else if (!(wpng_info.outfile = fopen(outname, "w in main() [all...] |
/third_party/node/deps/v8/tools/ |
H A D | android-run.py | 53 (fd_out, outname) = tempfile.mkstemp() 64 output = open(outname).read() 66 os.unlink(outname)
|
/third_party/skia/third_party/externals/libpng/ |
H A D | pngtest.c | 853 test_one_file(const char *inname, const char *outname) in test_one_file() argument 888 if ((fpout = fopen(outname, "wb")) == NULL) in test_one_file() 890 fprintf(STDERR, "Could not open output file %s\n", outname); in test_one_file() 937 fprintf(STDERR, "%s -> %s: libpng read error\n", inname, outname); in test_one_file() 959 fprintf(STDERR, "%s -> %s: libpng write error\n", inname, outname); in test_one_file() 1717 if ((fpout = fopen(outname, "rb")) == NULL) in test_one_file() 1719 fprintf(STDERR, "Could not find file %s\n", outname); in test_one_file() 1740 inname, outname); in test_one_file() 1772 outname); in test_one_file() 1815 static const char *outname variable 1818 static const char *outname = "pngout.png"; global() variable [all...] |
/third_party/jerryscript/tools/ |
H A D | gen-doctest.py | 99 outname = os.path.join(self._outdir, decl['name']).replace('\\', '/') 102 print('%s %s' % (action, outname)) 104 with open(outname, 'w') as outfile:
|
/third_party/python/Lib/distutils/ |
H A D | util.py | 537 outname = os.path.join(dest, filename) 538 mkpath(os.path.dirname(outname)) 539 res = copy_file(os.path.join(src, filename), outname, update=1) 540 if res[1]: copied.append(outname)
|
/third_party/tzdata/ |
H A D | zic.c | 1348 open_outfile(char const **outname, char **tempname) in open_outfile() argument 1359 random_dirent(outname, tempname); in open_outfile() 1361 while (! (fp = fopen(*outname, fopen_mode))) { in open_outfile() 1364 mkdirs(*outname, true); in open_outfile() 1367 random_dirent(outname, tempname); in open_outfile() 1370 progname, directory, *outname, strerror(fopen_errno)); in open_outfile() 1453 char const *outname = linkname; in dolink() local 1470 if (linkat(AT_FDCWD, target, AT_FDCWD, outname, AT_SYMLINK_FOLLOW) in dolink() 1486 && (same_parent_dirs(target, outname) in dolink() 1488 if (link(target, outname) in dolink() 2384 char const *outname = name; writezone() local [all...] |
/third_party/ntfs-3g/libntfs-3g/ |
H A D | dir.c | 2459 char *outname = (char*)NULL; in ntfs_get_ntfs_dos_name() local 2474 outsize = ntfs_ucstombs(dosname, doslen, &outname, 0); in ntfs_get_ntfs_dos_name() 2480 memcpy(value, outname, outsize); in ntfs_get_ntfs_dos_name() 2484 free(outname); in ntfs_get_ntfs_dos_name()
|
/third_party/node/tools/ |
H A D | test.py | 757 (fd_out, outname) = tempfile.mkstemp() 796 output = open(outname, encoding='utf8').read() 798 CheckedUnlink(outname)
|