Lines Matching defs:index

4840 devfsadm_enumerate_int(char *devfs_path, int index, char **buf,
4844 devfs_path, index, "0", INTEGER, buf, 0));
4848 disk_enumerate_int(char *devfs_path, int index, char **buf,
4852 devfs_path, index, "0", INTEGER, buf, 1));
4860 devfsadm_enumerate_int_start(char *devfs_path, int index, char **buf,
4864 devfs_path, index, start, INTEGER, buf, 0));
4872 devfsadm_enumerate_char(char *devfs_path, int index, char **buf,
4876 devfs_path, index, "a", LETTER, buf, 0));
4884 devfsadm_enumerate_char_start(char *devfs_path, int index, char **buf,
4888 devfs_path, index, start, LETTER, buf, 0));
4896 * rule specified by "index". If a match is found on a cached entry,
4902 char *devfs_path, int index, char *min, int type, char **buf,
4923 if (nrules <= 0 || index < 0 || index >= nrules || buf == NULL) {
4932 cmp_str = alloc_cmp_str(devfs_path, &rules[index]);
4947 matchcount = lookup_enum_cache(set, cmp_str, rules, index,
4975 numeral->rule_index = index;
5003 devfsadm_enumerate_t rules[], int index, numeral_t **matchnpp)
5013 assert(index < set->re_count);
5020 if ((rules[index].flags & MATCH_UNCACHED) == MATCH_UNCACHED) {
5394 devfsadm_enumerate_t rules[], int index)
5452 slash1 ? 0 : rules[index].subexp)) {
5510 devfsadm_enumerate_t rules[], int index)
5541 slash ? 0 : rules[index].subexp)) {
5552 setp, rules, index);
5555 numeral_id, rules, index);
5665 devfsadm_enumerate_t rules[], int index)
5676 assert(index >= 0 && index < setp->re_count);
5677 assert(strcmp(rules[index].re, setp->re[index]) == 0);
5739 cmp_str = alloc_cmp_str(linkptr, &rules[index]);
5749 np->rule_index = index;
8474 int index;
8477 index = nfphash_fcn(key);
8479 assert(index >= 0);
8481 for (ip = nfp_hash[index]; ip; ip = ip->i_next) {
8493 int index;
8495 index = nfphash_fcn(key);
8497 assert(index >= 0);
8502 ip->i_next = nfp_hash[index];
8503 nfp_hash[index] = ip;