Lines Matching refs:indent
225 nvme_print(int indent, const char *name, int index, const char *fmt, ...) in nvme_print() argument
227 int align = NVME_PRINT_ALIGN - (indent + 1); in nvme_print()
241 (void) printf("%*s%s", indent, "", name != NULL ? name : ""); in nvme_print()
278 nvme_print_str(int indent, const char *name, int index, const char *value, in nvme_print_str() argument
284 nvme_print(indent, name, index, "%.*s", nvme_strlen(value, len), value); in nvme_print_str()
292 nvme_print_double(int indent, const char *name, double value, int places, in nvme_print_double() argument
298 nvme_print(indent, name, -1, "%.*g%s", places, value, unit); in nvme_print_double()
306 nvme_print_int64(int indent, const char *name, uint64_t value, const char *fmt, in nvme_print_int64() argument
320 nvme_print(indent, name, -1, tmp_fmt, value, unit); in nvme_print_int64()
331 nvme_print_temp(int indent, const char *name, uint16_t value) in nvme_print_temp() argument
335 nvme_print_int64(indent, name, temp, NULL, "C"); in nvme_print_temp()
343 nvme_print_uint64(int indent, const char *name, uint64_t value, const char *fmt, in nvme_print_uint64() argument
357 nvme_print(indent, name, -1, tmp_fmt, value, unit); in nvme_print_uint64()
464 nvme_print_uint128(int indent, const char *name, nvme_uint128_t value, in nvme_print_uint128() argument
475 nvme_print(indent, name, -1, "%s%s", buf, unit); in nvme_print_uint128()
482 nvme_print_bit(int indent, const char *name, boolean_t valid_vers, uint_t value, in nvme_print_bit() argument
493 nvme_print(indent, name, -1, "%s", value ? s_true : s_false); in nvme_print_bit()
500 nvme_print_hexbuf(int indent, const char *name, const uint8_t *buf, size_t len) in nvme_print_hexbuf() argument
512 nvme_print(indent, name, -1, fmt, in nvme_print_hexbuf()
521 nvme_print(indent, name, -1, fmt, in nvme_print_hexbuf()
531 nvme_print_uuid(int indent, const char *name, const uint8_t *uuid) in nvme_print_uuid() argument
533 nvme_print(indent, name, -1, in nvme_print_uuid()
546 nvme_print_guid(int indent, const char *name, const uint8_t *guid) in nvme_print_guid() argument
548 nvme_print(indent, name, -1, in nvme_print_guid()
560 nvme_print_eui64(int indent, const char *name, const uint8_t *eui64) in nvme_print_eui64() argument
562 nvme_print(indent, name, -1, in nvme_print_eui64()
572 nvme_print_version(int indent, const char *name, uint32_t value) in nvme_print_version() argument
577 nvme_print(indent, name, -1, "%u.%u", vers.b.vs_mjr, vers.b.vs_mnr); in nvme_print_version()