Lines Matching defs:ii
800 iidesc_t *ii;
816 ii = iidesc_new(symit_name(si));
817 ii->ii_dtype = tdarr[id];
819 ii->ii_type = II_SVAR;
820 ii->ii_owner = xstrdup(symit_curfile(si));
822 ii->ii_type = II_GVAR;
823 hash_add(td->td_iihash, ii);
826 (ii->ii_type == II_GVAR ? "global" : "static"),
827 ii->ii_name, id, (ii->ii_owner ? ii->ii_owner : "(none)"));
838 iidesc_t *ii;
866 ii = iidesc_new(symit_name(si));
867 ii->ii_dtype = tdarr[retid];
869 ii->ii_type = II_SFUN;
870 ii->ii_owner = xstrdup(symit_curfile(si));
872 ii->ii_type = II_GFUN;
873 ii->ii_nargs = CTF_INFO_VLEN(info);
874 if (ii->ii_nargs)
875 ii->ii_args =
876 xmalloc(sizeof (tdesc_t *) * ii->ii_nargs);
878 for (i = 0; i < ii->ii_nargs; i++, dptr += 2) {
884 ii->ii_args[i] = tdarr[id];
887 if (ii->ii_nargs && ii->ii_args[ii->ii_nargs - 1] == NULL) {
888 ii->ii_nargs--;
889 ii->ii_vargs = 1;
892 hash_add(td->td_iihash, ii);
895 (ii->ii_type == II_GFUN ? "global" : "static"),
896 ii->ii_name, retid, ii->ii_nargs);
1142 iidesc_t *ii = iidesc_new(tdp->t_name);
1145 ii->ii_type = II_SOU;
1147 ii->ii_type = II_TYPE;
1148 ii->ii_dtype = tdp;
1149 hash_add(td->td_iihash, ii);