MCPcopy
hub / github.com/etcd-io/bbolt / pagePrintMeta

Function pagePrintMeta

cmd/bbolt/command/command_page.go:140–144  ·  view source on GitHub ↗

pagePrintMeta prints the data from the meta page.

(w io.Writer, buf []byte)

Source from the content-addressed store, hash-verified

138
139// pagePrintMeta prints the data from the meta page.
140func pagePrintMeta(w io.Writer, buf []byte) error {
141 m := common.LoadPageMeta(buf)
142 m.Print(w)
143 return nil
144}
145
146// pagePrintLeaf prints the data for a leaf page.
147func pagePrintLeaf(w io.Writer, buf []byte, formatValue string) error {

Callers 1

printPageFunction · 0.85

Calls 2

LoadPageMetaFunction · 0.92
PrintMethod · 0.80

Tested by

no test coverage detected