Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/kern/
H A Dkern_xxx.c132 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.1.9/bsd/net/
H A Dnecp_client.c9807 int copy_error = copyin(uap->buffer, &bufreq, buffer_size); in necp_client_request_nexus() local
9808 if (copy_error) { in necp_client_request_nexus()
9809 NECPLOG(LOG_ERR, "necp_client_request_nexus copyin bufreq error (%d)", copy_error); in necp_client_request_nexus()
9812 copy_error = copyout(&bufreq, uap->buffer, buffer_size); in necp_client_request_nexus()
9813 if (copy_error != 0) { in necp_client_request_nexus()
9814 NECPLOG(LOG_ERR, "necp_client_request_nexus copyout bufreq error (%d)", copy_error); in necp_client_request_nexus()
H A Dnecp.c3811 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()