HomeSort by relevance Sort by last modified time
    Searched defs:out_file (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/chrome/installer/mini_installer/
pe_resource.cc 36 HANDLE out_file = ::CreateFile(full_path, GENERIC_WRITE, 0, NULL, local
38 if (INVALID_HANDLE_VALUE == out_file) {
42 if (!::WriteFile(out_file, data, static_cast<DWORD>(resource_size),
44 ::CloseHandle(out_file);
47 return ::CloseHandle(out_file) ? true : false;
  /cts/tools/vm-tests-tf/src/util/build/
DasmBuildStep.java 104 File out_file = null; local
107 out_file = new File(class_name + ".dex");
109 out_file = new File(dest_dir, class_name + ".dex");
127 outp = new FileOutputStream(out_file);
133 " while writing " + out_file.getPath());
137 out_file.delete();
  /external/chromium_org/chrome/tools/build/
version.py 130 out_file = None variable
149 out_file = a variable
155 while len(args) and (in_file is None or out_file is None or
159 elif out_file is None:
160 out_file = args.pop(0) variable
188 if out_file:
189 write_if_changed(out_file, contents)
  /external/chromium_org/chrome/tools/convert_dict/
convert_dict.cc 139 FILE* out_file = file_util::OpenFile(out_path, "wb"); local
140 if (!out_file) {
144 size_t written = fwrite(&serialized[0], 1, serialized.size(), out_file);
146 file_util::CloseFile(out_file);
  /external/clang/www/
make_cxx_dr_status 49 out_file = file(output, 'w') variable
51 print >> out_file, '''\
148 print >> out_file, '''\
157 print >> out_file, '''\
  /cts/tools/dasm/src/dasm/
Main.java 126 File out_file = null; local
130 out_file = new File(class_name + ".dex");
133 out_file = new File(dest_dir, class_name + ".dex");
153 outp = new FileOutputStream(out_file);
159 + e.getMessage() + " while writing " + out_file.getPath());
165 out_file.delete();
173 System.out.println("Generated: " + out_file.getPath());
  /external/e2fsprogs/debugfs/
logdump.c 79 FILE *out_file; local
170 out_file = stdout;
173 out_file = fopen(out_fn, "w");
174 if (!out_file) {
247 fprintf(out_file, "Using external journal found at %s\n",
254 dump_journal(argv[0], out_file, &journal_source);
262 if (out_file && (out_file != stdout))
263 fclose(out_file);
331 static void dump_journal(char *cmdname, FILE *out_file,
    [all...]
  /external/webp/examples/
dwebp.c 157 static int WritePNG(FILE* out_file, const WebPDecBuffer* const buffer) {
181 png_init_io(png, out_file);
196 static int WritePNG(FILE* out_file, const WebPDecBuffer* const buffer) {
197 (void)out_file;
293 OutputFileFormat format, const char* const out_file) {
306 fout = fopen(out_file, "wb");
308 fprintf(stderr, "Error opening output file %s\n", out_file);
315 ok &= WritePNG(out_file, buffer);
332 printf("Saved file %s\n", out_file);
338 fprintf(stderr, "Error writing file %s !!\n", out_file);
375 const char *out_file = NULL; local
    [all...]
  /external/webrtc/src/modules/audio_processing/test/
process_test.cc 77 " [-ir REVERSE_FILE] [-i PRIMARY_FILE] [-o OUT_FILE]\n");
410 FILE* out_file = NULL; local
447 out_file = fopen(out_filename, "wb");
448 ASSERT_TRUE(NULL != out_file) << "Unable to open output audio file "
666 out_file));
865 out_file));
    [all...]
  /external/wpa_supplicant_8/src/utils/
wpa_debug.c 61 static FILE *out_file = NULL; variable
75 if (out_file) {
76 fprintf(out_file, "%ld.%06u: ", (long) tv.sec,
221 if (out_file) {
222 vfprintf(out_file, fmt, ap);
223 fprintf(out_file, "\n");
348 if (out_file) {
349 fprintf(out_file, "%s - hexdump(len=%lu):",
352 fprintf(out_file, " [NULL]");
355 fprintf(out_file, " %02x", buf[i])
    [all...]
  /external/oprofile/pp/
opannotate.cpp 641 string const out_file = op_realpath(output_dir + source); local
653 if (out_file.find("/../") != string::npos) {
656 << out_file << endl;
659 } else if (!is_prefix(out_file, output_dir)) {
661 cerr << "refusing to create file " << out_file
668 if (is_files_identical(out_file, source)) {
670 << out_file << endl;
674 if (create_path(out_file.c_str())) {
676 << '"' << op_dirname(out_file) << '"' << endl;
680 ofstream out(out_file.c_str())
    [all...]
  /external/valgrind/main/callgrind/
dump.c 39 static Char* out_file = 0; variable
68 return out_file;
    [all...]
  /external/openssh/
ssh-keygen.c 1919 char out_file[MAXPATHLEN], *rr_hostname = NULL; local
    [all...]
  /dalvik/dx/etc/
jasmin.jar 

Completed in 702 milliseconds