/aosp12/system/memory/libmeminfo/libdmabufinfo/ |
H A D | dmabuf_sysfs_stats.cpp | 67 struct dirent* dent; in GetDmabufSysfsStats() local 68 while ((dent = readdir(dir.get()))) { in GetDmabufSysfsStats() 69 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, "..")) continue; in GetDmabufSysfsStats() 72 "%s/%s", dmabuf_sysfs_stats_path.c_str(), dent->d_name); in GetDmabufSysfsStats() 77 if (!android::base::ParseUint(dent->d_name, &info.inode)) { in GetDmabufSysfsStats() 78 LOG(ERROR) << "Unable to parse value from " << dent->d_name; in GetDmabufSysfsStats() 125 struct dirent* dent; in GetDmabufTotalExportedKb() local 126 while ((dent = readdir(dir.get()))) { in GetDmabufTotalExportedKb() 127 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, "..")) continue; in GetDmabufTotalExportedKb() 130 "%s/%s", dmabuf_sysfs_stats_path.c_str(), dent->d_name); in GetDmabufTotalExportedKb()
|
H A D | dmabufinfo.cpp | 131 struct dirent* dent; in ReadDmaBufFdRefs() local 132 while ((dent = readdir(dir.get()))) { in ReadDmaBufFdRefs() 134 if (!::android::base::ParseInt(dent->d_name, &fd)) { in ReadDmaBufFdRefs()
|
/aosp12/system/libprocinfo/include/procinfo/ |
H A D | process.h | 85 struct dirent* dent; variable 86 while ((dent = readdir(dir.get()))) { 87 if (strcmp(dent->d_name, ".") != 0 && strcmp(dent->d_name, "..") != 0) { 89 if (!android::base::ParseInt(dent->d_name, &tid, 1, std::numeric_limits<pid_t>::max())) { 91 *error = std::string("failed to parse task id: ") + dent->d_name;
|
/aosp12/hardware/google/graphics/common/memtrack-pixel/core/ |
H A D | filesystem.cpp | 57 struct dirent* dent; in directory_iterator() local 58 while ((dent = readdir(dir.get()))) { in directory_iterator() 59 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, "..")) in directory_iterator() 63 ss << "/" << dent->d_name; in directory_iterator()
|
/aosp12/system/core/init/ |
H A D | ueventd.cpp | 170 struct dirent* dent; in GenerateRestoreCon() local 171 while ((dent = readdir(dir.get())) != NULL) { in GenerateRestoreCon() 172 if (strcmp(dent->d_name, ".") == 0 || strcmp(dent->d_name, "..") == 0) continue; in GenerateRestoreCon() 175 if (fstatat(dirfd(dir.get()), dent->d_name, &st, 0) == -1) continue; in GenerateRestoreCon() 178 std::string fullpath = directory + "/" + dent->d_name; in GenerateRestoreCon()
|
/aosp12/system/memory/libmeminfo/ |
H A D | sysmeminfo.cpp | 298 struct dirent* dent; in ReadDmabufHeapTotalExportedKb() local 299 while ((dent = readdir(dir.get()))) { in ReadDmabufHeapTotalExportedKb() 300 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, "..")) continue; in ReadDmabufHeapTotalExportedKb() 302 heap_list.insert(dent->d_name); in ReadDmabufHeapTotalExportedKb()
|
/aosp12/build/make/tools/ |
H A D | fat16copy.py | 159 (dent, consumed) = self.backing.fs.read_dentry(self.backing) 162 if dent: 163 self.dentries.append(dent) 203 for dent in self.dentries: 204 assert dent.longname != name, "File must not exist" 205 if dent.shortname == shortened: 243 for dent in self.dentries: 244 if dent.longname == name: 245 return dent.open_directory()
|
/aosp12/system/memory/libdmabufheap/ |
H A D | BufferAllocator.cpp | 349 struct dirent* dent; in GetDmabufHeapList() local 350 while ((dent = readdir(dir.get()))) { in GetDmabufHeapList() 351 if (!strcmp(dent->d_name, ".") || !strcmp(dent->d_name, "..")) continue; in GetDmabufHeapList() 353 heap_list.insert(dent->d_name); in GetDmabufHeapList()
|
/aosp12/system/memory/libmeminfo/libdmabufinfo/tools/ |
H A D | dmabuf_dump.cpp | 196 struct dirent* dent; in ReadDmaBufs() local 197 while ((dent = readdir(dir.get()))) { in ReadDmaBufs() 198 if (dent->d_type != DT_DIR) continue; in ReadDmaBufs() 200 int pid = atoi(dent->d_name); in ReadDmaBufs()
|
/aosp12/bionic/tools/versioner/src/ |
H A D | versioner.cpp | 115 struct dirent* dent; in collectRequirements() local 116 while ((dent = readdir(dir))) { in collectRequirements() 117 if (dent->d_name[0] == '.') { in collectRequirements() 122 std::string dependency = dir_path + "/" + dent->d_name; in collectRequirements()
|
/aosp12/packages/modules/adb/client/ |
H A D | file_sync_client.cpp | 533 dent_type dent; in FinishLsImpl() local 534 if (!ReadFdExactly(fd, &dent, sizeof(dent))) return false; in FinishLsImpl() 537 if (dent.id == ID_DONE) return true; in FinishLsImpl() 538 if (dent.id != expected_id) return false; in FinishLsImpl() 542 size_t len = dent.namelen; in FinishLsImpl() 558 callback(dent.mode, dent.size, dent.mtime, buf); in FinishLsImpl()
|
H A D | auth.cpp | 185 while (struct dirent* dent = readdir(dir.get())) { in load_keys() local 186 std::string name = dent->d_name; in load_keys()
|
/aosp12/frameworks/base/core/jni/ |
H A D | android_os_Debug.cpp | 914 struct dirent* dent; in android_os_Debug_getDmabufMappedSizeKb() local 915 while ((dent = readdir(dir.get()))) { in android_os_Debug_getDmabufMappedSizeKb() 916 if (dent->d_type != DT_DIR) continue; in android_os_Debug_getDmabufMappedSizeKb() 918 int pid = atoi(dent->d_name); in android_os_Debug_getDmabufMappedSizeKb()
|
/aosp12/packages/inputmethods/LatinIME/dictionaries/ |
H A D | fr_emoji.combined.gz | 1dictionary=emoji:fr,description=Emoji pour mots français,locale=fr,date ... |
H A D | fr_wordlist.combined.gz | 1dictionary=main:fr,locale=fr,description=Français,date=1414726264, ... |
H A D | lv_wordlist.combined.gz | 1dictionary=main:lv,locale=lv,description=Latviešu,date=1393228136, ... |
H A D | pt_BR_wordlist.combined.gz | 1dictionary=main:pt_br,locale=pt_BR,description=Português (Brasil),date ... |
H A D | es_wordlist.combined.gz | 1dictionary=main:es,locale=es,description=Español,date=1414726268, ... |
H A D | pt_PT_wordlist.combined.gz | 1dictionary=main:pt_pt,locale=pt_PT,description=Português (Portugal),date ... |
H A D | sl_wordlist.combined.gz | 1dictionary=main:sl,locale=sl,description=Slovenščina,date=1393228152, ... |
H A D | da_wordlist.combined.gz | 1dictionary=main:da,locale=da,description=Dansk,date=1393228134, ... |
H A D | nb_wordlist.combined.gz | 1dictionary=main:nb,locale=nb,description=Norsk bokmål,date=1393228136 ... |
H A D | cs_wordlist.combined.gz | 1dictionary=main:cs,locale=cs,description=Čeština,date=1393228134, ... |
H A D | en_US_wordlist.combined.gz | 1dictionary=main:en_us,locale=en_US,description=English (US),date ... |
H A D | en_GB_wordlist.combined.gz | 1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ... |