Lines Matching refs:buf1
208 char *buf1, *bp;
216 buf1 = kmalloc(PAGE_SIZE, GFP_KERNEL);
217 if (buf1 == NULL)
223 len = qword_get(&buf, buf1, PAGE_SIZE);
226 memcpy(ent.authname, buf1, sizeof(ent.authname));
229 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
231 ent.type = strcmp(buf1, "user") == 0 ?
235 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
237 ent.id = simple_strtoul(buf1, &bp, 10);
238 if (bp == buf1)
253 len = qword_get(&buf, buf1, PAGE_SIZE);
259 memcpy(ent.name, buf1, sizeof(ent.name));
268 kfree(buf1);
378 char *buf1;
385 buf1 = kmalloc(PAGE_SIZE, GFP_KERNEL);
386 if (buf1 == NULL)
392 len = qword_get(&buf, buf1, PAGE_SIZE);
395 memcpy(ent.authname, buf1, sizeof(ent.authname));
398 if (qword_get(&buf, buf1, PAGE_SIZE) <= 0)
400 ent.type = strcmp(buf1, "user") == 0 ?
404 len = qword_get(&buf, buf1, PAGE_SIZE);
407 memcpy(ent.name, buf1, sizeof(ent.name));
432 kfree(buf1);