Searched refs:out_buf (Results 1 – 1 of 1) sorted by relevance
| /xnu-8020.121.3/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 166 return copyout(out_buf, (uintptr_t)data->kern_addr, copyio_test_buf_size); in copyout_to_kernel() 172 char *out_buf = data->buf1; in copyout_test() local 177 out_buf[i] = ~(char)i; in copyout_test() 179 int err = copyout(out_buf, data->user_addr, copyio_test_buf_size); in copyout_test() 182 int cmp = memcmp(data->kern_addr, out_buf, copyio_test_buf_size); in copyout_test() [all …]
|