Searched refs:copy_error (Results 1 – 3 of 3) sorted by relevance
| /xnu-8796.121.2/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()
|
| /xnu-8796.121.2/bsd/net/ |
| H A D | necp_client.c | 8544 int copy_error = copyin(uap->buffer, &bufreq, buffer_size); in necp_client_request_nexus() local 8545 if (copy_error) { in necp_client_request_nexus() 8546 NECPLOG(LOG_ERR, "necp_client_request_nexus copyin bufreq error (%d)", copy_error); in necp_client_request_nexus() 8549 copy_error = copyout(&bufreq, uap->buffer, buffer_size); in necp_client_request_nexus() 8550 if (copy_error != 0) { in necp_client_request_nexus() 8551 NECPLOG(LOG_ERR, "necp_client_request_nexus copyout bufreq error (%d)", copy_error); in necp_client_request_nexus()
|
| H A D | necp.c | 3267 int copy_error = copyout(result_buf, out_buffer, total_tlv_len + sizeof(u_int32_t)); in necp_handle_policy_dump_all() local 3268 if (copy_error) { in necp_handle_policy_dump_all()
|