HomeSort by relevance Sort by last modified time
    Searched refs:exec_path (Results 1 - 19 of 19) sorted by null

  /external/v8/src/base/
file-utils.h 15 V8_BASE_EXPORT char* RelativePath(char** buffer, const char* exec_path,
file-utils.cc 15 char* RelativePath(char** buffer, const char* exec_path, const char* name) {
16 DCHECK(exec_path);
17 int path_separator = static_cast<int>(strlen(exec_path)) - 1;
19 !OS::isDirectorySeparator(exec_path[path_separator])) {
27 strncat(*buffer, exec_path, path_separator + 1);
  /external/v8/src/
icu_util.h 19 bool InitializeICUDefaultLocation(const char* exec_path,
icu_util.cc 44 bool InitializeICUDefaultLocation(const char* exec_path,
55 base::RelativePath(&icu_data_file_default, exec_path, "icudtl.dat");
57 base::RelativePath(&icu_data_file_default, exec_path, "icudtb.dat");
api.cc     [all...]
  /external/python/cpython2/Mac/Tools/
pythonw.c 150 char* exec_path = get_python_path(); local
158 argv[0] = exec_path;
170 posix_spawn(NULL, exec_path, NULL,
172 err(1, "posix_spawn: %s", exec_path);
175 execve(exec_path, argv, environ);
  /art/runtime/
prebuilt_tools_test.cc 35 std::string exec_path = tools_dir + tool; local
36 if (stat(exec_path.c_str(), &exec_st) != 0) {
  /external/libcxx/utils/libcxx/android/test/
format.py 55 def _build(self, exec_path, source_path, compile_only=False,
59 self, exec_path, source_path, compile_only, use_verify)
64 exec_file = os.path.basename(exec_path)
67 adb.push(exec_path, self._wd_path(exec_file, exec_file))
81 def _clean(self, exec_path):
82 exec_file = os.path.basename(exec_path)
86 os.remove(exec_path)
90 def _run(self, exec_path, _, in_dir=None):
  /external/python/cpython3/Mac/Tools/
pythonw.c 153 char* exec_path = get_python_path(); local
208 argv[0] = exec_path;
218 posix_spawn(NULL, exec_path, NULL,
220 err(1, "posix_spawn: %s", exec_path);
223 execve(exec_path, argv, environ);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/android/test/
format.py 58 def _clean(self, exec_path):
59 exec_file = os.path.basename(exec_path)
63 os.remove(exec_path)
  /external/autotest/client/site_tests/graphics_Gralloc/
graphics_Gralloc.py 49 exec_path = os.path.join(_EXEC_DIR, binary)
50 arc._android_shell('mv %s %s' % (sdcard_path, exec_path))
51 arc._android_shell('chmod o+rwx %s' % (exec_path))
52 self._executables.append(exec_path)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/ndk/test/
format.py 48 def _clean(self, exec_path):
49 exec_file = os.path.basename(exec_path)
  /external/libcxx/utils/libcxx/test/
format.py 171 def _clean(self, exec_path): # pylint: disable=no-self-use
172 libcxx.util.cleanFile(exec_path)
178 exec_path = tmpBase + '.exe'
185 source_path, out=exec_path, object_file=object_path,
206 cmd, out, err, rc = self.executor.run(exec_path, [exec_path],
223 self._clean(exec_path)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/test/
format.py 171 def _clean(self, exec_path): # pylint: disable=no-self-use
172 libcxx.util.cleanFile(exec_path)
178 exec_path = tmpBase + '.exe'
185 source_path, out=exec_path, object_file=object_path,
206 cmd, out, err, rc = self.executor.run(exec_path, [exec_path],
223 self._clean(exec_path)
  /external/autotest/frontend/afe/
rpc_utils.py 585 def _common_entry_to_dict(entry, type, job_dict, exec_path, status, started_on):
589 execution_path=exec_path,
616 exec_path = server_utils.get_special_task_exec_path(
622 exec_path, status, task['time_started'])
628 exec_path = server_utils.get_hqe_exec_path(tag,
630 return _common_entry_to_dict(queue_entry, 'Job', job_dict, exec_path,
    [all...]
  /system/extras/simpleperf/
cmd_record.cpp 1260 std::string exec_path = android::base::GetExecutablePath(); local
    [all...]
  /external/ltp/testcases/kernel/fs/doio/
growfiles.c 387 char *exec_path = NULL; local
1213 if (exec_path == NULL) {
1214 exec_path = argv[0];
1216 argv[0] = malloc(strlen(exec_path) + 2);
1217 sprintf(argv[0], "-%s", exec_path);
    [all...]
doio.c 650 char *exec_path; local
652 exec_path = argv[0];
653 argv[0] = malloc(strlen(exec_path) + 2);
654 sprintf(argv[0], "-%s", exec_path);
656 execvp(exec_path, argv);
659 exec_path, SYSERR, errno);
    [all...]
  /external/v8/include/
v8.h     [all...]

Completed in 399 milliseconds