Lines Matching refs:sep

201 stacks_hash_entry(stacks_entry_t *sep)
203 size_t depth = sep->se_depth;
204 uintptr_t *stack = sep->se_stack;
377 stacks_entry_t **sepp, *nsep, *sep;
405 (sep = *sepp) != NULL;
406 sepp = &sep->se_next) {
408 if (stacks_entry_comp_impl(sep, nsep, 0) != 0)
411 nsep->se_dup = sep->se_dup;
412 sep->se_dup = nsep;
413 sep->se_count++;
492 stacks_entry_t *sep;
493 for (sep = si.si_hash[idx]; sep != NULL; sep = sep->se_next)
494 *(cur++) = sep;
519 stacks_has_caller(stacks_entry_t *sep, uintptr_t addr)
534 for (idx = 0; idx < sep->se_depth; idx++)
535 if (sep->se_stack[idx] >= laddr && sep->se_stack[idx] < haddr)
542 stacks_has_module(stacks_entry_t *sep, stacks_module_t *mp)
546 for (idx = 0; idx < sep->se_depth; idx++) {
547 if (sep->se_stack[idx] >= mp->sm_text &&
548 sep->se_stack[idx] < mp->sm_text + mp->sm_size)
757 stacks_entry_t *sep = stacks_array[idx];
758 stacks_entry_t *cur = sep;
760 size_t count = sep->se_count;
769 for (sp = sep; sp != NULL; sp = sp->se_dup) {
788 cur = sep = head;
793 if (caller != 0 && !stacks_has_caller(sep, caller))
796 if (excl_caller != 0 && stacks_has_caller(sep, excl_caller))
799 if (module.sm_size != 0 && !stacks_has_module(sep, &module))
803 stacks_has_module(sep, &excl_module))
808 if (!sep->se_panic)
810 } else if (sep->se_panic || sep->se_tstate != tstate)
815 if (sep->se_panic)
817 } else if (!sep->se_panic &&
818 sep->se_tstate == excl_tstate)
823 if (sep->se_sobj_ops == 0)
826 if (sobj_ops != sep->se_sobj_ops)
830 if (!(interesting && sep->se_panic)) {
832 if (sep->se_sobj_ops != 0)
835 if (excl_sobj_ops == sep->se_sobj_ops)
841 while (sep != NULL) {
842 mdb_printf("%lr\n", sep->se_thread);
843 sep = only_matching ?
844 sep->se_next : sep->se_dup;
864 if (cur == sep)
874 if (sep->se_failed != 0) {
876 switch (sep->se_failed) {
893 for (frame = 0; frame < sep->se_depth; frame++)
894 mdb_printf("%?s %a\n", "", sep->se_stack[frame]);
895 if (sep->se_overflow)