HomeSort by relevance Sort by last modified time
    Searched full:infile (Results 226 - 250 of 710) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenDepex/
GenDepex.c 158 " -I INFILE The input pre-processed dependency text files name",
232 IN FILE *InFile,
303 InFile - Input pre-compiled text file of the dependency expression.
359 Results = (UINTN) fseek (InFile, 0, SEEK_END);
366 FileSize = ftell (InFile);
379 Results = (UINTN) fclose (InFile);
392 Results = (UINTN) fseek (InFile, 0, SEEK_SET);
399 fread (Buffer, FileSize, 1, InFile);
418 Results = (UINTN) fclose (InFile);
453 Results = (UINTN) fclose (InFile);
    [all...]
  /external/clang/lib/Index/
IndexingAction.cpp 99 StringRef InFile) override {
121 StringRef InFile) override;
135 WrappingIndexAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
136 auto OtherConsumer = WrapperFrontendAction::CreateASTConsumer(CI, InFile);
  /external/libcups/cups/
request.c 51 int infile; /* Input file */ local
58 if ((infile = open(filename, O_RDONLY | O_BINARY)) < 0)
73 infile = -1;
75 response = cupsDoIORequest(http, request, resource, infile, -1);
77 if (infile >= 0)
78 close(infile);
87 * This function sends the IPP request with the optional input file "infile" to
91 * If "infile" is a valid file descriptor, @code cupsDoIORequest@ copies
104 int infile, /* I - File to read from or -1 for none */
115 DEBUG_printf(("cupsDoIORequest(http=%p, request=%p(%s), resource=\"%s\", infile=%d, outfile=%d)", (void *)http, (void *)request, request ? ippOpString(request->request.op.operati (…)
    [all...]
  /external/skia/tools/skpbench/
sheet.py 74 def parse_file(self, infile):
75 for line in infile:
146 with open(src, mode='r') as infile:
147 parser.parse_file(infile)
  /external/skqp/tools/skpbench/
sheet.py 74 def parse_file(self, infile):
75 for line in infile:
146 with open(src, mode='r') as infile:
147 parser.parse_file(infile)
  /external/toybox/tests/
base64.test 5 #testing "name" "command" "result" "infile" "stdin"
cat.test 5 #testing "name" "command" "result" "infile" "stdin"
chown.test 29 #testing "name" "command" "result" "infile" "stdin"
cksum.test 6 #testing "name" "command" "result" "infile" "stdin"
du.test 5 #testing "name" "command" "result" "infile" "stdin"
echo.test 10 #testing "name" "command" "result" "infile" "stdin"
file.test 5 #testing "name" "command" "result" "infile" "stdin"
fmt.test 11 #testing "name" "command" "result" "infile" "stdin"
groupdel.test 11 #testing "name" "command" "result" "infile" "stdin"
paste.test 5 #testing "name" "command" "result" "infile" "stdin"
pgrep.test 11 #testing "name" "command" "result" "infile" "stdin"
setfattr.test 5 #testing "name" "command" "result" "infile" "stdin"
split.test 5 #testing "name" "command" "result" "infile" "stdin"
strings.test 5 #testing "name" "command" "result" "infile" "stdin"
tac.test 5 #testing "name" "command" "result" "infile" "stdin"
truncate.test 5 #testing "name" "command" "result" "infile" "stdin"
uudecode.test 5 #testing "name" "command" "result" "infile" "stdin"
uuencode.test 5 #testing "name" "command" "result" "infile" "stdin"
wc.test 5 #testing "name" "command" "result" "infile" "stdin"
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipStreamTest.java 45 FileInputStream inFile = new FileInputStream("/tmp/foo.zip");
46 int inputLength = inFile.available();
48 if (inFile.read(zipData) != inputLength)
50 inFile.close();

Completed in 345 milliseconds

1 2 3 4 5 6 7 8 91011>>