Lines Matching defs:uc_str
3298 struct uc_string_id *uc_str;
3305 uc_str = kzalloc(QUERY_DESC_MAX_SIZE, GFP_KERNEL);
3306 if (!uc_str)
3310 (u8 *)uc_str, QUERY_DESC_MAX_SIZE);
3318 if (uc_str->len <= QUERY_DESC_HDR_SIZE) {
3329 ascii_len = (uc_str->len - QUERY_DESC_HDR_SIZE) / 2 + 1;
3340 ret = utf16s_to_utf8s(uc_str->uc,
3341 uc_str->len - QUERY_DESC_HDR_SIZE,
3351 str = kmemdup(uc_str, uc_str->len, GFP_KERNEL);
3356 ret = uc_str->len;
3360 kfree(uc_str);