Lines Matching full:depth

44     u_int depth);
54 db_pprint_int(db_addr_t addr, struct ctf_type_v3 *type, u_int depth) in db_pprint_int() argument
80 * Pretty-prints a struct. Nested structs are pretty-printed up 'depth' nested
84 db_pprint_struct(db_addr_t addr, struct ctf_type_v3 *type, u_int depth) in db_pprint_struct() argument
104 if (depth > max_depth) { in db_pprint_struct()
123 db_indent = depth; in db_pprint_struct()
130 db_pprint_type(maddr, mtype, depth + 1); in db_pprint_struct()
146 db_indent = depth; in db_pprint_struct()
153 db_pprint_type(maddr, mtype, depth + 1); in db_pprint_struct()
157 db_indent = depth - 1; in db_pprint_struct()
163 * indented with 'depth' spaces.
166 db_pprint_arr(db_addr_t addr, struct ctf_type_v3 *type, u_int depth) in db_pprint_arr() argument
185 db_indent = depth; in db_pprint_arr()
193 db_pprint_type(elem_addr, elem_type, depth); in db_pprint_arr()
199 db_indent = depth - 1; in db_pprint_arr()
207 db_pprint_enum(db_addr_t addr, struct ctf_type_v3 *type, u_int depth) in db_pprint_enum() argument
240 * Pretty-prints a pointer. If the 'depth' parameter is less than the
246 db_pprint_ptr(db_addr_t addr, struct ctf_type_v3 *type, u_int depth) in db_pprint_ptr() argument
290 if (depth < max_depth && (val != 0)) { in db_pprint_ptr()
292 db_pprint_type(val, ref_type, depth + 1); in db_pprint_ptr()
295 db_indent = depth; in db_pprint_ptr()
309 db_pprint_type(db_addr_t addr, struct ctf_type_v3 *type, u_int depth) in db_pprint_type() argument
322 db_pprint_int(addr, type, depth); in db_pprint_type()
326 db_pprint_struct(addr, type, depth); in db_pprint_type()
330 db_indent = depth; in db_pprint_type()
334 db_pprint_ptr(addr, type, depth); in db_pprint_type()
342 db_pprint_type(addr, ref_type, depth); in db_pprint_type()
346 db_pprint_enum(addr, type, depth); in db_pprint_type()
349 db_pprint_arr(addr, type, depth); in db_pprint_type()
360 * Syntax: pprint [/d depth] <sym_name>
398 * Syntax: pprint [/d depth] struct <struct_name> <addr>
429 /* Set default depth */ in db_pprint_cmd()
438 /* Parse desired depth level */ in db_pprint_cmd()
442 db_error("Invalid depth provided\n"); in db_pprint_cmd()