Lines Matching defs:btnode
144 struct btnode {
145 RBT_ENTRY(btnode) entry;
148 RBT_HEAD(btshead, btnode);
149 RBT_PROTOTYPE(btshead, btnode, entry, btcmp);
189 struct btnode *btnodes; /* store of backtrace nodes */
277 static void* store_caller(struct dir_info *, struct btnode *);
289 struct btnode p;
314 struct btnode p;
2371 btcmp(const struct btnode *e1, const struct btnode *e2)
2376 RBT_GENERATE(btshead, btnode, entry, btcmp);
2379 store_caller(struct dir_info *d, struct btnode *f)
2381 struct btnode *p;
2390 d->btnodesused >= MALLOC_PAGESIZE / sizeof(struct btnode)) {
2409 struct btnode* btnode;
2419 btnode = (struct btnode *)r->f[chunknum];
2421 if (btnode != NULL)
2422 fabstorel(btnode->caller[frame], buf1, sizeof(buf1));
2426 btnode = (struct btnode *)r->f[chunknum];
2427 if (btnode != NULL)
2428 fabstorel(btnode->caller[frame], buf2, sizeof(buf2));
2571 abscaller = ((struct btnode*)p->d.f)->caller[i];