Searched refs:copy_error (Results 1 – 3 of 3) sorted by relevance
| /xnu-12377.61.12/bsd/kern/ |
| H A D | kern_xxx.c | 132 int copy_error = copyinstr(uap->msg, (void *)message, kPanicStringMaxLen, (size_t *)&dummy); in reboot() local 133 if (copy_error != 0 && copy_error != ENAMETOOLONG) { in reboot() 190 int copy_error = copyinstr(uap->msg, (void *)message, kPanicStringMaxLen, (size_t *)&dummy); in sys_panic_with_data() local 191 if (copy_error != 0 && copy_error != ENAMETOOLONG) { in sys_panic_with_data() 206 int copy_error = copyin(uap->addr, data, copy_len); in sys_panic_with_data() local 207 if (copy_error != 0) { in sys_panic_with_data()
|
| /xnu-12377.61.12/bsd/net/ |
| H A D | necp_client.c | 9776 int copy_error = copyin(uap->buffer, &bufreq, buffer_size); in necp_client_request_nexus() local 9777 if (copy_error) { in necp_client_request_nexus() 9778 NECPLOG(LOG_ERR, "necp_client_request_nexus copyin bufreq error (%d)", copy_error); in necp_client_request_nexus() 9781 copy_error = copyout(&bufreq, uap->buffer, buffer_size); in necp_client_request_nexus() 9782 if (copy_error != 0) { in necp_client_request_nexus() 9783 NECPLOG(LOG_ERR, "necp_client_request_nexus copyout bufreq error (%d)", copy_error); in necp_client_request_nexus()
|
| H A D | necp.c | 3811 int copy_error = copyout(result_buf, out_buffer, total_tlv_len + sizeof(u_int32_t)); in necp_handle_policy_dump_all() local 3812 if (copy_error) { in necp_handle_policy_dump_all()
|