Searched refs:out_buf (Results 1 – 1 of 1) sorted by relevance
| /xnu-11215/bsd/tests/ |
| H A D | copyio_tests.c | 125 char *out_buf = data->buf1; in copyin_test() local 129 out_buf[i] = (char)i; in copyin_test() 131 memcpy(data->kern_addr, out_buf, copyio_test_buf_size); in copyin_test() 135 int cmp = memcmp(out_buf, in_buf, copyio_test_buf_size); in copyin_test() 165 char *out_buf = data->buf1; in copyout_to_kernel() local 172 char *out_buf = data->buf1; in copyout_test() local 177 out_buf[i] = ~(char)i; in copyout_test() 182 int cmp = memcmp(data->kern_addr, out_buf, copyio_test_buf_size); in copyout_test() 192 err = copyout(out_buf, data->user_lastpage_addr, PAGE_SIZE * 2); in copyout_test() 199 cmp = memcmp(out_buf, data->kern_addr, copyio_test_buf_size); in copyout_test() [all …]
|