Searched refs:parent_dir (Results 1 – 9 of 9) sorted by relevance
/third_party/NuttX/fs/tmpfs/ |
D | fs_tmpfs.c | 1910 struct tmpfs_directory_s *parent_dir; in tmpfs_unlink() local 1945 parent_dir = (struct tmpfs_directory_s *)(parent->data); in tmpfs_unlink() 1946 if (parent_dir == NULL) in tmpfs_unlink() 1948 ret = tmpfs_find_file(fs, relpath, &tfo, &parent_dir); in tmpfs_unlink() 1959 if (tfo == NULL || parent_dir == NULL) in tmpfs_unlink() 1965 tmpfs_lock_directory(parent_dir); in tmpfs_unlink() 1969 ret = tmpfs_remove_dirent(parent_dir, (struct tmpfs_object_s *)tfo); in tmpfs_unlink() 2003 if (parent_dir->tdo_refs > 0) in tmpfs_unlink() 2005 parent_dir->tdo_refs--; in tmpfs_unlink() 2007 tmpfs_unlock_directory(parent_dir); in tmpfs_unlink() [all …]
|
/third_party/rust/crates/cxx/tools/cargo/ |
D | build.rs | 60 let parent_dir = Path::new(&out_dir).join("symlink"); in main() localVariable 61 let original_dir = parent_dir.join("original"); in main() 62 let link_dir = parent_dir.join("link"); in main()
|
/third_party/python/Lib/test/ |
D | test_support.py | 145 parent_dir = tempfile.mkdtemp() 146 parent_dir = os.path.realpath(parent_dir) 149 path = os.path.join(parent_dir, 'temp') 156 os_helper.rmtree(parent_dir) 246 with os_helper.temp_dir() as parent_dir: 247 non_existent_dir = os.path.join(parent_dir, 'does_not_exist') 257 with os_helper.temp_dir() as parent_dir: 258 bad_dir = os.path.join(parent_dir, 'does_not_exist')
|
D | test_doctest.py | 731 with tempfile.TemporaryDirectory() as parent_dir: 732 pkg_dir = os.path.join(parent_dir, pkg_name) 734 sys.path.append(parent_dir)
|
D | test_httpservers.py | 671 self.parent_dir = tempfile.mkdtemp() 672 self.cgi_dir = os.path.join(self.parent_dir, 'cgi-bin') 674 self.sub_dir_1 = os.path.join(self.parent_dir, 'sub') 693 self.pythonexe = os.path.join(self.parent_dir, 'python') 707 self.nocgi_path = os.path.join(self.parent_dir, 'nocgi.py') 742 os.chdir(self.parent_dir) 768 os.rmdir(self.parent_dir)
|
D | test_runpy.py | 376 parent_dir = module_dir 383 uncle_dir = os.path.join(parent_dir, "uncle")
|
/third_party/node/deps/v8/ |
D | PRESUBMIT.py | 177 parent_dir = os.path.dirname(deps_file) 178 for relative_f in input_api.change.AllFiles(parent_dir): 179 abs_f = os.path.join(parent_dir, relative_f)
|
/third_party/mesa3d/src/intel/perf/ |
D | intel_perf.c | 57 is_dir_or_link(const struct dirent *entry, const char *parent_dir) in is_dir_or_link() argument 64 snprintf(path, sizeof(path), "%s/%s", parent_dir, entry->d_name); in is_dir_or_link()
|
/third_party/ntfs-3g/ntfsprogs/ |
D | mkntfs.c | 2006 static int add_attr_file_name(MFT_RECORD *m, const leMFT_REF parent_dir, in add_attr_file_name() argument 2041 fn->parent_directory = parent_dir; in add_attr_file_name()
|