Lines Matching defs:entry
57 is_dir_or_link(const struct dirent *entry, const char *parent_dir)
60 return entry->d_type == DT_DIR || entry->d_type == DT_LNK;
64 snprintf(path, sizeof(path), "%s/%s", parent_dir, entry->d_name);
210 struct hash_entry *entry;
216 entry = _mesa_hash_table_search(perf->oa_metrics_table,
218 if (entry) {
226 (const struct intel_perf_query_info *)entry->data, id);
238 hash_table_foreach(perf->oa_metrics_table, entry) {
239 const struct intel_perf_query_info *query = entry->data;
325 hash_table_foreach(perf->oa_metrics_table, entry) {
326 const struct intel_perf_query_info *query = entry->data;
665 struct hash_entry *entry;
674 entry = _mesa_hash_table_search(counters_table, counter->symbol_name);
676 if (entry) {
677 counter_info = entry->data;