Lines Matching refs:d
825 struct ac_filter_data *d = (struct ac_filter_data *)arg; in filter_filename_substr() local
827 return !memmem(entry->d_name, _D_EXACT_NAMLEN(entry), d->str, d->len); in filter_filename_substr()
832 struct ac_filter_data *d = (struct ac_filter_data *)arg; in filter_filename_exactly() local
834 return strcmp(entry->d_name, d->str); in filter_filename_exactly()
840 struct ac_filter_data *d = (struct ac_filter_data *)arg; in filter_filename_startswith() local
842 if (_D_EXACT_NAMLEN(entry) < d->len) in filter_filename_startswith()
847 return memcmp(entry->d_name, d->str, d->len); in filter_filename_startswith()
1036 struct find_file_data *d = (struct find_file_data *)arg; in _get_file_path() local
1038 if (!strcmp(dirp->d_name, d->target)) { in _get_file_path()
1039 if (asprintf(&d->path[d->found], "%s/%s", pdir, in _get_file_path()
1044 if (++(d->found) == d->limit) in _get_file_path()