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

1 2

  /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...]
  /system/firewalld/
iptables.h 80 virtual bool AddAcceptRule(const std::string& executable_path,
84 virtual bool DeleteAcceptRule(const std::string& executable_path,
95 const std::string& executable_path,
100 const std::string& executable_path,
iptables.cc 327 bool IpTables::AddAcceptRule(const std::string& executable_path,
332 argv.push_back(executable_path);
351 bool IpTables::DeleteAcceptRule(const std::string& executable_path,
356 argv.push_back(executable_path);
376 const std::string& executable_path,
379 argv.push_back(executable_path);
395 << " using '" << executable_path << "'"; local
401 const std::string& username, const std::string& executable_path, bool add) {
403 argv.push_back(executable_path);
  /development/python-packages/gdbrunner/
__init__.py 188 def find_file(device, executable_path, sysroot, user=None):
197 executable_path: absolute path to the executable or symlink.
206 ValueError: |executable_path| is not absolute.
208 if not os.path.isabs(executable_path):
209 raise ValueError("'{}' is not an absolute path".format(executable_path))
215 yield (sysroot + executable_path, True)
219 target = device.shell(['readlink', '-e', '-n', executable_path])[0]
229 ["cat", executable_path, ">", remote_temp_path])
234 "device".format(executable_path))
241 raise RuntimeError('Could not find executable {}'.format(executable_path))
    [all...]
  /external/valgrind/coregrind/
pub_core_ume.h 64 HChar* executable_path; // OUT: path passed to execve() member in struct:__anon25358
pub_core_initimg.h 111 HChar* executable_path; /* path passed to execve() */ member in struct:_IICreateImageInfo
  /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/tests/
stdlib_test.cpp 185 char executable_path[PATH_MAX]; local
186 int rc = readlink("/proc/self/exe", executable_path, sizeof(executable_path));
188 executable_path[rc] = '\0';
192 ASSERT_STREQ(executable_path, p);
195 ASSERT_STREQ(executable_path, p);
dlfcn_test.cpp 793 const std::string& executable_path = get_executable_path(); local
798 ASSERT_STREQ(executable_path.c_str(), dli_realpath);
811 if (executable_path == rec.pathname) {
    [all...]
  /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);
456 /* --- executable_path + NULL --- */
457 if (info->executable_path)
458 *ptr++ = (Addr)copy_str(&strtab, info->executable_path);
  /external/autotest/client/site_tests/graphics_dEQP/
graphics_dEQP.py 414 executable_path = os.path.join(self.DEQP_BASEDIR, 'modules', module)
415 executable = os.path.join(executable_path, 'deqp-%s' % module)
421 os.chdir(executable_path)
  /system/extras/perfprofd/tests/
perfprofd_test.cc 40 static const char *executable_path; variable
103 ASSERT_TRUE(executable_path != nullptr);
104 std::string s(executable_path);
689 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/gtest/src/
gtest-death-test.cc 730 char executable_path[_MAX_PATH + 1]; // NOLINT local
733 executable_path,
756 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 693 char executable_path[_MAX_PATH + 1]; // NOLINT local
696 executable_path,
720 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/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-death-test.cc 730 char executable_path[_MAX_PATH + 1]; // NOLINT local
733 executable_path,
756 executable_path,
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-death-test.cc 730 char executable_path[_MAX_PATH + 1]; // NOLINT local
733 executable_path,
756 executable_path,
    [all...]
  /bionic/linker/
linker.cpp     [all...]
  /external/valgrind/coregrind/m_ume/
macho.c 865 info->executable_path = VG_(strdup)("ume.macho.executable_path", name);
  /external/protobuf/gtest/fused-src/gtest/
gtest-all.cc     [all...]

Completed in 1434 milliseconds

1 2