HomeSort by relevance Sort by last modified time
    Searched refs:fdopendir (Results 1 - 25 of 28) sorted by null

1 2

  /external/syslinux/com32/lib/
fdopendir.c 2 * fdopendir.c
9 DIR *fdopendir(int __fd) function
  /external/syslinux/com32/include/
dirent.h 18 __extern DIR *fdopendir(int);
  /bionic/tests/headers/posix/
dirent_h.c 49 FUNCTION(fdopendir, DIR* (*f)(int));
  /frameworks/native/libs/diskusage/
dirsize.c 37 d = fdopendir(dfd);
  /frameworks/native/services/vr/performanced/
directory_reader.h 19 directory_ = fdopendir(directory_fd.get());
  /bionic/libc/include/
dirent.h 80 DIR* fdopendir(int __dir_fd);
  /bionic/libc/bionic/
scandir.cpp 105 dir = fdopendir(dir_fd);
dirent.cpp 80 DIR* fdopendir(int fd) { function
  /bionic/tests/
dirent_test.cpp 151 ASSERT_TRUE(fdopendir(-1) == NULL);
156 ASSERT_TRUE(fdopendir(fd) == NULL);
161 TEST(dirent, fdopendir) {
163 DIR* d = fdopendir(fd);
169 // fdopendir(3) took ownership, so closedir(3) closed our fd.
  /external/python/cpython3/Misc/
coverity_model.c 122 /* Coverity doesn't understand that fdopendir() may take ownership of fd. */
124 DIR *fdopendir(int fd) function
  /system/core/libprocinfo/include/procinfo/
process.h 73 std::unique_ptr<DIR, int (*)(DIR*)> dir(fdopendir(task_fd), closedir);
  /external/toybox/lib/
dirtree.c 138 if (node->dirfd == -1 || !(dir = fdopendir(node->dirfd))) {
portability.h 103 DIR *fdopendir(int fd);
  /external/honggfuzz/
input.c 178 if ((hfuzz->io.inputDirPtr = fdopendir(dir_fd)) == NULL) {
  /frameworks/native/cmds/installd/
utils.cpp 471 subdir = fdopendir(subfd);
473 ALOGE("Couldn't fdopendir %s: %s\n", name, strerror(errno));
542 d = fdopendir(fd);
544 ALOGE("Couldn't fdopendir %s: %s\n", name, strerror(errno));
575 DIR *ds = fdopendir(sdfd);
577 ALOGE("Couldn't fdopendir: %s\n", strerror(errno));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
dirent.h 143 extern DIR *fdopendir (int __fd);
  /system/core/init/
uevent_listener.cpp 149 std::unique_ptr<DIR, decltype(&closedir)> d2(fdopendir(fd), closedir);
  /system/vold/
main.cpp 195 d2 = fdopendir(fd);
Utils.cpp 510 d = fdopendir(dfd);
  /external/e2fsprogs/contrib/
spd_readdir.c 126 real_fdopendir = dlsym(RTLD_NEXT, "fdopendir");
273 DIR *fdopendir(int fd) function
282 DEBUG_DIR(printf("fdopendir(%d) (%d open)\n", fd, num_open++));
  /external/toybox/toys/net/
netstat.c 247 if (!(dp = fdopendir(dirfd))) {
  /libcore/ojluni/src/main/java/sun/nio/fs/
UnixFileSystemProvider.java 426 dp = fdopendir(dfd1);
UnixNativeDispatcher.java 416 * DIR* fdopendir(int filedes)
418 static native long fdopendir(int dfd) throws UnixException; method in class:UnixNativeDispatcher
UnixSecureDirectoryStream.java 133 ptr = fdopendir(newdfd1);
  /external/syslinux/mk/
lib.mk 89 getcwd.o fdopendir.o \

Completed in 535 milliseconds

1 2