Home
last modified time | relevance | path

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

/src/sys/dev/vmware/vmci/
H A Dvmci_queue_pair.c916 struct vmci_event_msg *e_msg; in queue_pair_notify_peer_local() local
921 char buf[sizeof(*e_msg) + sizeof(*e_payload)]; in queue_pair_notify_peer_local()
923 e_msg = (struct vmci_event_msg *)buf; in queue_pair_notify_peer_local()
924 e_payload = vmci_event_msg_payload(e_msg); in queue_pair_notify_peer_local()
926 e_msg->hdr.dst = VMCI_MAKE_HANDLE(context_id, VMCI_EVENT_HANDLER); in queue_pair_notify_peer_local()
927 e_msg->hdr.src = VMCI_MAKE_HANDLE(VMCI_HYPERVISOR_CONTEXT_ID, in queue_pair_notify_peer_local()
929 e_msg->hdr.payload_size = sizeof(*e_msg) + sizeof(*e_payload) - in queue_pair_notify_peer_local()
930 sizeof(e_msg->hdr); in queue_pair_notify_peer_local()
931 e_msg->event_data.event = attach ? VMCI_EVENT_QP_PEER_ATTACH : in queue_pair_notify_peer_local()
936 return (vmci_event_dispatch((struct vmci_datagram *)e_msg)); in queue_pair_notify_peer_local()
H A Dvmci_call_defs.h198 vmci_event_msg_payload(struct vmci_event_msg *e_msg) in vmci_event_msg_payload() argument
201 return (vmci_event_data_payload(&e_msg->event_data)); in vmci_event_msg_payload()
/src/libexec/tftpd/
H A Dtftp-io.c58 const char *e_msg; member
95 return (pe->e_msg); in errtomsg()
156 pe->e_msg = strerror(error - 100); in send_error()
159 snprintf(tp->th_msg, MAXPKTSIZE - 4, "%s%n", pe->e_msg, &length); in send_error()