/external/chromium-trace/catapult/perf_insights/perf_insights/results/ |
json_output_formatter.py | 11 def __init__(self, output_file): 12 # TODO(nduca): Resolve output_file here vs output_stream in base class. 13 super(JSONOutputFormatter, self).__init__(output_file) 14 self.output_file = output_file 18 json.dump(d, self.output_file, indent=2) 19 if hasattr(self.output_file, 'flush'): 20 self.output_file.flush()
|
/system/core/libsparse/ |
output_file.h | 22 struct output_file; 24 struct output_file *output_file_open_fd(int fd, unsigned int block_size, int64_t len, 26 struct output_file *output_file_open_callback(int (*write)(void *, const void *, int), 29 int write_data_chunk(struct output_file *out, unsigned int len, void *data); 30 int write_fill_chunk(struct output_file *out, unsigned int len, 32 int write_file_chunk(struct output_file *out, unsigned int len, 34 int write_fd_chunk(struct output_file *out, unsigned int len, 36 int write_skip_chunk(struct output_file *out, int64_t len); 37 void output_file_close(struct output_file *out);
|
sparse_file.h | 28 struct output_file *out;
|
/build/tools/ |
generate-notice-files.py | 108 output_file = open(output_filename, "wb") 110 print >> output_file, "<html><head>" 111 print >> output_file, HTML_OUTPUT_CSS 112 print >> output_file, '</head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">' 115 print >> output_file, '<div class="toc">' 116 print >> output_file, "<ul>" 124 print >> output_file, '<li><a href="#id%d">%s</a></li>' % (id_table.get(filename), stripped_filename) 126 print >> output_file, "</ul>" 127 print >> output_file, "</div><!-- table of contents -->" 129 print >>output_file, '<table cellpadding="0" cellspacing="0" border="0"> [all...] |
/external/sfntly/cpp/src/test/ |
chrome_subsetter.cc | 52 FILE* output_file = NULL; local 54 fopen_s(&output_file, kOutputFileName, "wb"); 56 output_file = fopen(kOutputFileName, "wb"); 58 EXPECT_TRUE((output_file != NULL)); 59 if (output_file) { 60 int byte_count = fwrite(output_buffer, 1, output_length, output_file); 62 fflush(output_file); 63 fclose(output_file);
|
/external/libvpx/libvpx/test/ |
postproc.sh | 33 local output_file="${VPX_TEST_OUTPUT_DIR}/postproc_${codec}.raw" 40 eval "${VPX_TEST_PREFIX}" "${decoder}" "${input_file}" "${output_file}" \ 43 [ -e "${output_file}" ] || return 1
|
set_maps.sh | 35 local output_file="${VPX_TEST_OUTPUT_DIR}/set_maps_${codec}.ivf" 38 "${YUV_RAW_INPUT_HEIGHT}" "${YUV_RAW_INPUT}" "${output_file}" \ 41 [ -e "${output_file}" ] || return 1
|
simple_decoder.sh | 33 local output_file="${VPX_TEST_OUTPUT_DIR}/simple_decoder_${codec}.raw" 40 eval "${VPX_TEST_PREFIX}" "${decoder}" "${input_file}" "${output_file}" \ 43 [ -e "${output_file}" ] || return 1
|
simple_encoder.sh | 30 local output_file="${VPX_TEST_OUTPUT_DIR}/simple_encoder_${codec}.ivf" 38 "${YUV_RAW_INPUT_HEIGHT}" "${YUV_RAW_INPUT}" "${output_file}" 9999 \ 41 [ -e "${output_file}" ] || return 1
|
twopass_encoder.sh | 30 local output_file="${VPX_TEST_OUTPUT_DIR}/twopass_encoder_${codec}.ivf" 38 "${YUV_RAW_INPUT_HEIGHT}" "${YUV_RAW_INPUT}" "${output_file}" \ 41 [ -e "${output_file}" ] || return 1
|
vp8cx_set_ref.sh | 34 local output_file="${VPX_TEST_OUTPUT_DIR}/vp8cx_set_ref_${codec}.ivf" 43 "${YUV_RAW_INPUT_HEIGHT}" "${YUV_RAW_INPUT}" "${output_file}" \ 46 [ -e "${output_file}" ] || return 1
|
decode_to_md5.sh | 35 local output_file="${VPX_TEST_OUTPUT_DIR}/decode_to_md5_${codec}" 42 eval "${VPX_TEST_PREFIX}" "${decoder}" "${input_file}" "${output_file}" \ 45 [ -e "${output_file}" ] || return 1 47 local md5_last_frame="$(tail -n1 "${output_file}" | awk '{print $1}')"
|
decode_with_drops.sh | 34 local output_file="${VPX_TEST_OUTPUT_DIR}/decode_with_drops_${codec}" 42 eval "${VPX_TEST_PREFIX}" "${decoder}" "${input_file}" "${output_file}" \ 45 [ -e "${output_file}" ] || return 1
|
resize_util.sh | 30 local output_file="${VPX_TEST_OUTPUT_DIR}/resize_util.raw" 43 "${target_dimensions}" "${output_file}" ${frames_to_resize} \ 46 [ -e "${output_file}" ] || return 1
|
vp8_multi_resolution_encoder.sh | 64 for output_file in ${output_files}; do 65 if [ ! -e "${output_file}" ]; then 66 elog "Missing output file: ${output_file}"
|
vp9_spatial_svc_encoder.sh | 32 output_file="${VPX_TEST_OUTPUT_DIR}/vp9_ssvc_encoder${test_name}.ivf" 45 "$@" "${YUV_RAW_INPUT}" "${output_file}" ${devnull} 47 [ -e "${output_file}" ] || return 1
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/ |
netlog_profiler.py | 35 output_file = i[len(self._NET_LOG_ARG):] 36 assert output_file 42 output_file, host_output_file) 47 self._browser_backend.device.RunShellCommand('rm %s' % output_file) 48 output_file = host_output_file 49 print 'Net-internals log saved as %s' % output_file 51 return [output_file]
|
v8_profiler.py | 37 output_file = match.groups(0)[0] 38 assert output_file 44 output_file, host_output_file) 49 self._browser_backend.device.RunShellCommand('rm %s' % output_file) 50 output_file = host_output_file 51 print 'V8 profile saved as %s' % output_file 54 return [output_file]
|
/frameworks/compile/libbcc/tests/debuginfo/ |
test_bcc_debuginfo.pl | 36 my $output_file = "$output_dir/$input_filename.gdb.output"; 72 system("$debugger $debugger_options > $output_file 2>&1") ; 75 print("$debugger $debugger_options > $output_file 2>&1\n") ; 80 system("$filecheck_tool", "-input-file", "$output_file", "$testcase_file"); 83 print("$debugger $debugger_options > $output_file 2>&1\n") ; 85 print "$filecheck_tool -input-file $output_file $testcase_file\n";
|
/external/webrtc/webrtc/voice_engine/test/auto_test/standard/ |
file_before_streaming_test.cc | 61 FILE* output_file = fopen(output_filename_.c_str(), "rb"); local 62 ASSERT_TRUE(output_file != NULL); 67 EXPECT_EQ(0, fseek(output_file, sizeof(output_value) * 69 while (fread(&output_value, sizeof(output_value), 1, output_file) == 1) { 79 ASSERT_NE(0, feof(output_file)); 80 ASSERT_EQ(0, fclose(output_file)); 84 FILE* output_file = fopen(output_filename_.c_str(), "rb"); local 85 ASSERT_TRUE(output_file != NULL); 86 ASSERT_EQ(0, fseek(output_file, 0, SEEK_END)); 87 EXPECT_EQ(0, ftell(output_file)); [all...] |
/external/llvm/utils/ |
test_debuginfo.pl | 29 my $output_file = "$output_dir/$input_filename.gdb.output"; 69 system("$my_debugger $debugger_options $debugger_script_file $executable_file > $output_file 2>&1"); 72 system("FileCheck", "-input-file", "$output_file", "$testcase_file"); 75 system("cat", "$output_file");
|
/external/vulkan-validation-layers/libs/vkjson/ |
vkjson_info.cc | 44 std::string output_file; member in struct:Options 71 options->output_file = arg2; 89 if (options->instance && options->output_file.empty()) { 94 if (!options->output_file.empty() && !options->instance && 128 std::string output_file; local 129 if (options.output_file.empty()) { 131 output_file.assign(out_device->properties.deviceName); 132 output_file.append(".json"); 134 output_file = options.output_file; 154 std::cout << "Wrote file " << output_file; local [all...] |
/external/sfntly/cpp/src/sample/subtly/ |
utils.cc | 76 FILE* output_file = NULL; local 78 fopen_s(&output_file, font_path, "wb"); 80 output_file = fopen(font_path, "wb"); 82 if (output_file == reinterpret_cast<FILE*>(NULL)) 85 fwrite(&(output_stream.Get()[i]), 1, 1, output_file); 87 fflush(output_file); 88 fclose(output_file);
|
/external/dbus-binding-generator/chromeos-dbus-bindings/ |
header_generator.cc | 24 const base::FilePath& output_file) { 26 output_file.value().c_str()); 51 const base::FilePath& output_file, const IndentedText &text) { 54 if (base::WriteFile(output_file, contents.c_str(), contents.size()) != 56 LOG(ERROR) << "Failed to write file " << output_file.value();
|
/external/libjpeg-turbo/ |
wrgif.c | 88 if (JFWRITE(dinfo->pub.output_file, dinfo->packetbuf, dinfo->bytesinpkt) 205 putc(w & 0xFF, dinfo->pub.output_file); 206 putc((w >> 8) & 0xFF, dinfo->pub.output_file); 214 putc(val, dinfo->pub.output_file); 215 putc(val, dinfo->pub.output_file); 216 putc(val, dinfo->pub.output_file); 244 putc('G', dinfo->pub.output_file); 245 putc('I', dinfo->pub.output_file); 246 putc('F', dinfo->pub.output_file); 247 putc('8', dinfo->pub.output_file); [all...] |