/aosp_15_r20/external/pigweed/pw_ide/py/ |
H A D | cpp_test.py | 45 executable_path = self.temp_dir_path / 'clang' 48 str(executable_path.absolute()), path_globs=query_drivers 51 self.assertEqual(str(result), str(executable_path.absolute())) 54 executable_path = Path('/usr/bin/clang') 57 str(executable_path.absolute()), path_globs=query_drivers 60 self.assertEqual(str(result), str(executable_path.absolute())) 63 executable_path = Path('../clang') 66 str(executable_path), path_globs=query_drivers 69 self.assertEqual(str(result), str(executable_path)) 72 executable_path = Path('clang') [all …]
|
/aosp_15_r20/external/python/cpython2/Lib/ctypes/macholib/ |
D | dyld.py | 93 def dyld_executable_path_search(name, executable_path=None): argument 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): argument 127 executable_path = ensure_utf8(executable_path) 130 dyld_executable_path_search(name, executable_path), 137 def framework_find(fn, executable_path=None, env=None): argument 147 return dyld_find(fn, executable_path=executable_path, env=env) 156 return dyld_find(fn, executable_path=executable_path, env=env)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/ctypes/macholib/ |
D | dyld.py | 92 def dyld_executable_path_search(name, executable_path=None): argument 96 if name.startswith('@executable_path/') and executable_path is not None: 97 yield os.path.join(executable_path, name[len('@executable_path/'):]) 121 def dyld_find(name, executable_path=None, env=None): argument 127 dyld_executable_path_search(name, executable_path), 141 def framework_find(fn, executable_path=None, env=None): argument 152 return dyld_find(fn, executable_path=executable_path, env=env) 161 return dyld_find(fn, executable_path=executable_path, env=env)
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/ctypes/macholib/ |
H A D | dyld.py | 92 def dyld_executable_path_search(name, executable_path=None): argument 96 if name.startswith('@executable_path/') and executable_path is not None: 97 yield os.path.join(executable_path, name[len('@executable_path/'):]) 121 def dyld_find(name, executable_path=None, env=None): argument 127 dyld_executable_path_search(name, executable_path), 141 def framework_find(fn, executable_path=None, env=None): argument 152 return dyld_find(fn, executable_path=executable_path, env=env) 161 return dyld_find(fn, executable_path=executable_path, env=env)
|
/aosp_15_r20/external/python/cpython3/Lib/ctypes/macholib/ |
D | dyld.py | 92 def dyld_executable_path_search(name, executable_path=None): argument 96 if name.startswith('@executable_path/') and executable_path is not None: 97 yield os.path.join(executable_path, name[len('@executable_path/'):]) 121 def dyld_find(name, executable_path=None, env=None): argument 127 dyld_executable_path_search(name, executable_path), 141 def framework_find(fn, executable_path=None, env=None): argument 152 return dyld_find(fn, executable_path=executable_path, env=env) 161 return dyld_find(fn, executable_path=executable_path, env=env)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/ctypes/macholib/ |
D | dyld.py | 92 def dyld_executable_path_search(name, executable_path=None): argument 96 if name.startswith('@executable_path/') and executable_path is not None: 97 yield os.path.join(executable_path, name[len('@executable_path/'):]) 121 def dyld_find(name, executable_path=None, env=None): argument 127 dyld_executable_path_search(name, executable_path), 141 def framework_find(fn, executable_path=None, env=None): argument 152 return dyld_find(fn, executable_path=executable_path, env=env) 161 return dyld_find(fn, executable_path=executable_path, env=env)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/ctypes/macholib/ |
D | dyld.py | 92 def dyld_executable_path_search(name, executable_path=None): argument 96 if name.startswith('@executable_path/') and executable_path is not None: 97 yield os.path.join(executable_path, name[len('@executable_path/'):]) 121 def dyld_find(name, executable_path=None, env=None): argument 127 dyld_executable_path_search(name, executable_path), 141 def framework_find(fn, executable_path=None, env=None): argument 152 return dyld_find(fn, executable_path=executable_path, env=env) 161 return dyld_find(fn, executable_path=executable_path, env=env)
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/ctypes/macholib/ |
D | dyld.py | 92 def dyld_executable_path_search(name, executable_path=None): argument 96 if name.startswith('@executable_path/') and executable_path is not None: 97 yield os.path.join(executable_path, name[len('@executable_path/'):]) 121 def dyld_find(name, executable_path=None, env=None): argument 127 dyld_executable_path_search(name, executable_path), 141 def framework_find(fn, executable_path=None, env=None): argument 152 return dyld_find(fn, executable_path=executable_path, env=env) 161 return dyld_find(fn, executable_path=executable_path, env=env)
|
/aosp_15_r20/development/python-packages/gdbrunner/gdbrunner/ |
H A D | __init__.py | 245 def find_file(device, executable_path, sysroot, run_as_cmd=None): argument 265 if not os.path.isabs(executable_path): 266 raise ValueError("'{}' is not an absolute path".format(executable_path)) 272 yield (sysroot + executable_path, True) 276 target = device.shell(['readlink', '-e', '-n', executable_path])[0] 286 cmd = ["cat", executable_path, ">", remote_temp_path] 294 "device".format(executable_path)) 301 raise RuntimeError('Could not find executable {}'.format(executable_path))
|
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/ |
D | DeployQt4.cmake | 35 resolve_qt4_paths(<paths_var> [<executable_path>]) 38 relative to the <executable_path> (if supplied) or the 118 unset(executable_path) 120 set(executable_path ${ARGV1}) variable 128 if(${executable_path}) 129 list(APPEND paths_resolved "${executable_path}/${path}") 188 set(executable_path "${executable}") variable 194 get_filename_component(executable_path "${executable}" PATH) 195 if(NOT executable_path) 196 set(executable_path ".") variable [all …]
|
/aosp_15_r20/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
H A D | 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))
|
/aosp_15_r20/bionic/linker/ |
H A D | linker_config_test.cpp | 174 std::string executable_path = std::string(tmp_dir.path) + "/some-binary"; in run_linker_config_smoke_test() local 186 executable_path.c_str(), in run_linker_config_smoke_test() 295 std::string executable_path = std::string(tmp_dir.path) + "/some-binary"; in TEST() local 300 executable_path.c_str(), in TEST() 340 std::string executable_path = sub_dir + "/some-binary"; in TEST() local 346 executable_path.c_str(), in TEST()
|
/aosp_15_r20/build/make/tools/edit_monitor/ |
H A D | edit_monitor_integration_test.py | 159 executable_path = binary_dir.joinpath(executable_name) 163 shutil.copy(binary, executable_path) 164 executable_path.chmod(0o755) 165 return executable_path
|
/aosp_15_r20/external/python/cpython2/Launcher/ |
D | launcher_main.cpp | 47 std::string executable_path = android::base::GetExecutablePath(); in main() local 50 Py_SetPythonHome(strdup(executable_path.c_str())); in main() 60 new_argv[1] = strdup(executable_path.c_str()); in main()
|
/aosp_15_r20/external/cronet/base/ |
H A D | base_paths_apple.cc | 28 std::string executable_path(executable_length - 1, '\0'); in GetExecutablePath() local 29 int rv = _NSGetExecutablePath(executable_path.data(), &executable_length); in GetExecutablePath() 38 return base::MakeAbsoluteFilePath(base::FilePath(executable_path)); in GetExecutablePath()
|
/aosp_15_r20/external/cronet/testing/ |
H A D | test_env.py | 141 def get_sanitizer_symbolize_command(json_path=None, executable_path=None): argument 148 if executable_path is not None: 149 cmd.append('--executable-path=%s' % executable_path) 170 json_path=json_path, executable_path=cmd[0]) 424 get_sanitizer_symbolize_command(executable_path=cmd[0]),
|
/aosp_15_r20/external/cronet/components/metrics/ |
H A D | machine_id_provider_win.cc | 36 base::FilePath executable_path; in GetMachineId() local 38 if (!base::PathService::Get(base::FILE_EXE, &executable_path)) { in GetMachineId() 44 executable_path.GetComponents(); in GetMachineId()
|
/aosp_15_r20/external/webrtc/test/testsupport/ |
H A D | mac_file_utils.mm | 29 char executable_path[PATH_MAX + 1]; 30 int rv = _NSGetExecutablePath(executable_path, &executable_length); 34 if (realpath(executable_path, full_path) == nullptr) {
|
/aosp_15_r20/external/jazzer-api/launcher/ |
H A D | jvm_tooling.cpp | 105 auto executable_path = getExecutablePath(); in getInstrumentorAgentPath() local 107 if (!executable_path.empty()) { in getInstrumentorAgentPath() 113 std::string(executable_path), BAZEL_CURRENT_REPOSITORY, &error)); in getInstrumentorAgentPath() 121 const auto dir = dirFromFullPath(executable_path); in getInstrumentorAgentPath()
|
/aosp_15_r20/external/cronet/base/allocator/partition_allocator/src/partition_alloc/ |
H A D | partition_address_space.cc | 107 char executable_path[path_buffer_size]; in IsIOSTestProcess() local 110 int rv = _NSGetExecutablePath(executable_path, &executable_length); in IsIOSTestProcess() 113 std::char_traits<char>::length(executable_path); in IsIOSTestProcess() 121 executable_path + (executable_path_length - suffix_length), in IsIOSTestProcess()
|
/aosp_15_r20/build/soong/tests/ |
H A D | run_tool_with_logging_test.py | 219 executable_path = Path(self.working_dir.name).joinpath(executable_name) 223 shutil.copy(p, executable_path) 224 Path.chmod(executable_path, 0o755) 225 return executable_path
|
/aosp_15_r20/device/google/cuttlefish/host/libs/vm_manager/ |
D | crosvm_builder.cpp | 62 const std::string& executable_path) { in AddControlSocket() argument 63 auto stopper = [executable_path, control_socket]() { in AddControlSocket() 64 Command stop_cmd(executable_path); in AddControlSocket()
|
/aosp_15_r20/external/webrtc/audio/test/ |
H A D | low_bandwidth_audio_test.py | 155 def _RunPesq(executable_path, argument 164 executable_path, 187 def _RunPolqa(executable_path, reference_file, degraded_file): argument 190 executable_path, '-q', '-LC', 'NB', '-Ref', reference_file, '-Test',
|
/aosp_15_r20/external/deqp-deps/SPIRV-Tools/test/tools/ |
D | spirv_test_framework.py | 222 def __init__(self, executable_path, assembler_path, disassembler_path): argument 223 self.executable_path = executable_path 312 self.command = [self.test_manager.executable_path]
|
/aosp_15_r20/external/swiftshader/third_party/SPIRV-Tools/test/tools/ |
H A D | spirv_test_framework.py | 222 def __init__(self, executable_path, assembler_path, disassembler_path): argument 223 self.executable_path = executable_path 312 self.command = [self.test_manager.executable_path]
|