Lines Matching refs:db_printf

1252 	db_printf("%*s", indent, "");					\
1253 db_printf(__VA_ARGS__); \
1257 db_printf("\n"); \
1321 db_printf(", flags=0x%04x", cp->flags);
1322 db_printf("\n");
1355 db_printf(", flags=%s (0x%04x)",
1359 db_printf("\n");
1390 db_printf(", flags=%s (0x%04x)",
1394 db_printf("\n");
1417 db_printf("class: %s (%p)\n", mp->name, mp);
1436 db_printf("\n");
1455 db_printf("Not a GEOM object.\n");
1464 db_printf(" cmd: ");
1466 case BIO_READ: db_printf("BIO_READ"); break;
1467 case BIO_WRITE: db_printf("BIO_WRITE"); break;
1468 case BIO_DELETE: db_printf("BIO_DELETE"); break;
1469 case BIO_GETATTR: db_printf("BIO_GETATTR"); break;
1470 case BIO_FLUSH: db_printf("BIO_FLUSH"); break;
1471 case BIO_CMD0: db_printf("BIO_CMD0"); break;
1472 case BIO_CMD1: db_printf("BIO_CMD1"); break;
1473 case BIO_CMD2: db_printf("BIO_CMD2"); break;
1474 default: db_printf("UNKNOWN"); break;
1476 db_printf("\n");
1485 db_printf(" flags: ");
1487 db_printf("BIO_ERROR");
1491 db_printf("%sBIO_DONE", (comma ? ", " : ""));
1495 db_printf("%sBIO_ONQUEUE", (comma ? ", " : ""));
1496 db_printf("\n");
1508 db_printf("BIO %p\n", bp);
1511 db_printf(" cflags: 0x%hhx\n", bp->bio_cflags);
1512 db_printf(" pflags: 0x%hhx\n", bp->bio_pflags);
1513 db_printf(" offset: %jd\n", (intmax_t)bp->bio_offset);
1514 db_printf(" length: %jd\n", (intmax_t)bp->bio_length);
1515 db_printf(" bcount: %ld\n", bp->bio_bcount);
1516 db_printf(" resid: %ld\n", bp->bio_resid);
1517 db_printf(" completed: %jd\n", (intmax_t)bp->bio_completed);
1518 db_printf(" children: %u\n", bp->bio_children);
1519 db_printf(" inbed: %u\n", bp->bio_inbed);
1520 db_printf(" error: %d\n", bp->bio_error);
1521 db_printf(" parent: %p\n", bp->bio_parent);
1522 db_printf(" driver1: %p\n", bp->bio_driver1);
1523 db_printf(" driver2: %p\n", bp->bio_driver2);
1524 db_printf(" caller1: %p\n", bp->bio_caller1);
1525 db_printf(" caller2: %p\n", bp->bio_caller2);
1526 db_printf(" bio_from: %p\n", bp->bio_from);
1527 db_printf(" bio_to: %p\n", bp->bio_to);