Lines Matching defs:entry
186 struct dirent* entry = readdir(dir);
187 if (entry == nullptr) {
191 if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
195 if (entry->d_type == DT_DIR || entry->d_type == DT_LNK) {
200 nodeNames_.emplace_back(entry->d_name);
256 struct dirent* entry = readdir(dir);
257 if (entry == nullptr) {
261 if (strcmp(entry->d_name, ".") == 0 || strcmp(entry->d_name, "..") == 0) {
265 if (entry->d_type == DT_DIR || entry->d_type == DT_LNK) {
269 if ((strcmp(entry->d_name, "type") == 0) && (nodeNamePathMap_["type"].empty()) &&
275 if ((strcmp(entry->d_name, iter.first.c_str()) == 0) && (nodeNamePathMap_[iter.first].empty())) {