HomeSort by relevance Sort by last modified time
    Searched refs:output_name (Results 1 - 25 of 39) sorted by null

1 2

  /external/webkit/Tools/Scripts/webkitpy/common/system/
outputcapture.py 39 def _capture_output_with_name(self, output_name):
40 self.saved_outputs[output_name] = getattr(sys, output_name)
42 setattr(sys, output_name, captured_output)
45 def _restore_output_with_name(self, output_name):
46 captured_output = getattr(sys, output_name).getvalue()
47 setattr(sys, output_name, self.saved_outputs[output_name])
48 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
globals.h 169 extern char bt_timeline_version[], *devices, *exes, *input_name, *output_name;
output.c 681 if (output_name == NULL) return;
683 sprintf(fname, "%s_qhist.dat", output_name);
698 sprintf(fname, "%s_dhist.dat", output_name);
  /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",
  /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/llvm/tools/gold/
gold-plugin.cpp 68 std::string output_name = ""; member in namespace:__anon10750
150 output_name = tv->tv_u.tv_string;
425 path = output_name;
429 path = output_name + ".bc";
  /external/blktrace/
blktrace.c 285 static char *output_name; variable
1504 if (output_name)
1506 output_name, cpu);
    [all...]
blkparse.c 262 static char *output_name; variable
    [all...]
  /build/tools/releasetools/
common.py 366 def SignFile(input_name, output_name, key, password, align=None,
368 """Sign the input_name zip/jar/apk, producing output_name. Use the
387 sign_name = output_name
404 p = Run(["zipalign", "-f", str(align), sign_name, output_name])
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest.cc 300 internal::FilePath output_name(colon + 1);
301 if (!output_name.IsDirectory())
302 return output_name.ToString();
305 output_name, internal::GetCurrentExecutableName(),
    [all...]
  /external/chromium/testing/gtest/src/
gtest.cc 409 internal::FilePath output_name(colon + 1);
410 if (!output_name.IsAbsolutePath())
415 output_name = internal::FilePath::ConcatPaths(
419 if (!output_name.IsDirectory())
420 return output_name.ToString();
423 output_name, internal::GetCurrentExecutableName(),
    [all...]
  /external/gtest/src/
gtest.cc 409 internal::FilePath output_name(colon + 1);
410 if (!output_name.IsAbsolutePath())
415 output_name = internal::FilePath::ConcatPaths(
419 if (!output_name.IsDirectory())
420 return output_name.ToString();
423 output_name, internal::GetCurrentExecutableName(),
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest.cc 409 internal::FilePath output_name(colon + 1);
410 if (!output_name.IsAbsolutePath())
415 output_name = internal::FilePath::ConcatPaths(
419 if (!output_name.IsDirectory())
420 return output_name.ToString();
423 output_name, internal::GetCurrentExecutableName(),
    [all...]
  /external/protobuf/gtest/src/
gtest.cc 390 internal::FilePath output_name(colon + 1);
391 if (!output_name.IsAbsolutePath())
396 output_name = internal::FilePath::ConcatPaths(
400 if (!output_name.IsDirectory())
401 return output_name.ToString();
404 output_name, internal::GetCurrentExecutableName(),
    [all...]
  /external/chromium/sdch/open-vcdiff/
ltmain.sh     [all...]
  /external/chromium/third_party/libevent/
ltmain.sh     [all...]
  /external/libffi/
ltmain.sh     [all...]
  /external/llvm/autoconf/
ltmain.sh     [all...]

Completed in 3626 milliseconds

1 2