Searched refs:ent (Results 1 - 11 of 11) sorted by relevance

/system/core/libziparchive/
H A Dzip_archive.cc178 uint32_t ent = hash & (hash_table_size - 1); local
179 while (hash_table[ent].name != NULL) {
180 if (hash_table[ent] == name) {
181 return ent;
184 ent = (ent + 1) & (hash_table_size - 1);
197 uint32_t ent = hash & (hash_table_size - 1); local
203 while (hash_table[ent].name != NULL) {
204 if (hash_table[ent] == name) {
209 ent
514 FindEntry(const ZipArchive* archive, const int ent, ZipEntry* data) argument
710 const int64_t ent = EntryToIndex(archive->hash_table, local
[all...]
/system/vold/
H A DMoveTask.cpp69 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/core/crash_reporter/
H A Dcrash_collector.cc305 struct dirent* ent; local
308 while (readdir_r(dir, &ent_buf, &ent) == 0 && ent) {
309 if ((strcmp(ent->d_name, ".") == 0) ||
310 (strcmp(ent->d_name, "..") == 0))
313 std::string filename(ent->d_name);
/system/extras/latencytop/
H A Dlatencytop.c205 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 Dfs_mgr.c369 struct dirent *ent; local
392 while ((ent = readdir(blockdir))) {
397 if (ent->d_type != DT_BLK)
400 fd = openat(dirfd(blockdir), ent->d_name, O_RDONLY);
402 ERROR("Cannot open block device /dev/block/%s\n", ent->d_name);
417 INFO("/dev/block/%s not ext{234}\n", ent->d_name);
424 if (asprintf(&new_blk_device, "/dev/block/%s", ent->d_name) < 0) {
/system/core/libpixelflinger/arch-mips64/
H A Dcol32cb16blend.S59 .ent scanline_col32cb16blend_mips64
H A Dt32cb16blend.S81 .ent scanline_t32cb16blend_mips64
/system/core/libpixelflinger/arch-mips/
H A Dcol32cb16blend.S65 .ent scanline_col32cb16blend_mips
H A Dt32cb16blend.S184 .ent scanline_t32cb16blend_mips
/system/media/camera/docs/
H A Dmetadata_model.py866 for ent in self.entries:
867 new_ent = new_ent_dict.setdefault(ent.name,
868 ent.merge())
/system/core/adb/
H A Dsysdeps_win32.cpp2354 struct dirent* ent = reinterpret_cast<struct dirent*>(went); local
2370 strcpy(ent->d_name, name_utf8.c_str());
2372 return ent;

Completed in 1382 milliseconds