Lines Matching defs:pc
228 * when the saved pc is inside this function.
249 * get value of saved fp and pc w/o crashing
290 * the saved fp & pc to pass to user's function
349 display_stack_info(uintptr_t pc, int signo, void *arg)
358 (void) addrtosymstr((void *)pc, buffer, sizeof (buffer));
401 callback(uintptr_t pc, int signo, void *arg)
408 bt->bt_buffer[bt->bt_actcount++] = (void *)pc;
440 addrtosymstr(void *pc, char *buffer, int size)
445 if (dladdr1(pc, &info, (void **)&sym,
447 return (snprintf(buffer, size, "[0x%p]", pc));
451 ((uintptr_t)pc - (uintptr_t)info.dli_saddr < sym->st_size)) {
458 (unsigned long)pc - (unsigned long)info.dli_saddr,
459 pc));
466 (unsigned long)pc - (unsigned long)info.dli_fbase,
467 pc));