Searched refs:cur_path (Results 1 – 10 of 10) sorted by relevance
/external/ltp/testcases/kernel/controllers/cgroup_fj/ |
D | cgroup_fj_stress.sh | 80 local cur_path="$1" 88 create_subgroup "$cur_path" 92 build_subgroups "$cur_path/$i" $((cur_depth+1)) 98 local cur_path="$1" 114 if ! attach_and_check "$pid" "$cur_path"; then 119 local new_path="$cur_path/$i" 124 if ! attach_and_check "$pid" "$cur_path"; then
|
/external/e2fsprogs/contrib/android/ |
D | fsmap.c | 66 char *filename, *cur_path, *name = de->name; in walk_ext_dir() local 92 cur_path = pdata->path; in walk_ext_dir() 96 pdata->path = cur_path; in walk_ext_dir()
|
D | perms.c | 239 char *cur_path = params->path; in walk_dir() local 244 params->path = cur_path; in walk_dir()
|
/external/swiftshader/third_party/LLVM/lib/Support/Windows/ |
D | PathV2.inc | 139 SmallVector<wchar_t, 128> cur_path; 140 cur_path.reserve(128); 142 DWORD len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data()); 150 if (len > cur_path.capacity()) { 151 cur_path.reserve(len); 155 cur_path.set_size(len); 156 // cur_path now holds the current directory in utf-16. Convert to utf-8. 162 cur_path.data(), cur_path.size(), 173 cur_path.data(), cur_path.size(),
|
/external/ltp/testcases/kernel/fs/iso9660/ |
D | isofs.sh | 53 local cur_path="$1" 61 local new_path="$cur_path/subdir_$i"
|
/external/libchrome/base/files/ |
D | file_path_watcher_linux.cc | 532 const FilePath& cur_path = end_it->first; in UpdateRecursiveWatches() local 533 if (!changed_dir.IsParent(cur_path)) in UpdateRecursiveWatches() 535 if (!DirectoryExists(cur_path)) in UpdateRecursiveWatches()
|
D | file_util_posix.cc | 516 for (const StringPiece& cur_path : in ExecutableExistsInPath() local 518 FilePath file(cur_path); in ExecutableExistsInPath()
|
/external/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);
|
/external/llvm/lib/Support/Windows/ |
D | Path.inc | 188 SmallVector<wchar_t, MAX_PATH> cur_path; 192 cur_path.reserve(len); 193 len = ::GetCurrentDirectoryW(cur_path.capacity(), cur_path.data()); 201 } while (len > cur_path.capacity()); 205 cur_path.set_size(len); 206 return UTF16ToUTF8(cur_path.begin(), cur_path.size(), result);
|
/external/mesa3d/scripts/ |
D | get_reviewer.pl | 24 my $cur_path = fastgetcwd() . '/'; 437 $file =~ s/^\Q${cur_path}\E//; #strip any absolute path
|