/third_party/python/PC/layout/support/ |
H A D | pip.py | 55 search_path = os.pathsep.join(wheels) 57 search_path += ";" + os.environ["PYTHONPATH"] 60 env["PYTHONPATH"] = search_path
|
/third_party/python/Lib/distutils/ |
H A D | spawn.py | 23 def spawn(cmd, search_path=1, verbose=0, dry_run=0): 31 If 'search_path' is true (the default), the system's executable 47 if search_path:
|
H A D | cmd.py | 362 def spawn(self, cmd, search_path=1, level=1): 365 spawn(cmd, search_path, dry_run=self.dry_run)
|
/third_party/vulkan-loader/loader/ |
H A D | loader_windows.c | 711 char *search_path = NULL; in windows_read_data_files_in_registry() local 729 regHKR_result = windows_read_manifest_from_d3d_adapters(inst, &search_path, ®_size, LoaderPnpDriverRegistryWide()); in windows_read_data_files_in_registry() 732 windows_get_device_registry_files(inst, log_target_flag, &search_path, ®_size, LoaderPnpDriverRegistry()); in windows_read_data_files_in_registry() 735 regHKR_result = windows_read_manifest_from_d3d_adapters(inst, &search_path, ®_size, LoaderPnpELayerRegistryWide()); in windows_read_data_files_in_registry() 738 windows_get_device_registry_files(inst, log_target_flag, &search_path, ®_size, LoaderPnpELayerRegistry()); in windows_read_data_files_in_registry() 741 regHKR_result = windows_read_manifest_from_d3d_adapters(inst, &search_path, ®_size, LoaderPnpILayerRegistryWide()); in windows_read_data_files_in_registry() 744 windows_get_device_registry_files(inst, log_target_flag, &search_path, ®_size, LoaderPnpILayerRegistry()); in windows_read_data_files_in_registry() 755 VkResult reg_result = windows_get_registry_files(inst, registry_location, use_secondary_hive, &search_path, ®_size); in windows_read_data_files_in_registry() 761 if ((VK_SUCCESS != reg_result && VK_SUCCESS != regHKR_result) || NULL == search_path) { in windows_read_data_files_in_registry() 787 vk_result = add_data_files(inst, search_path, out_file in windows_read_data_files_in_registry() [all...] |
H A D | loader.c | 2838 // Add any files found in the search_path. If any path in the search path points to a specific JSON, attempt to 2840 VkResult add_data_files(const struct loader_instance *inst, char *search_path, struct loader_string_list *out_files, in add_data_files() argument 2854 next_file = search_path; in add_data_files() 2945 char *search_path = NULL; in read_data_files_in_search_paths() local 3151 search_path = loader_instance_heap_calloc(inst, search_path_size, VK_SYSTEM_ALLOCATION_SCOPE_COMMAND); 3152 if (NULL == search_path) { 3160 cur_path_ptr = search_path; 3229 assert(cur_path_ptr - search_path < (ptrdiff_t)search_path_size); 3239 size_t search_path_updated_size = strlen(search_path); 3242 if (search_path[firs [all...] |
H A D | loader.h | 206 VkResult add_data_files(const struct loader_instance *inst, char *search_path, struct loader_string_list *out_files,
|
/third_party/python/Lib/zoneinfo/ |
H A D | _tzpath.py | 68 for search_path in TZPATH: 69 filepath = os.path.join(search_path, key)
|
/third_party/json/tools/amalgamate/ |
H A D | amalgamate.py | 59 search_path = os.path.join(search_dir, file_path) 60 if os.path.isfile(self.actual_path(search_path)): 61 return search_path
|
/third_party/python/Lib/ |
H A D | pyclbr.py | 163 search_path = path 165 search_path = path + sys.path 166 spec = importlib.util._find_spec_from_path(fullmodule, search_path)
|
H A D | pkgutil.py | 551 search_path = sys.modules[parent_package].__path__ 557 search_path = sys.path 559 for dir in search_path:
|
/third_party/mksh/ |
H A D | exec.c | 882 sh = search_path(sh, path, X_OK, NULL); in scriptexec() 963 if (mksh_vdirsep(sh) && !search_path(sh, path, X_OK, NULL)) { in scriptexec() 964 cp = search_path(_getname(sh), path, X_OK, NULL); in scriptexec() 1199 tp->u.fpath = search_path(name, fpath, R_OK, in findcom() 1231 npath.ro = search_path(name, in findcom() 1241 (npath.ro = search_path(name, fpath, R_OK, in findcom() 1318 search_path(const char *name, const char *lpath, in search_path() function
|
H A D | os2.c | 416 exec_name = search_path(name, path, X_OK, NULL); in execve()
|
H A D | funcs.c | 925 search_path(alias, path, X_OK, NULL) : in c_alias() 1550 file = search_path(cp, path, R_OK, &errcode); in c_dot()
|
H A D | main.c | 538 s->file = search_path(s->file, path, X_OK, NULL); in main_init()
|
H A D | sh.h | 2435 const char *search_path(const char *, const char *, int, int *);
|
/third_party/libuv/src/win/ |
H A D | process.c | 150 * Helper function for search_path 245 * Helper function for search_path 290 * search_path searches the system path for an executable filename - 333 static WCHAR* search_path(const WCHAR *file, in search_path() function 1018 application_path = search_path(application, in uv_spawn()
|
/third_party/node/deps/uv/src/win/ |
H A D | process.c | 160 * Helper function for search_path 255 * Helper function for search_path 300 * search_path searches the system path for an executable filename - 342 static WCHAR* search_path(const WCHAR *file, in search_path() function 1047 application_path = search_path(application, in uv_spawn()
|
/third_party/vulkan-loader/tests/framework/ |
H A D | test_util.cpp | 359 std::wstring search_path = folder_utf16 + L"/*.*"; in delete_folder_contents() local 362 HANDLE hFind = ::FindFirstFileW(search_path.c_str(), &fd); in delete_folder_contents()
|