Searched refs:cur_path (Results 1 – 11 of 11) sorted by relevance
/third_party/musl/scripts/ |
D | search_source_files.py | 12 cur_path = os.path.join(path, src) 13 if os.path.isdir(cur_path): 17 if (cur_path.endswith(".h")): 18 base_srcs.append(cur_path) 20 if (cur_path.endswith(".c")): 21 base_srcs.append(cur_path) 30 cur_path = os.path.join(target_path, src) 31 if os.path.isdir(cur_path): 34 elif (cur_path.endswith(".c") or cur_path.endswith(".s") or 35 cur_path.endswith(".S")): [all …]
|
/third_party/ltp/testcases/kernel/controllers/cgroup_fj/ |
D | cgroup_fj_stress.sh | 81 local cur_path="$1" 89 create_subgroup "$cur_path" 93 build_subgroups "$cur_path/$i" $((cur_depth+1)) 99 local cur_path="$1" 116 if ! attach_and_check "$pid" "$cur_path"; then 121 local new_path="$cur_path/$i" 126 if ! attach_and_check "$pid" "$cur_path"; then
|
/third_party/ltp/testcases/kernel/fs/iso9660/ |
D | isofs.sh | 35 local cur_path="$1" 42 new_path="$cur_path/subdir_$i"
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/Windows/ |
D | Path.inc | 182 SmallVector<wchar_t, MAX_PATH> cur_path; 186 cur_path.reserve(len); 187 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data()); 195 } while (len > cur_path.capacity()); 199 cur_path.set_size(len); 200 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
|
/third_party/curl/ |
D | backport-CVE-2023-27534-pre1.patch | 4 Subject: [PATCH] cur_path: do not add '/' if homedir ends with one
|
/third_party/gstreamer/gstplugins_bad/gst/switchbin/ |
D | gstswitchbin.c | 702 GstSwitchBinPath *cur_path = switch_bin->current_path; in gst_switch_bin_switch_to_path() local 704 if (cur_path->element != NULL) { in gst_switch_bin_switch_to_path() 705 gst_element_set_state (cur_path->element, GST_STATE_NULL); in gst_switch_bin_switch_to_path() 706 gst_element_unlink (switch_bin->input_identity, cur_path->element); in gst_switch_bin_switch_to_path()
|
/third_party/gn/src/base/ |
D | values.cc | 358 const std::string_view* cur_path = path.begin(); in SetPath() local 359 for (; (cur_path + 1) < path.end(); ++cur_path) { in SetPath() 364 const std::string_view path_component = *cur_path; in SetPath() 379 return cur->SetKey(*cur_path, std::move(value)); in SetPath()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/Windows/ |
D | Path.inc | 193 SmallVector<wchar_t, MAX_PATH> cur_path; 197 cur_path.reserve(len); 198 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data()); 206 } while (len > cur_path.capacity()); 210 cur_path.set_size(len); 211 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
|
/third_party/gn/src/base/files/ |
D | file_util_posix.cc | 340 for (const std::string_view& cur_path : in ExecutableExistsInPath() local 342 FilePath file(cur_path); in ExecutableExistsInPath()
|
/third_party/vulkan-loader/loader/ |
D | loader.c | 1815 char cur_path[MAX_STRING_SIZE]; in remove_all_non_valid_override_layers() local 1816 char *ret = loader_platform_executable_path(cur_path, sizeof(cur_path)); in remove_all_non_valid_override_layers() 1833 if (strcmp(props->app_key_paths[j], cur_path) == 0) { in remove_all_non_valid_override_layers() 1850 … "--Override layer found but not used because app \'%s\' is not in \'app_keys\' list!", cur_path); in remove_all_non_valid_override_layers() 1876 …LOADER_INFO_BIT | VULKAN_LOADER_LAYER_BIT, 0, "Using the override layer for app key %s", cur_path); in remove_all_non_valid_override_layers() 2640 static inline size_t determine_data_file_path_size(const char *cur_path, size_t relative_path_size)… in determine_data_file_path_size() argument 2643 if (NULL != cur_path) { in determine_data_file_path_size() 2648 path_size += strlen(cur_path) + relative_path_size + 2; in determine_data_file_path_size() 2649 for (const char *x = cur_path; *x; ++x) { in determine_data_file_path_size() 2659 static inline void copy_data_file_info(const char *cur_path, const char *relative_path, size_t rela… in copy_data_file_info() argument [all …]
|
/third_party/vulkan-loader/tests/ |
D | loader_layer_tests.cpp | 1169 std::string cur_path = test_platform_executable_path(); in TEST() local 1177 .add_app_key(cur_path)), in TEST()
|