HomeSort by relevance Sort by last modified time
    Searched refs:subfd (Results 1 - 3 of 3) sorted by null

  /frameworks/native/libs/diskusage/
dirsize.c 46 int subfd; local
59 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY);
60 if (subfd >= 0) {
61 size += calculate_dir_size(subfd);
  /frameworks/native/cmds/installd/
utils.cpp 456 int subfd; local
465 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
466 if (subfd < 0) {
471 subdir = fdopendir(subfd);
474 close(subfd);
    [all...]
  /system/vold/
Utils.cpp 522 int subfd; local
532 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
533 if (subfd >= 0) {
534 size += calculate_dir_size(subfd);

Completed in 342 milliseconds