/external/chromium_org/third_party/WebKit/Source/devtools/scripts/ |
generate_devtools_extension_api.py | 55 output_name = argv[1] 56 output = open(output_name, 'w')
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
outputcapture.py | 55 def _capture_output_with_name(self, output_name): 56 stream = getattr(sys, output_name) 58 self.saved_outputs[output_name] = stream 59 setattr(sys, output_name, captured_output) 62 def _restore_output_with_name(self, output_name): 63 captured_output = getattr(sys, output_name).getvalue() 64 setattr(sys, output_name, self.saved_outputs[output_name]) 65 del self.saved_outputs[output_name]
|
/external/blktrace/btt/ |
args.c | 267 static FILE *std_open(char *output_name, char *sfx, char *msg) 270 char fname[strlen(output_name) + 32]; 272 sprintf(fname, "%s.%s", output_name, sfx); 331 output_name = optarg; 399 if (output_name == NULL) { 403 rngs_ofp = std_open(output_name, "dat", "range data"); 404 avgs_ofp = std_open(output_name, "avg", "stats data"); 405 msgs_ofp = std_open(output_name, "msg", "K messages"); 407 xavgs_ofp = std_open(output_name, "xvg",
|
bt_timeline.c | 30 char *devices, *exes, *input_name, *output_name, *seek_name, *bno_dump_name; variable
|
/ndk/sources/host-tools/make-3.81/ |
ansi2knr.c | 237 char *output_name = 0; local 279 output_name = argv[2]; 280 out = fopen(output_name, "w"); 283 program_name, output_name); 358 if ( output_name ) { 367 (output_name ? output_name : "stdout"));
|
/external/linux-tools-perf/ |
builtin-record.c | 49 static const char *output_name = NULL; variable 465 if (!output_name) { 471 output_name = "/data/perf.data"; 473 output_name = "perf.data"; 477 if (output_name) { 478 if (!strcmp(output_name, "-")) 480 else if (!stat(output_name, &st) && st.st_size) { 484 output_name); 486 rename(output_name, oldname); 502 output = open(output_name, flags, S_IRUSR | S_IWUSR) [all...] |
builtin-timechart.c | 48 static char const *output_name = "output.svg"; variable 1013 write_svg_file(output_name); 1016 (last_time - first_time) / 1000000000.0, output_name); 1096 OPT_STRING('o', "output", &output_name, "file",
|
/frameworks/compile/mclinker/lib/Object/ |
ObjectBuilder.cpp | 44 std::string output_name = (pair.isNull())?pName:pair.to; local 45 LDSection* output_sect = LDSection::Create(output_name, pKind, pType, pFlag); 56 std::string output_name = (pair.isNull())?pInputSection.name():pair.to; local 57 LDSection* target = m_Module.getSection(output_name); 60 target = LDSection::Create(output_name,
|
/system/media/camera/docs/ |
metadata_parser_xml.py | 243 def render(self, template, output_name=None): 252 output_name: path to the output file, or None to use stdout 271 if output_name is None: 274 file(output_name, "w").write(tpl_data) 288 output_name = sys.argv[3] if len(sys.argv) > 3 else None variable in class:MetadataParserXml 290 parser.render(template_name, output_name)
|
/external/chromium_org/chrome/tools/build/win/ |
create_installer_archive.py | 26 # suffix to uncompresed full archive file, appended to options.output_name 30 CHROME_PATCH_FILE_SUFFIX = "_patch" # prefixed by options.output_name 32 # compressed full archive suffix, will be prefixed by options.output_name 142 def GetPrevVersion(build_dir, temp_dir, last_chrome_installer, output_name): 148 output_name + ARCHIVE_SUFFIX) 198 options.output_name + ARCHIVE_SUFFIX) 216 options.output_dir, options.output_name + COMPRESSED_ARCHIVE_SUFFIX) 224 patch_name_prefix = options.output_name + CHROME_PATCH_FILE_SUFFIX 227 options.output_name + ARCHIVE_SUFFIX) 236 compressed_archive_file = options.output_name + COMPRESSED_ARCHIVE_SUFFI [all...] |
/external/chromium/net/http/ |
mock_gssapi_library_posix.h | 124 gss_name_t* output_name);
|
http_auth_gssapi_posix.h | 43 gss_name_t* output_name) = 0; 114 gss_name_t* output_name);
|
mock_gssapi_library_posix.cc | 264 gss_name_t* output_name) { 267 if (!output_name) 282 *output_name = output;
|
http_auth_gssapi_posix.cc | 507 gss_name_t* output_name) { 510 output_name);
|
/external/chromium_org/tools/gn/ |
target.h | 60 const std::string& output_name() const { return output_name_; } function in class:Target
|
ninja_helper.cc | 118 const std::string& name = target->output_name().empty() ? 119 target->label().name() : target->output_name();
|
/external/llvm/tools/gold/ |
gold-plugin.cpp | 66 std::string output_name = ""; member in namespace:__anon22360 148 output_name = tv->tv_u.tv_string; 412 path = output_name; 416 path = output_name + ".bc";
|
/external/chromium_org/net/http/ |
http_auth_gssapi_posix.h | 46 gss_name_t* output_name) = 0; 117 gss_name_t* output_name) OVERRIDE;
|
mock_gssapi_library_posix.cc | 263 gss_name_t* output_name) { 266 if (!output_name) 281 *output_name = reinterpret_cast<gss_name_t>(output);
|
mock_gssapi_library_posix.h | 130 gss_name_t* output_name) OVERRIDE;
|
http_auth_gssapi_posix.cc | 508 gss_name_t* output_name) { 511 output_name);
|
/external/chromium_org/build/android/ |
adb_profile_chrome.py | 189 output_name = 'systrace-%s' % _GetTraceTimestamp() 190 with open(output_name, 'w') as out: 192 return output_name
|
/external/chromium_org/tools/win/split_link/ |
split_link.py | 179 output_name = OutputNameForIndex(index) 182 print >> f, '/OUT:' + output_name 195 return stdout, popen.returncode, output_name
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/ |
make_token_matcher.py | 220 def process_file(input_name, output_name): 223 with io.open(output_name, 'w', -1, 'utf-8') as output_file:
|
/external/blktrace/ |
blktrace.c | 285 static char *output_name; variable 1504 if (output_name) 1506 output_name, cpu); [all...] |