Lines Matching refs:offset

49 	    long *offset, int flags);
50 static int stack_symbol_ddb(vm_offset_t pc, const char **name, long *offset);
97 long offset; in stack_print() local
103 &offset, M_WAITOK); in stack_print()
105 namebuf, offset); in stack_print()
113 long offset; in stack_print_short() local
121 &offset, M_WAITOK) == 0) in stack_print_short()
122 printf("%s+%#lx", namebuf, offset); in stack_print_short()
133 long offset; in stack_print_ddb() local
138 stack_symbol_ddb(st->pcs[i], &name, &offset); in stack_print_ddb()
140 name, offset); in stack_print_ddb()
149 long offset; in stack_print_short_ddb() local
156 if (stack_symbol_ddb(st->pcs[i], &name, &offset) == 0) in stack_print_short_ddb()
157 printf("%s+%#lx", name, offset); in stack_print_short_ddb()
175 long offset; in stack_sbuf_print_flags() local
181 &offset, flags); in stack_sbuf_print_flags()
187 (void *)st->pcs[i], namebuf, offset); in stack_sbuf_print_flags()
190 sbuf_printf(sb, "%s+%#lx ", namebuf, offset); in stack_sbuf_print_flags()
212 long offset; in stack_sbuf_print_ddb() local
217 (void)stack_symbol_ddb(st->pcs[i], &name, &offset); in stack_sbuf_print_ddb()
219 name, offset); in stack_sbuf_print_ddb()
231 long offset; in stack_ktr() local
240 (void)stack_symbol_ddb(st->pcs[i], &name, &offset); in stack_ktr()
242 i, st->pcs[i], (u_long)name, offset, 0, 0); in stack_ktr()
253 stack_symbol(vm_offset_t pc, char *namebuf, u_int buflen, long *offset, in stack_symbol() argument
259 offset, flags); in stack_symbol()
263 *offset = 0; in stack_symbol()
269 stack_symbol_ddb(vm_offset_t pc, const char **name, long *offset) in stack_symbol_ddb() argument
274 if (linker_ddb_search_symbol((caddr_t)pc, &sym, offset) != 0) in stack_symbol_ddb()
283 *offset = 0; in stack_symbol_ddb()