/system/iot/attestation/partner-tools/ |
provision-test.py | 250 with open('keysets/unencrypted.keyset', 'rb') as infile: 251 inner_ca_response = bytes(infile.read()) 253 with open('keysets/encrypted.keyset', 'rb') as infile: 254 inner_ca_response = bytes(infile.read())
|
/toolchain/binutils/binutils-2.27/gas/testsuite/gas/sh/arch/ |
arch.exp | 162 set infile [open "$srcdir/$subdir/arch_expected.txt" r] 163 while {[gets $infile line] >= 0 && [string match {\#*} $line]} {send_log "reading '$line'\n"} 197 if [gets $infile line] then { 203 close $infile
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-sh/arch/ |
arch.exp | 206 set infile [open "$srcdir/$subdir/arch_expected.txt" r] 207 while {[gets $infile line] >= 0 && [string match {\#*} $line]} {verbose -log "reading '$line'"} 244 if [gets $infile line] then { 250 close $infile
|
/external/autotest/contrib/ |
summarize_loadtest.py | 44 parser.add_argument('infile', nargs='*', type=argparse.FileType('r'), 140 for f in options.infile:
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/ |
Trans.java | 139 System.out.println("Usage: java com.ibm.icu.dev.tool.translit.Trans [-html] <trans> ( <input> | -i <infile>) [ -o <outfile> ]"); 142 System.out.println("<infile> Name of input file");
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
split-lib.py | 47 infile = open(inputname, "r") 51 for line in infile:
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
split-lib.py | 47 infile = open(inputname, "r") 51 for line in infile:
|
/external/mesa3d/bin/ |
perf-annotate-jit | 134 def __init__(self, infile, symbol): 135 LineParser.__init__(self, infile)
|
/external/nos/test/system-test-harness/src/test-data/NIST-CAVP/ |
nist2h.py | 73 def _load_nist(infile): 74 lines = infile.readlines()
|
/external/python/cpython2/Doc/library/ |
pipes.rst | 126 .. method:: Template.copy(infile, outfile) 128 Copy *infile* to *outfile* through the pipe.
|
/external/python/cpython3/Doc/library/ |
atexit.rst | 73 with open("counterfile") as infile: 74 _count = int(infile.read())
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g711/test/ |
testG711.cc | 65 printf("./testG711.exe framelength law infile outfile \n\n"); 68 printf("infile : Normal speech input file\n");
|
/external/webrtc/webrtc/modules/audio_coding/codecs/g722/test/ |
testG722.cc | 69 printf("./testG722.exe framelength infile outbitfile outspeechfile \n\n"); 72 printf("infile : Normal speech input file\n\n");
|
/frameworks/base/packages/SystemUI/scripts/ |
new_merge.py | 130 def prepareFileForCompare(inFile, outFile, skip="", replace="", withText=""): 135 fin = open(inFile)
|
/external/antlr/antlr-3.4/runtime/C/src/ |
antlr3filestream.c | 355 ANTLR3_FDSC infile; local 360 infile = antlr3Fopen(fileName, "rb"); 364 if (infile == NULL) 388 antlr3Fread(infile, fSize, input->data); 392 antlr3Fclose(infile);
|
/external/curl/docs/examples/ |
curlx.c | 276 char *infile = NULL; local 311 infile = *(++args); 392 else if(infile == NULL) 394 else if(BIO_read_filename(in, infile) <= 0) { 395 BIO_printf(p.errorbio, "Error opening input file %s\n", infile);
|
/external/google-breakpad/src/common/mac/testing/ |
GTMSenTestCase.m | 80 inFile:(NSString *)filename 101 inFile:(NSString *)filename 124 inFile:(NSString *)filename 152 inFile:(NSString *)filename 173 inFile:(NSString *)filename
|
/external/libjpeg-turbo/ |
rdbmp.c | 76 register FILE *infile = sinfo->pub.input_file; local 79 if ((c = getc(infile)) == EOF) 226 register FILE *infile = source->pub.input_file; local 243 if (fread(out_ptr, 1, source->row_width, infile) != source->row_width) { 244 if (feof(infile))
|
rdjpgcom.c | 60 static FILE *infile; /* input JPEG file */ variable 63 #define NEXTBYTE() getc(infile) 485 if ((infile = fopen(argv[argn], READ_BINARY)) == NULL) { 495 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) { 500 infile = stdin;
|
wrjpgcom.c | 69 static FILE *infile; /* input JPEG file */ variable 72 #define NEXTBYTE() getc(infile) 494 if ((infile = fopen(argv[argn], READ_BINARY)) == NULL) { 504 if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) { 509 infile = stdin;
|
/external/libpcap/tests/ |
valgrindtest.c | 280 char *infile; local 297 infile = NULL; 313 infile = optarg; 343 if (infile != NULL) { 348 cmdbuf = read_infile(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/cpython3/Lib/ |
dis.py | 482 parser.add_argument('infile', type=argparse.FileType(), nargs='?', default='-') 484 with args.infile as infile: 485 source = infile.read() 486 code = compile(source, args.infile.name, "exec")
|
/external/tensorflow/tensorflow/contrib/pi_examples/label_image/ |
label_image.cc | 89 FILE* infile; local 93 if ((infile = fopen(file_name.c_str(), "rb")) == NULL) { 104 fclose(infile); 109 jpeg_stdio_src(&cinfo, infile); 129 fclose(infile);
|
/external/vboot_reference/utility/ |
bmpblk_util.c | 190 int dump_bmpblock(const char *infile, int show_as_yaml, 208 ptr = (void *)read_entire_file(infile, &length); 213 fprintf(stderr, "File %s is too small to be a BMPBLOCK\n", infile); 219 fprintf(stderr, "File %s is not a BMPBLOCK\n", infile); 258 printf("%s:\n", infile);
|