Lines Matching defs:buf2
36 char buf2[] = "world";
37 struct iovec ios[] = {{buf1, strlen(buf1)}, {buf2, strlen(buf2)}};
40 if (result != strlen(buf1) + strlen(buf2)) {
47 memset(buf2, 0, sizeof(buf2));
50 if (result != strlen(buf1) + strlen(buf2)) {
58 if (strcmp(buf2, "world")) {
59 t_error("%s failed: buf2 = %s\n", __func__, buf2);