Home
last modified time | relevance | path

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

/xnu-8796.141.3/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()
/xnu-8796.141.3/bsd/net/
H A Dnecp_client.c8544 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 Dnecp.c3283 int copy_error = copyout(result_buf, out_buffer, total_tlv_len + sizeof(u_int32_t)); in necp_handle_policy_dump_all() local
3284 if (copy_error) { in necp_handle_policy_dump_all()