Home | History | Annotate | Download | only in libctf

Lines Matching refs:is_function

682    not found.  If is_function is >= 0, return only function or data object
686 int is_function)
701 || (symp->st_type != STT_OBJECT && is_function == 0)
702 || (symp->st_type != STT_FUNC && is_function == 1))
734 if (is_function != 0 &&
738 if (is_function != 1 &&
799 is_function))
1019 const char *symname, int is_function)
1043 if (is_function)
1113 If is_function is > -1, only look for data objects or functions in
1119 int is_function)
1151 || (sym->st_type != STT_OBJECT && is_function == 0)
1152 || (sym->st_type != STT_FUNC && is_function == 1))
1161 || is_function == 1
1166 || is_function == 0
1180 && is_function != 1
1186 && is_function != 0
1194 ((is_function && !fp->ctf_funcidx_names) ||
1195 (!is_function && !fp->ctf_objtidx_names)))
1206 if (fp->ctf_objtidx_names && is_function != 1)
1211 if (type == 0 && fp->ctf_funcidx_names && is_function != 0)
1229 if ((symidx = ctf_lookup_symbol_idx (fp, symname, try_parent, is_function))
1251 is_function);