Searched refs:ent (Results 1 - 16 of 16) sorted by last modified time

/system/vold/
H A DMoveStorage.cpp65 struct dirent* ent; local
66 while ((ent = readdir(dir)) != NULL) {
67 if ((!strcmp(ent->d_name, ".")) || (!strcmp(ent->d_name, ".."))) {
71 cmd.push_back(StringPrintf("%s/%s/*", path.c_str(), ent->d_name));
73 cmd.push_back(StringPrintf("%s/%s", path.c_str(), ent->d_name));
/system/tools/hidl/
H A DCoordinator.cpp461 struct dirent *ent; local
462 while ((ent = readdir(dir)) != NULL) {
463 if (ent->d_type != DT_REG) {
469 const auto d_namelen = strlen(ent->d_name);
472 || strcmp(ent->d_name + d_namelen - suffix_len, suffix)) {
476 fileNames->push_back(std::string(ent->d_name, d_namelen - suffix_len));
/system/netd/server/
H A DInterfaceController.cpp120 const dirent *ent = readdir(dir); local
121 if (!ent) {
124 if ((ent->d_type != DT_DIR) || !isInterfaceName(ent->d_name)) {
127 fn(dirname, ent->d_name);
/system/media/camera/docs/
H A Dmetadata_model.py878 for ent in self.entries:
879 new_ent = new_ent_dict.setdefault(ent.name,
880 ent.merge())
/system/extras/latencytop/
H A Dlatencytop.c203 struct dirent *ent; local
216 while ((ent = readdir(dir))) {
217 if (!isdigit(ent->d_name[0]))
220 tid = atoi(ent->d_name);
/system/core/libnativeloader/
H A Dnative_loader.cpp435 while (struct dirent* ent = readdir(dir.get())) {
436 if (ent->d_type != DT_REG && ent->d_type != DT_LNK) {
439 const std::string filename(ent->d_name);
/system/core/libpixelflinger/arch-mips/
H A Dcol32cb16blend.S65 .ent scanline_col32cb16blend_mips
H A Dt32cb16blend.S184 .ent scanline_t32cb16blend_mips
/system/core/libpixelflinger/arch-mips64/
H A Dcol32cb16blend.S59 .ent scanline_col32cb16blend_mips64
H A Dt32cb16blend.S81 .ent scanline_t32cb16blend_mips64
/system/core/libunwindstack/
H A DAsmGetRegsMips.S32 .ent AsmGetRegs
H A DAsmGetRegsMips64.S32 .ent AsmGetRegs
/system/core/libziparchive/
H A Dzip_archive.cc129 uint32_t ent = hash & (hash_table_size - 1); local
130 while (hash_table[ent].name != NULL) {
131 if (hash_table[ent] == name) {
132 return ent;
135 ent = (ent + 1) & (hash_table_size - 1);
148 uint32_t ent = hash & (hash_table_size - 1); local
154 while (hash_table[ent].name != NULL) {
155 if (hash_table[ent] == name) {
160 ent
492 FindEntry(const ZipArchive* archive, const int ent, ZipEntry* data) argument
707 const int64_t ent = EntryToIndex(archive->hash_table, archive->hash_table_size, entryName); local
[all...]
/system/core/adb/
H A Dsysdeps_win32.cpp2197 struct dirent* ent = reinterpret_cast<struct dirent*>(went); local
2213 strcpy(ent->d_name, name_utf8.c_str());
2215 return ent;
/system/core/debuggerd/handler/
H A Ddebuggerd_fallback.cpp113 struct dirent* ent; local
114 while ((ent = readdir(dir))) {
116 long tid = strtol(ent->d_name, &end, 10);
117 if (end == ent->d_name || *end != '\0') {
/system/core/fs_mgr/
H A Dfs_mgr.cpp648 struct dirent *ent; local
671 while ((ent = readdir(blockdir))) {
676 if (ent->d_type != DT_BLK)
679 fd = openat(dirfd(blockdir), ent->d_name, O_RDONLY);
681 LERROR << "Cannot open block device /dev/block/" << ent->d_name;
696 LINFO << "/dev/block/" << ent->d_name << " not ext{234}";
703 if (asprintf(&new_blk_device, "/dev/block/%s", ent->d_name) < 0) {

Completed in 280 milliseconds