Lines Matching defs:ii
49 iidesc_t *ii;
51 ii = xcalloc(sizeof (iidesc_t));
53 ii->ii_name = xstrdup(name);
55 return (ii);
61 iidesc_t *ii = arg;
64 if (ii->ii_name)
65 return (hash_name(nbuckets, ii->ii_name));
166 iidesc_dump(iidesc_t *ii)
168 printf("type: %d name %s\n", ii->ii_type,
169 (ii->ii_name ? ii->ii_name : "(anon)"));
177 iidesc_t *ii = data;
180 return (ii->ii_type == match);
184 iidesc_stats(hash_t *ii)
187 hash_iter(ii, iidesc_count_type, (void *)II_GFUN),
188 hash_iter(ii, iidesc_count_type, (void *)II_SFUN),
189 hash_iter(ii, iidesc_count_type, (void *)II_GVAR),
190 hash_iter(ii, iidesc_count_type, (void *)II_SVAR),
191 hash_iter(ii, iidesc_count_type, (void *)II_TYPE),
192 hash_iter(ii, iidesc_count_type, (void *)II_SOU));