Lines Matching defs:buf
69 char *buf = nullptr;
70 buf = new char[TEST_DATA_LEN + 1];
81 ret = read(fd, buf, TEST_DATA_LEN);
83 buf[TEST_DATA_LEN] = '\0';
84 ret = strcmp(buf, TEST_DATA);
187 char *buf = nullptr;
188 buf = new char[TEST_DATA_LEN + 1];
195 ret = read(pipefd[0], buf, TEST_DATA_LEN);
197 buf[TEST_DATA_LEN] = '\0';
198 ret = strcmp(buf, TEST_DATA);