MCPcopy Create free account
hub / github.com/F-Stack/f-stack / db_examine_cmd

Function db_examine_cmd

freebsd/ddb/db_examine.c:56–66  ·  view source on GitHub ↗

* Examine (print) data. */ ARGSUSED*/

Source from the content-addressed store, hash-verified

54 */
55/*ARGSUSED*/
56void
57db_examine_cmd(db_expr_t addr, bool have_addr, db_expr_t count, char *modif)
58{
59 if (modif[0] != '\0')
60 db_strcpy(db_examine_format, modif);
61
62 if (count == -1)
63 count = 1;
64
65 db_examine((db_addr_t) addr, db_examine_format, count);
66}
67
68static void
69db_examine(db_addr_t addr, char *fmt, int count)

Callers

nothing calls this directly

Calls 1

db_examineFunction · 0.85

Tested by

no test coverage detected