Lines Matching refs:entry
80 struct dirent *entry; in getFilesInDir() local
87 while ((entry = readdir(dir)) != NULL) in getFilesInDir()
88 files->push_back(entry->d_name); in getFilesInDir()
358 struct dirent *entry; in dumpBatteryDefend() local
368 while ((entry = readdir(dir)) != NULL) { in dumpBatteryDefend()
369 if (std::string(entry->d_name).find(config[2]) != std::string::npos && in dumpBatteryDefend()
370 strncmp(config[2], entry->d_name, strlen(config[2])) == 0) { in dumpBatteryDefend()
371 files.push_back(entry->d_name); in dumpBatteryDefend()
398 struct dirent *entry; in printValuesOfDirectory() local
404 while ((entry = readdir(dir)) != NULL) in printValuesOfDirectory()
405 if (std::string(entry->d_name).find(strMatch) != std::string::npos) in printValuesOfDirectory()
406 files.push_back(entry->d_name); in printValuesOfDirectory()
568 struct dirent *entry; in dumpChargerStats() local
581 while ((entry = readdir(dir)) != NULL) in dumpChargerStats()
582 if (std::string(entry->d_name).find(stat[2]) != std::string::npos) in dumpChargerStats()
583 files.push_back(entry->d_name); in dumpChargerStats()