Lines Matching full:why
162 find_without_index(zfs_btree_t *bt, char *why) in find_without_index() argument
169 (void) snprintf(why, BUFSIZE, "Unexpectedly found %llu\n", in find_without_index()
177 (void) snprintf(why, BUFSIZE, "Found bad value: %llu\n", *p); in find_without_index()
186 insert_find_remove(zfs_btree_t *bt, char *why) in insert_find_remove() argument
194 (void) snprintf(why, BUFSIZE, "Didn't find value in tree\n"); in insert_find_remove()
197 (void) snprintf(why, BUFSIZE, "Found (%llu) in tree\n", *p); in insert_find_remove()
206 (void) snprintf(why, BUFSIZE, in insert_find_remove()
222 drain_tree(zfs_btree_t *bt, char *why) in drain_tree() argument
249 (void) snprintf(why, BUFSIZE, in drain_tree()
300 stress_tree(zfs_btree_t *bt, char *why) in stress_tree() argument
302 (void) why; in stress_tree()
530 char why[BUFSIZE] = {0}; in main() local
534 retval = test->func(&bt, why); in main()
540 if (strlen(why) != 0) in main()
541 (void) fprintf(stdout, "\t%s\n", why); in main()
542 why[0] = '\0'; in main()