Lines Matching defs:cnt
46 size_t cnt = pwrite(fd, txt, strlen(txt), 0);
47 EXPECT_EQ("pwrite_0100", cnt, strlen(txt));
50 cnt = pread(fd, buffer, TEST_BUFFER_SIZE, 0);
51 EXPECT_EQ("pwrite_0100", cnt, strlen(txt));
65 size_t cnt = pwrite(-1, txt, strlen(txt), 0);
66 EXPECT_EQ("pwrite_0200", cnt, (size_t)(-1));
74 cnt = pwrite(fd, txt, 0, 0);
75 EXPECT_EQ("pwrite_0200", cnt, CMPFLAG);
77 cnt = pwrite(fd, NULL, 0, 0);
78 EXPECT_EQ("pwrite_0200", cnt, CMPFLAG);