Lines Matching refs:offset
48 long *offset, int flags);
49 static int stack_symbol_ddb(vm_offset_t pc, const char **name, long *offset);
96 long offset; in stack_print() local
102 &offset, M_WAITOK); in stack_print()
104 namebuf, offset); in stack_print()
112 long offset; in stack_print_short() local
120 &offset, M_WAITOK) == 0) in stack_print_short()
121 printf("%s+%#lx", namebuf, offset); in stack_print_short()
132 long offset; in stack_print_ddb() local
137 stack_symbol_ddb(st->pcs[i], &name, &offset); in stack_print_ddb()
139 name, offset); in stack_print_ddb()
148 long offset; in stack_print_short_ddb() local
155 if (stack_symbol_ddb(st->pcs[i], &name, &offset) == 0) in stack_print_short_ddb()
156 printf("%s+%#lx", name, offset); in stack_print_short_ddb()
174 long offset; in stack_sbuf_print_flags() local
180 &offset, flags); in stack_sbuf_print_flags()
186 (void *)st->pcs[i], namebuf, offset); in stack_sbuf_print_flags()
189 sbuf_printf(sb, "%s+%#lx ", namebuf, offset); in stack_sbuf_print_flags()
211 long offset; in stack_sbuf_print_ddb() local
216 (void)stack_symbol_ddb(st->pcs[i], &name, &offset); in stack_sbuf_print_ddb()
218 name, offset); in stack_sbuf_print_ddb()
230 long offset; in stack_ktr() local
239 (void)stack_symbol_ddb(st->pcs[i], &name, &offset); in stack_ktr()
241 i, st->pcs[i], (u_long)name, offset, 0, 0); in stack_ktr()
252 stack_symbol(vm_offset_t pc, char *namebuf, u_int buflen, long *offset, in stack_symbol() argument
258 offset, flags); in stack_symbol()
262 *offset = 0; in stack_symbol()
268 stack_symbol_ddb(vm_offset_t pc, const char **name, long *offset) in stack_symbol_ddb() argument
273 if (linker_ddb_search_symbol((caddr_t)pc, &sym, offset) != 0) in stack_symbol_ddb()
282 *offset = 0; in stack_symbol_ddb()