Lines Matching refs:txt
37 const char *txt = "This is pwrite_0100 test.";
46 size_t cnt = pwrite(fd, txt, strlen(txt), 0);
47 EXPECT_EQ("pwrite_0100", cnt, strlen(txt));
51 EXPECT_EQ("pwrite_0100", cnt, strlen(txt));
52 EXPECT_STREQ("pwrite_0100", txt, buffer);
64 const char *txt = "This is pwrite_0200 test.";
65 size_t cnt = pwrite(-1, txt, strlen(txt), 0);
74 cnt = pwrite(fd, txt, 0, 0);