HomeSort by relevance Sort by last modified time
    Searched refs:subfd (Results 1 - 4 of 4) 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 334 int subfd; local
343 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
344 if (subfd < 0) {
349 subdir = fdopendir(subfd);
352 close(subfd);
696 int subfd; local
705 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY | O_NOFOLLOW | O_CLOEXEC);
706 if (subfd < 0) {
710 subdir = fdopendir(subfd);
713 close(subfd);
    [all...]
commands.cpp 596 int subfd; local
603 subfd = openat(dfd, name, O_RDONLY | O_DIRECTORY);
604 if (subfd >= 0) {
605 dirsize = calculate_dir_size(subfd);
606 close(subfd);
    [all...]