Searched refs:ent (Results 1 - 6 of 6) sorted by relevance
/system/core/libziparchive/ |
H A D | zip_archive.cc | 368 uint32_t ent = hash & (hash_table_size - 1); local 369 while (hash_table[ent].name != NULL) { 370 if (hash_table[ent].name_length == name.name_length && 371 memcmp(hash_table[ent].name, name.name, name.name_length) == 0) { 372 return ent; 375 ent = (ent + 1) & (hash_table_size - 1); 388 uint32_t ent = hash & (hash_table_size - 1); local 394 while (hash_table[ent].name != NULL) { 395 if (hash_table[ent] 715 FindEntry(const ZipArchive* archive, const int ent, ZipEntry* data) argument 914 const int64_t ent = EntryToIndex(archive->hash_table, local [all...] |
/system/vold/ |
H A D | MoveTask.cpp | 69 struct dirent* ent; local 70 while ((ent = readdir(dir)) != NULL) { 71 if ((!strcmp(ent->d_name, ".")) || (!strcmp(ent->d_name, ".."))) { 74 cmd.push_back(StringPrintf("%s/%s", path.c_str(), ent->d_name));
|
/system/extras/latencytop/ |
H A D | latencytop.c | 205 struct dirent *ent; local 218 while ((ent = readdir(dir))) { 219 if (!isdigit(ent->d_name[0])) 222 tid = atoi(ent->d_name);
|
/system/core/fs_mgr/ |
H A D | fs_mgr.c | 364 struct dirent *ent; local 387 while ((ent = readdir(blockdir))) { 392 if (ent->d_type != DT_BLK) 395 fd = openat(dirfd(blockdir), ent->d_name, O_RDONLY); 397 ERROR("Cannot open block device /dev/block/%s\n", ent->d_name); 412 INFO("/dev/block/%s not ext{234}\n", ent->d_name); 419 if (asprintf(&new_blk_device, "/dev/block/%s", ent->d_name) < 0) {
|
/system/core/libpixelflinger/arch-mips/ |
H A D | t32cb16blend.S | 177 .ent scanline_t32cb16blend_mips
|
/system/media/camera/docs/ |
H A D | metadata_model.py | 851 for ent in self.entries: 852 new_ent = new_ent_dict.setdefault(ent.name, 853 ent.merge())
|
Completed in 104 milliseconds