Lines Matching defs:kv
673 kstat_kv_init(struct kstat_kv *kv, const char *name, enum kstat_kv_type type)
675 memset(kv, 0, sizeof(*kv));
676 strlcpy(kv->kv_key, name, sizeof(kv->kv_key)); /* XXX truncated? */
677 kv->kv_type = type;
678 kv->kv_unit = KSTAT_KV_U_NONE;
682 kstat_kv_unit_init(struct kstat_kv *kv, const char *name,
697 panic("kv unit init %s: unit for non-integer type", name);
700 memset(kv, 0, sizeof(*kv));
701 strlcpy(kv->kv_key, name, sizeof(kv->kv_key)); /* XXX truncated? */
702 kv->kv_type = type;
703 kv->kv_unit = unit;