Lines Matching refs:txt
29 const char *txt = "This is pread_0100 test.";
38 pwrite(fd, txt, strlen(txt), 0);
41 EXPECT_EQ("pread_0100", cnt, strlen(txt));
42 EXPECT_STREQ("pread_0100", txt, buffer);
54 const char *txt = "This is pread_0200 test.";
63 pwrite(fd, txt, strlen(txt), 0);
65 EXPECT_EQ("pread_0200", cnt, strlen(txt));
66 EXPECT_STREQ("pread_0200", txt, buffer);
78 const char *txt = "This is pread_0300 test.";
87 pwrite(fd, txt, strlen(txt), 0);
88 size_t cnt = pread(fd, buffer, TEST_BUFFER_SIZE, strlen(txt));