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

1 2 3 4 5 6

  /external/chromium_org/net/tools/dump_cache/
upgrade_win.h 16 int UpgradeCache(const base::FilePath& output_path, HANDLE pipe);
dump_cache.cc 119 base::FilePath output_path = command_line.GetSwitchValuePath(kOutputPath); local
120 if ((dump_to_files || upgrade) && output_path.empty())
155 return UpgradeCache(output_path, server);
171 net::SimpleCacheDumper dumper(input_path, output_path);
simple_cache_dumper.h 29 SimpleCacheDumper(base::FilePath input_path, base::FilePath output_path);
  /external/llvm/utils/llvm-build/llvmbuild/
configutil.py 8 def configure_file(input_path, output_path, substitutions):
9 """configure_file(input_path, output_path, substitutions) -> bool
39 output_parent_path = os.path.dirname(os.path.abspath(output_path))
44 if os.path.exists(output_path):
47 f = open(output_path, "rb")
60 f = open(output_path, "wb")
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
tcpdump_profiler.py 23 def __init__(self, adb, output_path):
25 self._output_path = output_path
50 def __init__(self, output_path):
51 if not os.path.exists(output_path):
52 os.makedirs(output_path)
53 self._dump_file = os.path.join(output_path, self._DUMP_FILE)
87 def __init__(self, browser_backend, platform_backend, output_path):
89 browser_backend, platform_backend, output_path)
92 browser_backend.adb, output_path)
94 self._platform_profiler = _TCPDumpProfilerLinux(output_path)
    [all...]
trace_profiler.py 12 def __init__(self, browser_backend, platform_backend, output_path):
14 browser_backend, platform_backend, output_path)
iprofiler_profiler.py 24 def __init__(self, pid, output_path):
25 self._output_path = output_path
70 def __init__(self, browser_backend, platform_backend, output_path):
72 browser_backend, platform_backend, output_path)
sample_profiler.py 17 def __init__(self, pid, output_path):
18 self._output_path = output_path
60 def __init__(self, browser_backend, platform_backend, output_path):
62 browser_backend, platform_backend, output_path)
__init__.py 10 def __init__(self, browser_backend, platform_backend, output_path):
13 self._output_path = output_path
tcmalloc_heap_profiler.py 25 def __init__(self, browser_backend, output_path):
27 self._output_path = output_path
101 def __init__(self, browser_backend, platform_backend, output_path):
103 browser_backend, platform_backend, output_path)
106 browser_backend, output_path)
java_heap_profiler.py 19 def __init__(self, browser_backend, platform_backend, output_path):
21 browser_backend, platform_backend, output_path)
  /external/chromium/net/tools/dump_cache/
dump_cache.cc 32 int CopyCache(const std::wstring& output_path, HANDLE pipe, bool copy_to_text);
126 std::wstring output_path = command_line.GetSwitchValueNative(kOutputPath); local
128 if (output_path.size() >= 1 && output_path[output_path.size() - 1] != '\\')
129 output_path.push_back('\\');
137 if (output_path.empty())
172 return CopyCache(output_path, server, copy_to_text);
  /external/chromium_org/build/android/gyp/
strip_library_for_device.py 15 def StripLibrary(android_strip, android_strip_args, library_path, output_path):
16 if build_utils.IsTimeStale(output_path, [library_path]):
19 ['-o', output_path, library_path])
  /frameworks/compile/libbcc/lib/Renderscript/
RSCompilerDriver.cpp 84 llvm::SmallString<80> output_path(pCacheDir);
85 llvm::sys::path::append(output_path, pResName);
86 llvm::sys::path::replace_extension(output_path, ".o");
88 dep_info.push(std::make_pair(output_path.c_str(), bitcode_sha1));
93 FileMutex<FileBase::kReadLock> read_output_mutex(output_path.c_str());
96 ALOGE("Unable to acquire the read lock for %s! (%s)", output_path.c_str(),
104 InputFile *object_file = new (std::nothrow) InputFile(output_path.c_str());
107 // ALOGE("Unable to open the %s for read! (%s)", output_path.c_str(),
116 android::String8 info_path = RSInfo::GetPath(output_path.c_str());
120 output_path.c_str(), info_path.string()
    [all...]
  /development/testrunner/coverage/
coverage.py 72 output_path=None,
81 output_path: path to place output files in. If None will use
84 If not None, this will be used to customize output_path as shown above.
89 if output_path is None:
93 output_path = os.path.join(self._out_path,
100 coverage_local_path = os.path.join(output_path,
104 report_path = os.path.join(output_path,
213 output_path = os.path.join(self._output_root_path, target_name)
215 if os.path.isdir(output_path) and target is not None:
216 coverage_files = self._FindCoverageFiles(output_path)
    [all...]
  /external/chromium_org/build/android/pylib/
device_stats_monitor.py 47 def StopAndCollect(self, output_path):
51 output_path: Path to save results.
95 with open(output_path, 'w') as f:
98 DeviceStatsMonitor.RESULT_VIEWER_PATH, urllib.quote(output_path))
  /external/chromium_org/media/webm/chromeos/
webm_encoder.h 37 // Create new instance for writing to |output_path|. If |realtime| is |true|,
39 WebmEncoder(const base::FilePath& output_path, int bitrate, bool realtime);
  /external/chromium_org/tools/flakiness/
find_flakiness.py 91 def FindUnaryFlakiness(test_path, output_path, num_procs, num_repeats, timeout):
154 data_file = open(output_path, 'w')
167 output_path = os.path.basename(args[0]) + FF_OUTPUT_SUFFIX
175 args[0], output_path, FF_NUM_PROCS, FF_NUM_REPEATS, FF_TIMEOUT)
  /external/v8/test/message/
testcfg.py 119 output_path = file_prefix + ".out"
120 if not exists(output_path):
121 print "Could not find %s" % output_path
123 result.append(MessageTestCase(test, file_path, output_path, mode,
  /frameworks/compile/libbcc/tools/bcc_compat/
Main.cpp 234 llvm::SmallString<200> output_path(input_path);
236 llvm::error_code err = llvm::sys::fs::make_absolute(output_path);
245 llvm::sys::path::replace_extension(output_path, "o");
249 llvm::sys::path::remove_filename(output_path);
250 llvm::sys::path::append(output_path, "a.out");
253 return output_path.c_str();
  /external/chromium_org/chrome/tools/build/mac/
generate_localizer 114 output_path = argv[1];
138 file_fd = open(output_path, 'w')
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
create-html-entity-table 67 output_path = sys.argv[2] variable
77 output_file = open(output_path, "w")
  /external/chromium_org/content/browser/download/
download_file_unittest.cc 349 base::FilePath output_path; local
353 RenameAndUniquify(path_1, &output_path));
356 EXPECT_EQ(path_1, output_path);
368 RenameAndUniquify(path_2, &output_path));
371 EXPECT_EQ(path_2, output_path);
382 RenameAndUniquify(path_3, &output_path));
385 EXPECT_EQ(path_3, output_path);
399 RenameAndUniquify(path_4, &output_path));
402 EXPECT_EQ(path_4, output_path);
423 RenameAndAnnotate(path_5, &output_path));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
generate_protocol_externs.py 84 def generate_protocol_externs(output_path, input_path):
91 output_file = open(output_path, "w")
194 output_path = sys.argv[2] variable
196 generate_protocol_externs(output_path, input_path)
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 239 string output_path = ComputePackagedPath(context.reflectPath, local
241 if (!SlangUtils::CreateDirectoryWithParents(llvm::StringRef(output_path),
244 output_path.c_str());
253 string output_filename(output_path);

Completed in 735 milliseconds

1 2 3 4 5 6