HomeSort by relevance Sort by last modified time
    Searched refs:gOutFile (Results 1 - 4 of 4) sorted by null

  /art/dexdump/
dexdump.cc 62 FILE* gOutFile = stdout;
362 fputs("\"", gOutFile);
366 fputs("\\\\", gOutFile);
369 fputs("\\\"", gOutFile);
372 fputs("\\t", gOutFile);
375 fputs("\\n", gOutFile);
378 fputs("\\r", gOutFile);
381 putc(*p, gOutFile);
384 fputs("\"", gOutFile);
394 fputs("&", gOutFile);
    [all...]
dexdump.h 56 extern FILE* gOutFile;
dexdump_main.cc 137 gOutFile = fopen(gOptions.outputFileName, "w");
138 if (!gOutFile) {
  /art/dexlist/
dexlist.cc 48 static FILE* gOutFile = stdout;
129 fprintf(gOutFile, "0x%08x %d %s %s %s %s %d\n",
190 fprintf(gOutFile, "#%s\n", fileName);
269 gOutFile = fopen(gOptions.outputFileName, "w");
270 if (!gOutFile) {

Completed in 497 milliseconds