Lines Matching refs:indent

224 nvme_print(int indent, const char *name, int index, const char *fmt, ...)  in nvme_print()  argument
226 int align = NVME_PRINT_ALIGN - (indent + 1); in nvme_print()
240 (void) printf("%*s%s", indent, "", name != NULL ? name : ""); in nvme_print()
277 nvme_print_str(int indent, const char *name, int index, const char *value, in nvme_print_str() argument
283 nvme_print(indent, name, index, "%.*s", nvme_strlen(value, len), value); in nvme_print_str()
291 nvme_print_double(int indent, const char *name, double value, int places, in nvme_print_double() argument
297 nvme_print(indent, name, -1, "%.*g%s", places, value, unit); in nvme_print_double()
305 nvme_print_int64(int indent, const char *name, uint64_t value, const char *fmt, in nvme_print_int64() argument
319 nvme_print(indent, name, -1, tmp_fmt, value, unit); in nvme_print_int64()
330 nvme_print_temp(int indent, const char *name, uint16_t value) in nvme_print_temp() argument
334 nvme_print_int64(indent, name, temp, NULL, "C"); in nvme_print_temp()
342 nvme_print_uint64(int indent, const char *name, uint64_t value, const char *fmt, in nvme_print_uint64() argument
356 nvme_print(indent, name, -1, tmp_fmt, value, unit); in nvme_print_uint64()
463 nvme_print_uint128(int indent, const char *name, nvme_uint128_t value, in nvme_print_uint128() argument
474 nvme_print(indent, name, -1, "%s%s", buf, unit); in nvme_print_uint128()
481 nvme_print_bit(int indent, const char *name, boolean_t valid_vers, uint_t value, in nvme_print_bit() argument
492 nvme_print(indent, name, -1, "%s", value ? s_true : s_false); in nvme_print_bit()
499 nvme_print_hexbuf(int indent, const char *name, const uint8_t *buf, size_t len) in nvme_print_hexbuf() argument
511 nvme_print(indent, name, -1, fmt, in nvme_print_hexbuf()
520 nvme_print(indent, name, -1, fmt, in nvme_print_hexbuf()
530 nvme_print_uuid(int indent, const char *name, const uint8_t *uuid) in nvme_print_uuid() argument
532 nvme_print(indent, name, -1, in nvme_print_uuid()
545 nvme_print_guid(int indent, const char *name, const uint8_t *guid) in nvme_print_guid() argument
547 nvme_print(indent, name, -1, in nvme_print_guid()
559 nvme_print_eui64(int indent, const char *name, const uint8_t *eui64) in nvme_print_eui64() argument
561 nvme_print(indent, name, -1, in nvme_print_eui64()
571 nvme_print_version(int indent, const char *name, uint32_t value) in nvme_print_version() argument
576 nvme_print(indent, name, -1, "%u.%u", vers.b.vs_mjr, vers.b.vs_mnr); in nvme_print_version()