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

1 2

  /external/python/cpython2/Lib/ctypes/macholib/
dyld.py 93 def dyld_executable_path_search(name, executable_path=None):
95 # dylib_name starts with "@executable_path/" then construct the
97 if name.startswith('@executable_path/') and executable_path is not None:
98 yield os.path.join(executable_path, name[len('@executable_path/'):])
122 def dyld_find(name, executable_path=None, env=None):
127 executable_path = ensure_utf8(executable_path)
130 dyld_executable_path_search(name, executable_path),
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/macholib/
dyld.py 96 def dyld_executable_path_search(name, executable_path=None):
98 # dylib_name starts with "@executable_path/" then construct the
100 if name.startswith('@executable_path/') and executable_path is not None:
101 yield os.path.join(executable_path, name[len('@executable_path/'):])
125 def dyld_find(name, executable_path=None, env=None):
130 executable_path = ensure_utf8(executable_path)
133 dyld_executable_path_search(name, executable_path),
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/macholib/
dyld.py 96 def dyld_executable_path_search(name, executable_path=None):
98 # dylib_name starts with "@executable_path/" then construct the
100 if name.startswith('@executable_path/') and executable_path is not None:
101 yield os.path.join(executable_path, name[len('@executable_path/'):])
125 def dyld_find(name, executable_path=None, env=None):
130 executable_path = ensure_utf8(executable_path)
133 dyld_executable_path_search(name, executable_path),
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/macholib/
dyld.py 96 def dyld_executable_path_search(name, executable_path=None):
98 # dylib_name starts with "@executable_path/" then construct the
100 if name.startswith('@executable_path/') and executable_path is not None:
101 yield os.path.join(executable_path, name[len('@executable_path/'):])
125 def dyld_find(name, executable_path=None, env=None):
130 executable_path = ensure_utf8(executable_path)
133 dyld_executable_path_search(name, executable_path),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/macholib/
dyld.py 96 def dyld_executable_path_search(name, executable_path=None):
98 # dylib_name starts with "@executable_path/" then construct the
100 if name.startswith('@executable_path/') and executable_path is not None:
101 yield os.path.join(executable_path, name[len('@executable_path/'):])
125 def dyld_find(name, executable_path=None, env=None):
130 executable_path = ensure_utf8(executable_path)
133 dyld_executable_path_search(name, executable_path),
    [all...]
  /art/dexlayout/
dexdiag_test.cc 90 std::string executable_path = GetDexDiagFilePath(); local
91 EXPECT_TRUE(OS::FileExists(executable_path.c_str())) << executable_path
93 exec_argv.push_back(executable_path);
  /bionic/linker/
linker_main.h 52 std::vector<android_namespace_t*> init_default_namespaces(const char* executable_path);
linker_main.cpp 187 static std::string executable_path; local
188 if (executable_path.empty()) {
194 executable_path = std::string(path, path_len);
197 return executable_path.c_str();
266 // Stat "/proc/self/exe" instead of executable_path because
273 const char* executable_path = get_executable_path(); local
274 soinfo* si = soinfo_alloc(&g_default_namespace, executable_path, &file_stat, 0, RTLD_GLOBAL);
287 map->l_name = const_cast<char*>(executable_path);
340 std::vector<android_namespace_t*> namespaces = init_default_namespaces(executable_path);
  /external/valgrind/coregrind/
pub_core_ume.h 64 HChar* executable_path; // OUT: path passed to execve() member in struct:__anon37557
pub_core_initimg.h 113 HChar* executable_path; /* path passed to execve() */ member in struct:_IICreateImageInfo
  /development/python-packages/gdbrunner/
__init__.py 189 def find_file(device, executable_path, sysroot, run_as_cmd=None):
198 executable_path: absolute path to the executable or symlink.
207 ValueError: |executable_path| is not absolute.
209 if not os.path.isabs(executable_path):
210 raise ValueError("'{}' is not an absolute path".format(executable_path))
216 yield (sysroot + executable_path, True)
220 target = device.shell(['readlink', '-e', '-n', executable_path])[0]
230 cmd = ["cat", executable_path, ">", remote_temp_path]
238 "device".format(executable_path))
245 raise RuntimeError('Could not find executable {}'.format(executable_path))
    [all...]
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
dependency_manager_util_unittest.py 38 self.executable_path = (os.path.join(self.tmp_dir, 'executable'))
39 with open(self.executable_path, 'w+') as executable_file:
41 os.chmod(self.executable_path, stat.S_IRWXU)
71 executable_path = (os.path.join(top_dir, 'executable'))
80 self.assertTrue(os.path.isfile(executable_path))
101 stat.S_IRWXU & stat.S_IMODE(os.stat(executable_path).st_mode))
125 self.assertFalse(os.path.isfile(self.executable_path))
  /bionic/linker/tests/
linker_config_test.cpp 110 std::string executable_path = std::string(tmp_dir.path) + "/some-binary"; local
122 executable_path.c_str(),
  /system/extras/simpleperf/
gtest_main.cpp 134 std::string executable_path; local
135 if (!android::base::Readlink("/proc/self/exe", &executable_path)) {
138 Workload::RunCmd({"run-as", GetDefaultAppPackageName(), "cp", executable_path, "workload"});
  /bionic/tests/
stdlib_test.cpp 220 char executable_path[PATH_MAX]; local
221 int rc = readlink("/proc/self/exe", executable_path, sizeof(executable_path));
223 executable_path[rc] = '\0';
227 ASSERT_STREQ(executable_path, p);
230 ASSERT_STREQ(executable_path, p);
  /external/valgrind/coregrind/m_initimg/
initimg-darwin.c 286 | executable_path | (first arg to execve())
368 /* Darwin executable_path + NULL */
370 if (info->executable_path) {
371 stringsize += 1 + VG_(strlen)(info->executable_path);
452 /* --- executable_path + NULL --- */
453 if (info->executable_path)
454 *ptr++ = (Addr)copy_str(&strtab, info->executable_path);
  /system/extras/perfprofd/tests/
perfprofd_test.cc 41 static const char *executable_path; variable
104 ASSERT_TRUE(executable_path != nullptr);
105 std::string s(executable_path);
868 executable_path = argv[0];
  /external/google-breakpad/src/testing/gtest/src/
gtest-death-test.cc 731 char executable_path[_MAX_PATH + 1]; // NOLINT local
734 executable_path,
758 executable_path,
    [all...]
  /external/googletest/googletest/src/
gtest-death-test.cc 741 char executable_path[_MAX_PATH + 1]; // NOLINT local
744 executable_path,
767 executable_path,
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-death-test.cc 741 char executable_path[_MAX_PATH + 1]; // NOLINT local
744 executable_path,
767 executable_path,
    [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-death-test.cc 695 char executable_path[_MAX_PATH + 1]; // NOLINT local
698 executable_path,
722 executable_path,
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-death-test.cc 730 char executable_path[_MAX_PATH + 1]; // NOLINT local
733 executable_path,
756 executable_path,
    [all...]
  /external/protobuf/gtest/src/
gtest-death-test.cc 645 char executable_path[_MAX_PATH + 1]; // NOLINT local
648 executable_path,
672 executable_path,
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-death-test.cc 693 char executable_path[_MAX_PATH + 1]; // NOLINT local
696 executable_path,
720 executable_path,
    [all...]
  /external/v8/testing/gtest/src/
gtest-death-test.cc 739 char executable_path[_MAX_PATH + 1]; // NOLINT local
742 executable_path,
765 executable_path,
    [all...]

Completed in 876 milliseconds

1 2