Lines Matching refs:req_len
121 size_t req_len; in handle_modctl_stat() local
141 req_len = 1; in handle_modctl_stat()
151 req_len += strlen(mi->mi_required) + 1; in handle_modctl_stat()
158 req_len += strlen(mi->mi_required) + 1; in handle_modctl_stat()
165 req = kmem_zalloc(req_len, KM_SLEEP); in handle_modctl_stat()
180 used = strlcpy(req, mi->mi_required, req_len - off); in handle_modctl_stat()
181 KASSERTMSG(used < req_len - off, "reqlist grew!"); in handle_modctl_stat()
202 used = strlcpy(req, mi->mi_required, req_len - off); in handle_modctl_stat()
203 KASSERTMSG(used < req_len - off, "reqlist grew!"); in handle_modctl_stat()
244 size = uimin(req_len, out_s); in handle_modctl_stat()
250 kmem_free(reqo, req_len); in handle_modctl_stat()
254 iov->iov_len = ms_len + req_len + sizeof(ms_cnt); in handle_modctl_stat()