Home
last modified time | relevance | path

Searched defs:dir_fd (Results 1 – 25 of 71) sorted by relevance

123

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/
Dglob.py13 def glob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
31 def iglob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
60 def _iglob(pathname, root_dir, dir_fd, recursive, dironly, argument
105 def _glob1(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
111 def _glob0(dirname, basename, dir_fd, dironly, include_hidden=False): argument
133 def _glob2(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
141 def _iterdir(dirname, dir_fd, dironly): argument
175 def _listdir(dirname, dir_fd, dironly): argument
180 def _rlistdir(dirname, dir_fd, dironly, include_hidden=False): argument
191 def _lexists(pathname, dir_fd): argument
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/
Dglob.py13 def glob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
31 def iglob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
60 def _iglob(pathname, root_dir, dir_fd, recursive, dironly, argument
105 def _glob1(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
111 def _glob0(dirname, basename, dir_fd, dironly, include_hidden=False): argument
133 def _glob2(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
141 def _iterdir(dirname, dir_fd, dironly): argument
175 def _listdir(dirname, dir_fd, dironly): argument
180 def _rlistdir(dirname, dir_fd, dironly, include_hidden=False): argument
191 def _lexists(pathname, dir_fd): argument
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/
Dglob.py13 def glob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
31 def iglob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
60 def _iglob(pathname, root_dir, dir_fd, recursive, dironly, argument
105 def _glob1(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
111 def _glob0(dirname, basename, dir_fd, dironly, include_hidden=False): argument
133 def _glob2(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
141 def _iterdir(dirname, dir_fd, dironly): argument
175 def _listdir(dirname, dir_fd, dironly): argument
180 def _rlistdir(dirname, dir_fd, dironly, include_hidden=False): argument
191 def _lexists(pathname, dir_fd): argument
[all …]
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/
H A Dglob.py13 def glob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
31 def iglob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
60 def _iglob(pathname, root_dir, dir_fd, recursive, dironly, argument
105 def _glob1(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
111 def _glob0(dirname, basename, dir_fd, dironly, include_hidden=False): argument
133 def _glob2(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
141 def _iterdir(dirname, dir_fd, dironly): argument
175 def _listdir(dirname, dir_fd, dironly): argument
180 def _rlistdir(dirname, dir_fd, dironly, include_hidden=False): argument
191 def _lexists(pathname, dir_fd): argument
[all …]
/aosp_15_r20/external/python/cpython3/Lib/
Dglob.py13 def glob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
31 def iglob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
60 def _iglob(pathname, root_dir, dir_fd, recursive, dironly, argument
105 def _glob1(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
111 def _glob0(dirname, basename, dir_fd, dironly, include_hidden=False): argument
133 def _glob2(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
141 def _iterdir(dirname, dir_fd, dironly): argument
175 def _listdir(dirname, dir_fd, dironly): argument
180 def _rlistdir(dirname, dir_fd, dironly, include_hidden=False): argument
191 def _lexists(pathname, dir_fd): argument
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/
Dglob.py13 def glob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
31 def iglob(pathname, *, root_dir=None, dir_fd=None, recursive=False, argument
60 def _iglob(pathname, root_dir, dir_fd, recursive, dironly, argument
105 def _glob1(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
111 def _glob0(dirname, basename, dir_fd, dironly, include_hidden=False): argument
133 def _glob2(dirname, pattern, dir_fd, dironly, include_hidden=False): argument
141 def _iterdir(dirname, dir_fd, dironly): argument
175 def _listdir(dirname, dir_fd, dironly): argument
180 def _rlistdir(dirname, dir_fd, dironly, include_hidden=False): argument
191 def _lexists(pathname, dir_fd): argument
[all …]
/aosp_15_r20/external/llvm-libc/test/src/unistd/
H A Dunlinkat_test.cpp25 int dir_fd = LIBC_NAMESPACE::open(TEST_DIR, O_DIRECTORY); in TEST() local
40 int dir_fd = LIBC_NAMESPACE::open(TEST_DIR, O_DIRECTORY); in TEST() local
H A Dsyscall_test.cpp130 int dir_fd = LIBC_NAMESPACE::syscall(SYS_open, TEST_DIR, O_DIRECTORY, 0); in TEST() local
132 int dir_fd = in TEST() local
H A Dfchdir_test.cpp32 int dir_fd = LIBC_NAMESPACE::open(TEST_DIR, O_DIRECTORY); in TEST() local
H A Dlinkat_test.cpp44 int dir_fd = LIBC_NAMESPACE::open(TEST_DIR, O_DIRECTORY); in TEST() local
H A Dsymlinkat_test.cpp44 int dir_fd = LIBC_NAMESPACE::open(TEST_DIR, O_DIRECTORY); in TEST() local
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/openat/
H A Dopenat01.c40 static int dir_fd, fd; variable
46 int *dir_fd; member
/aosp_15_r20/external/python/cpython3/Modules/
Dposixmodule.c1388 int dir_fd; in dir_fd_unavailable() local
1420 path_and_dir_fd_invalid(const char *function_name, path_t *path, int dir_fd) in path_and_dir_fd_invalid()
1436 dir_fd_and_fd_invalid(const char *function_name, int dir_fd, int fd) in dir_fd_and_fd_invalid()
1461 dir_fd_and_follow_symlinks_invalid(const char *function_name, int dir_fd, in dir_fd_and_follow_symlinks_invalid()
2517 int dir_fd, int follow_symlinks) in posix_do_stat()
2903 os_stat_impl(PyObject *module, path_t *path, int dir_fd, int follow_symlinks) in os_stat_impl()
2926 os_lstat_impl(PyObject *module, path_t *path, int dir_fd) in os_lstat_impl()
2974 os_access_impl(PyObject *module, path_t *path, int mode, int dir_fd, in os_access_impl()
3243 os_chmod_impl(PyObject *module, path_t *path, int mode, int dir_fd, in os_chmod_impl()
3647 int dir_fd, int follow_symlinks) in os_chown_impl()
[all …]
/aosp_15_r20/packages/modules/Bluetooth/system/gd/os/linux_generic/
Dfiles.cc33 void HandleError(const std::string& temp_path, int* dir_fd, FILE** fp) { in HandleError()
124 int dir_fd = open(directory_path.c_str(), O_RDONLY | O_DIRECTORY); in WriteToFile() local
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/mkdirat/
H A Dmkdirat01.c45 static int dir_fd, fd; variable
50 int *dir_fd; member
H A Dmkdirat02.c20 static int dir_fd; variable
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/mknodat/
H A Dmknodat01.c50 static int dir_fd, fd; variable
55 int *dir_fd; member
H A Dmknodat02.c56 static int dir_fd; variable
63 int *dir_fd; member
/aosp_15_r20/external/python/cpython3/Modules/clinic/
Dposixmodule.c.h45 int dir_fd = DEFAULT_DIR_FD; in os_stat() local
104 int dir_fd = DEFAULT_DIR_FD; in os_lstat() local
178 int dir_fd = DEFAULT_DIR_FD; in os_access() local
414 int dir_fd = DEFAULT_DIR_FD; in os_chmod() local
851 int dir_fd = DEFAULT_DIR_FD; in os_chown() local
1382 int dir_fd = DEFAULT_DIR_FD; in os_mkdir() local
1707 int dir_fd = DEFAULT_DIR_FD; in os_rmdir() local
1893 int dir_fd = DEFAULT_DIR_FD; in os_unlink() local
1944 int dir_fd = DEFAULT_DIR_FD; in os_remove() local
2041 int dir_fd = DEFAULT_DIR_FD; in os_utime() local
[all …]
/aosp_15_r20/frameworks/base/core/jni/
H A Dfd_utils.cpp507 int dir_fd = dirfd(proc_fd_dir); in GetOpenFdsIgnoring() local
630 static int ParseFd(dirent* dir_entry, int dir_fd) { in ParseFd()
/aosp_15_r20/packages/modules/Bluetooth/system/osi/src/
Dconfig.cc276 int dir_fd = -1; in config_save() local
386 int dir_fd = -1; in checksum_save() local
/aosp_15_r20/system/vold/bench/inodeop_bench/
H A Dinodeop_bench.cpp150 int dir_fd = open(dir.c_str(), OPEN_DIR_FLAGS); in delete_files() local
170 int dir_fd = open(dir.c_str(), OPEN_DIR_FLAGS); in create_files() local
/aosp_15_r20/external/llvm-libc/test/src/fcntl/
H A Dopenat_test.cpp23 int dir_fd = LIBC_NAMESPACE::open(TEST_DIR, O_DIRECTORY); in TEST() local
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/faccessat/
H A Dfaccessat02.c25 static int dir_fd, file_fd; variable
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/statx/
H A Dstatx12.c29 static int dir_fd = -1, file_fd = -1; variable

123