Lines Matching refs:buf1
35 char buf1[] = "hello";
37 struct iovec ios[] = {{buf1, strlen(buf1)}, {buf2, strlen(buf2)}};
40 if (result != strlen(buf1) + strlen(buf2)) {
46 memset(buf1, 0, sizeof(buf1));
50 if (result != strlen(buf1) + strlen(buf2)) {
54 if (strcmp(buf1, "hello")) {
55 t_error("%s failed: buf1 = %s\n", __func__, buf1);