Lines Matching defs:ii
53 iidesc_t *ii;
55 ii = xcalloc(sizeof (iidesc_t));
57 ii->ii_name = xstrdup(name);
59 return (ii);
65 iidesc_t *ii = arg;
68 if (ii->ii_name)
69 return (hash_name(nbuckets, ii->ii_name));
174 iidesc_dump(iidesc_t *ii)
176 printf("type: %d name %s\n", ii->ii_type,
177 (ii->ii_name ? ii->ii_name : "(anon)"));
185 iidesc_t *ii = data;
188 return (ii->ii_type == match);
192 iidesc_stats(hash_t *ii)
195 hash_iter(ii, iidesc_count_type, (void *)II_GFUN),
196 hash_iter(ii, iidesc_count_type, (void *)II_SFUN),
197 hash_iter(ii, iidesc_count_type, (void *)II_GVAR),
198 hash_iter(ii, iidesc_count_type, (void *)II_SVAR),
199 hash_iter(ii, iidesc_count_type, (void *)II_TYPE),
200 hash_iter(ii, iidesc_count_type, (void *)II_SOU));