Home
last modified time | relevance | path

Searched refs:exe_path (Results 1 – 13 of 13) sorted by relevance

/external/pdfium/testing/
Dtest_support.cpp24 std::string GetFullPathForSnapshotFile(const std::string& exe_path, in GetFullPathForSnapshotFile() argument
33 } else if (!exe_path.empty()) { in GetFullPathForSnapshotFile()
34 size_t last_separator = exe_path.rfind(PATH_SEPARATOR); in GetFullPathForSnapshotFile()
36 result = exe_path.substr(0, last_separator + 1); in GetFullPathForSnapshotFile()
43 bool GetExternalData(const std::string& exe_path, in GetExternalData() argument
48 GetFullPathForSnapshotFile(exe_path, bin_dir, filename); in GetExternalData()
61 void InitializeV8Common(const char* exe_path, v8::Platform** platform) { in InitializeV8Common() argument
62 v8::V8::InitializeICUDefaultLocation(exe_path); in InitializeV8Common()
154 bool InitializeV8ForPDFium(const std::string& exe_path, in InitializeV8ForPDFium() argument
159 InitializeV8Common(exe_path.c_str(), platform); in InitializeV8ForPDFium()
[all …]
Dtest_support.h80 bool InitializeV8ForPDFium(const std::string& exe_path,
86 bool InitializeV8ForPDFium(const std::string& exe_path,
/external/libcxx/utils/libcxx/test/
Dexecutor.py18 def run(self, exe_path, cmd, local_cwd, file_deps=None, env=None): argument
39 def run(self, exe_path, cmd=None, work_dir='.', file_deps=None, env=None): argument
40 cmd = cmd or [exe_path]
84 def run(self, exe_path, cmd=None, work_dir='.', file_deps=None, env=None): argument
85 cmd = cmd or [exe_path]
86 return self.chain.run(exe_path, self.commandPrefix + cmd, work_dir,
98 def run(self, exe_path, cmd=None, work_dir='.', file_deps=None, env=None): argument
99 cmd = cmd or [exe_path]
144 def run(self, exe_path, cmd=None, work_dir='.', file_deps=None, env=None): argument
152 cmd = [c if c != exe_path else target_exe_path for c in cmd]
[all …]
/external/autotest/client/tools/
Dcrash_handler.py133 exe_path = get_info_from_core(path)['full_exe_path']
137 if exe_path is not None:
144 (exe_path, path, gdb_command_path))
149 exe_path = "Unknown"
153 report = "Program: %s\n" % exe_path
/external/chromium-trace/catapult/systrace/atrace_helper/jni/
Dprocess_info.cc43 char exe_path[64]; in ReadProcessName() local
44 sprintf(exe_path, "/proc/%d/exe", pid_); in ReadProcessName()
46 ssize_t res = readlink(exe_path, exe_, sizeof(exe_) - 1); in ReadProcessName()
/external/autotest/client/common_lib/cros/
Dchromedriver.py135 def __init__(self, exe_path, port=None, skip_cleanup=False, argument
151 if not os.path.exists(exe_path):
152 raise RuntimeError('ChromeDriver exe not found at: ' + exe_path)
154 chromedriver_args = [exe_path]
/external/v8/src/base/debug/
Dstack_trace_win.cc82 wchar_t exe_path[MAX_PATH]; in InitializeSymbols() local
83 GetExePath(exe_path); in InitializeSymbols()
85 std::wstring(exe_path)); in InitializeSymbols()
/external/jsoncpp/test/
Drununittests.py28 def runAllTests( exe_path, use_valgrind=False ): argument
29 test_proxy = TestProxy( exe_path, use_valgrind=use_valgrind )
/external/llvm/lib/Support/Unix/
DPath.inc155 char exe_path[MAXPATHLEN];
156 uint32_t size = sizeof(exe_path);
157 if (_NSGetExecutablePath(exe_path, &size) == 0) {
159 if (realpath(exe_path, link_path))
165 char exe_path[PATH_MAX];
167 if (getprogpath(exe_path, argv0) != NULL)
168 return exe_path;
170 char exe_path[MAXPATHLEN];
174 ssize_t len = readlink(aPath.str().c_str(), exe_path, sizeof(exe_path));
176 return std::string(exe_path, len);
[all …]
/external/swiftshader/third_party/llvm-subzero/lib/Support/Unix/
DPath.inc156 char exe_path[MAXPATHLEN];
157 uint32_t size = sizeof(exe_path);
158 if (_NSGetExecutablePath(exe_path, &size) == 0) {
160 if (realpath(exe_path, link_path))
166 char exe_path[PATH_MAX];
168 if (getprogpath(exe_path, argv0) != NULL)
169 return exe_path;
171 char exe_path[MAXPATHLEN];
175 ssize_t len = readlink(aPath.str().c_str(), exe_path, sizeof(exe_path));
177 return std::string(exe_path, len);
[all …]
/external/swiftshader/third_party/LLVM/lib/Support/Unix/
DPath.inc325 char exe_path[MAXPATHLEN];
326 uint32_t size = sizeof(exe_path);
327 if (_NSGetExecutablePath(exe_path, &size) == 0) {
329 if (realpath(exe_path, link_path))
334 char exe_path[PATH_MAX];
336 if (getprogpath(exe_path, argv0) != NULL)
337 return Path(exe_path);
339 char exe_path[MAXPATHLEN];
340 ssize_t len = readlink("/proc/self/exe", exe_path, sizeof(exe_path));
342 return Path(StringRef(exe_path, len));
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_mac.cc308 InternalScopedString exe_path(kMaxPathLength); in ReadBinaryName() local
309 uint32_t size = exe_path.size(); in ReadBinaryName()
310 if (_NSGetExecutablePath(exe_path.data(), &size) == 0 && in ReadBinaryName()
311 realpath(exe_path.data(), buf) != 0) { in ReadBinaryName()
/external/pdfium/samples/
Dpdfium_test.cc80 std::string exe_path; member
433 options->exe_path = args[0]; in ParseCommandLine()
949 InitializeV8ForPDFium(options.exe_path, options.bin_directory, &natives, in main()
952 InitializeV8ForPDFium(options.exe_path, &platform); in main()