Lines Matching refs:ii
49 iidesc_t *ii; in iidesc_new() local
51 ii = xcalloc(sizeof (iidesc_t)); in iidesc_new()
53 ii->ii_name = xstrdup(name); in iidesc_new()
55 return (ii); in iidesc_new()
61 iidesc_t *ii = arg; in iidesc_hash() local
64 if (ii->ii_name) in iidesc_hash()
65 return (hash_name(nbuckets, ii->ii_name)); in iidesc_hash()
170 iidesc_dump(iidesc_t *ii) in iidesc_dump() argument
172 printf("type: %d name %s\n", ii->ii_type, in iidesc_dump()
173 (ii->ii_name ? ii->ii_name : "(anon)")); in iidesc_dump()
181 iidesc_t *ii = data; in iidesc_count_type() local
184 return (ii->ii_type == match); in iidesc_count_type()
188 iidesc_stats(hash_t *ii) in iidesc_stats() argument
191 hash_iter(ii, iidesc_count_type, (void *)II_GFUN), in iidesc_stats()
192 hash_iter(ii, iidesc_count_type, (void *)II_SFUN), in iidesc_stats()
193 hash_iter(ii, iidesc_count_type, (void *)II_GVAR), in iidesc_stats()
194 hash_iter(ii, iidesc_count_type, (void *)II_SVAR), in iidesc_stats()
195 hash_iter(ii, iidesc_count_type, (void *)II_TYPE), in iidesc_stats()
196 hash_iter(ii, iidesc_count_type, (void *)II_SOU)); in iidesc_stats()