HomeSort by relevance Sort by last modified time
    Searched refs:infile (Results 201 - 225 of 326) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/python/cpython3/Lib/
trace.py 171 def __init__(self, counts=None, calledfuncs=None, infile=None,
185 self.infile = infile
187 if self.infile:
190 with open(self.infile, 'rb') as f:
195 % (self.infile, err)), file=sys.stderr)
409 ignoremods=(), ignoredirs=(), infile=None, outfile=None,
423 @param infile file from which to read stored counts to be
428 self.infile = infile
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
minigzip.c 500 char *infile, *outfile; local
517 infile = file;
522 infile = buf;
526 strcat(infile, GZ_SUFFIX);
529 in = gzopen(infile, "rb");
531 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
542 unlink(infile);
  /external/python/cpython2/Modules/zlib/
minigzip.c 500 char *infile, *outfile; local
517 infile = file;
522 infile = buf;
526 strcat(infile, GZ_SUFFIX);
529 in = gzopen(infile, "rb");
531 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
542 unlink(infile);
  /external/python/cpython3/Modules/zlib/
minigzip.c 500 char *infile, *outfile; local
517 infile = file;
522 infile = buf;
526 strcat(infile, GZ_SUFFIX);
529 in = gzopen(infile, "rb");
531 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
542 unlink(infile);
  /external/vboot_reference/futility/
cmd_show.c 616 char *infile = 0; local
691 infile = argv[i];
692 ifd = open(infile, O_RDONLY);
696 infile, strerror(errno));
706 state.in_filename = infile ? infile : "<none>";
719 infile, strerror(errno));
  /external/zlib/src/test/
minigzip.c 500 char *infile, *outfile; local
517 infile = file;
522 infile = buf;
526 strcat(infile, GZ_SUFFIX);
529 in = gzopen(infile, "rb");
531 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
542 unlink(infile);
  /system/extras/ioshark/
compile_ioshark.c 535 char *infile, *outfile; local
544 infile = argv[1];
546 if (stat(infile, &st) < 0) {
548 progname, infile);
553 progname, infile);
558 fp = fopen(infile, "r");
561 progname, infile);
  /toolchain/binutils/binutils-2.27/zlib/test/
minigzip.c 500 char *infile, *outfile; local
517 infile = file;
522 infile = buf;
526 strcat(infile, GZ_SUFFIX);
529 in = gzopen(infile, "rb");
531 fprintf(stderr, "%s: can't gzopen %s\n", prog, infile);
542 unlink(infile);
  /external/libvpx/libvpx/
vpxdec.c 201 static int raw_read_frame(FILE *infile, uint8_t **buffer, size_t *bytes_read,
206 if (fread(raw_hdr, RAW_FRAME_HDR_SZ, 1, infile) != 1) {
207 if (!feof(infile)) warn("Failed to read RAW frame size\n");
235 if (!feof(infile)) {
236 if (fread(*buffer, 1, frame_size, infile) != frame_size) {
502 FILE *infile; local
669 infile = strcmp(fn, "-") ? fopen(fn, "rb") : set_binary_mode(stdin);
671 if (!infile) {
683 input.vpx_input_ctx->file = infile;
    [all...]
  /external/syslinux/gpxe/src/util/
nrv2b.c 61 FILE *infile, *outfile;
1242 fseek(infile, 0, SEEK_END);
1243 in_len = ftell(infile);
1276 rewind(infile);
1284 if (fread(in, in_len, 1, infile) != 1) {
1372 if (fseek(infile, sizeof(magic) + sizeof(tw) + 1 + 1 + sizeof(tw),
1376 if (fread(&tw, sizeof(tw), 1, infile) < 1)
1379 if (fread(&tw, sizeof(tw), 1, infile) < 1)
1383 if (fread(&tw, sizeof(tw), 1, infile) < 1)
1396 src_len = fread(src, 1, max_src_len, infile);
    [all...]
  /external/vboot_reference/utility/
efidecompress.c 1025 fprintf(stderr, "\nUsage: %s INFILE OUTFILE\n\n", progname);
1029 char *infile = argv[1]; local
1033 if (0 != stat(infile, &istat)) {
1036 infile,
1042 printf("%s is %d bytes\n", infile, isize);
1044 FILE *ifp = fopen(infile, "rb");
1049 infile,
  /external/libxml2/
regressions.py 155 infile = open(inbase + filename, 'rt')
156 pin.writelines(infile.readlines())
157 infile.close()
  /external/toybox/toys/posix/
patch.c 51 char *infile;
268 if (TT.infile) TT.filepatch = xopenro(TT.infile);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
cmd.py 354 def copy_file(self, infile, outfile,
361 infile, outfile,
367 def copy_tree(self, infile, outfile,
374 infile, outfile,
  /external/curl/src/
tool_operhlp.c 47 Curl_safefree(node->infile);
  /external/libjpeg-turbo/
cdjpeg.h 123 EXTERN(void) read_color_map (j_decompress_ptr cinfo, FILE *infile);
  /external/libvpx/libvpx/examples/
vp9cx_set_ref.c 65 "Usage: %s <width> <height> <infile> <outfile> "
279 FILE *infile = NULL; local
372 if (!(infile = fopen(infile_arg, "rb")))
389 while (vpx_img_read(&raw, infile)) {
421 fclose(infile);
  /external/python/cpython2/Lib/distutils/
cmd.py 354 def copy_file(self, infile, outfile,
361 infile, outfile,
367 def copy_tree(self, infile, outfile,
374 infile, outfile,
  /external/python/cpython3/Lib/distutils/
cmd.py 340 def copy_file(self, infile, outfile, preserve_mode=1, preserve_times=1,
345 return file_util.copy_file(infile, outfile, preserve_mode,
349 def copy_tree(self, infile, outfile, preserve_mode=1, preserve_times=1,
354 return dir_util.copy_tree(infile, outfile, preserve_mode,
  /external/swiftshader/third_party/LLVM/docs/CommandGuide/
Makefile 62 --podpath=. --noindex --infile=$< --outfile=$@ --title=$*
  /external/vulkan-validation-layers/scripts/
vk_validation_stats.py 113 with open(self.db_file, "r", encoding="utf8") as infile:
114 for line in infile:
165 with open(self.filename, "r") as infile:
166 for line in infile:
  /frameworks/base/packages/ExtServices/src/android/ext/services/notification/
Assistant.java 107 InputStream infile = null;
109 infile = mFile.openRead();
110 readXml(infile);
118 IoUtils.closeQuietly(infile);
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
cmd.py 354 def copy_file(self, infile, outfile,
361 infile, outfile,
367 def copy_tree(self, infile, outfile,
374 infile, outfile,
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
cmd.py 354 def copy_file(self, infile, outfile,
361 infile, outfile,
367 def copy_tree(self, infile, outfile,
374 infile, outfile,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cmd.py 354 def copy_file(self, infile, outfile,
361 infile, outfile,
367 def copy_tree(self, infile, outfile,
374 infile, outfile,

Completed in 1170 milliseconds

1 2 3 4 5 6 7 891011>>