Home
last modified time | relevance | path

Searched refs:input_buffer (Results 1 – 1 of 1) sorted by relevance

/xnu-11215/tests/
H A Dpwrite.c70 char input_buffer = 'A'; in test_pwrite_should_fail() local
71 ssize_t pwrite_result = pwrite(fd, &input_buffer, 1, 0); in test_pwrite_should_fail()
75 T_ASSERT_EQ(input_buffer, 'A', "input buffer is unchanged"); in test_pwrite_should_fail()
77 pwrite_result = pwrite(fd, &input_buffer, 1, 1); in test_pwrite_should_fail()
81 T_ASSERT_EQ(input_buffer, 'A', "input buffer is unchanged"); in test_pwrite_should_fail()
83 pwrite_result = pwrite(fd, &input_buffer, 0, 0); in test_pwrite_should_fail()
87 T_ASSERT_EQ(input_buffer, 'A', "input buffer is unchanged"); in test_pwrite_should_fail()
89 pwrite_result = pwrite(fd, &input_buffer, 0, 1); in test_pwrite_should_fail()
93 T_ASSERT_EQ(input_buffer, 'A', "input buffer is unchanged"); in test_pwrite_should_fail()