Searched refs:send (Results 1 - 19 of 19) sorted by relevance

/darwin-on-arm/xnu/osfmk/kdp/
H A Dkdp_en_debugger.h38 kdp_register_send_receive(kdp_send_t send, kdp_receive_t receive);
41 kdp_unregister_send_receive(kdp_send_t send, kdp_receive_t receive);
H A Dkdp_udp.c275 /* only send/receive data if the link is up */
323 kdp_send_t send,
333 kdp_en_send_pkt = send;
380 __unused kdp_send_t send,
1075 * send a sideband reply for that. for successful connects,
2087 * the next time we send/receive a KDP packet. We don't do it on
322 kdp_register_send_receive( kdp_send_t send, kdp_receive_t receive) argument
379 kdp_unregister_send_receive( __unused kdp_send_t send, __unused kdp_receive_t receive) argument
/darwin-on-arm/xnu/bsd/netat/
H A Dadsp_Timer.c112 goto send;
131 goto send;
136 goto send;
141 goto send;
152 goto send;
167 goto send;
179 send:
H A Dadsp_Packet.c108 * What to send (Ack or Req+Ack)
119 char send; /* What to send in response member in struct:__anon316
564 * The open request has been denied. Try to send him a denial.
674 if (m.t->send) { /* Need to send a response */
675 sp->sendCtl |= m.t->send;
829 if (sp && sp->callSend) /* If we have a stream & we need to send */
/darwin-on-arm/xnu/bsd/sys/
H A Dsys_domain.h86 ctl_send_func send; /* Send data to nke */ member in struct:kctl
H A Dsocket.h207 #define SO_SNDBUF 0x1001 /* send buffer size */
209 #define SO_SNDLOWAT 0x1003 /* send low-water mark */
211 #define SO_SNDTIMEO 0x1005 /* send timeout */
224 #define SO_NWRITE 0x1024 /* APPLE: Get number of bytes currently in send socket buffer */
227 #define SO_NOTIFYCONFLICT 0x1026 /* APPLE: send notification if there is a bind on a port which is already in use */
733 #define MSG_DONTROUTE 0x4 /* send without using routing tables */
942 ssize_t send(int, const void *, size_t, int) __DARWIN_ALIAS_C(send); variable
/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_output.c180 &tcp_do_autosendbuf, 1, "Enable send socket buffer auto-tuning");
184 &tcp_autosndbuf_inc, 1, "Increment in send socket bufffer size");
188 &tcp_autosndbuf_max, 1, "Maximum send socket buffer size");
240 * Tcp output routine: figure out what should be sent and send it.
311 * to send, then transmit; otherwise, investigate further.
474 * to send out new data (when sendalot is 1), bypass this function.
546 * If in persist timeout with window of 0, send 1 byte.
548 * and timer expired, we will send what we can
554 * If we still have some data to send, then
566 * to send the
[all...]
H A Dip_output.c499 * We must not send if the packet is destined to network zero.
702 * to send out undirected IP broadcast packets using
912 * to send. The multicast forwarding function
976 * and verify user is allowed to send
1031 /* No more packet; send down the chain */
1184 DTRACE_IP6(send, struct mbuf *, m, struct inpcb *, NULL,
1356 * (off & IP_FW_PORT_DYNT_FLAG) -> send to a DUMMYNET pipe
1672 * care of the fragmentation for us, can just send directly.
1722 //send
1929 * and updating header, then send eac
[all...]
/darwin-on-arm/xnu/bsd/man/man2/
H A DMakefile157 send.2 \
/darwin-on-arm/xnu/osfmk/kern/
H A Ddebug.c676 kdp_register_send_receive(__unused void *send, __unused void *receive) argument
680 kdp_unregister_send_receive(__unused void *send, __unused void *receive) argument
/darwin-on-arm/xnu/bsd/net/
H A Dbpf.h515 used to send a raw packet on the interface. The mbuf and data
574 u_int32_t header_length, bpf_send_func send, bpf_tap_func tap);
H A Dbpf.c2252 bpf_send_func send,
2286 bp_new->bif_send = send;
2248 bpf_attach( ifnet_t ifp, u_int32_t dlt, u_int32_t hdrlen, bpf_send_func send, bpf_tap_func tap) argument
H A Ddlil.c2193 * there are still packets in the send queue which haven't
3304 DTRACE_IP6(send, struct mbuf *, m, struct inpcb *, NULL,
3310 DTRACE_IP6(send, struct mbuf*, m, struct inpcb *, NULL,
3745 * send the request on all interfaces. The exception is
4822 /* Drain send queue */
5136 /* Last chance to drain send queue */
5392 /* for send data paths */
/darwin-on-arm/xnu/osfmk/mach/
H A Dmessage.h156 * It must specify a valid send or send-once right for a port.
159 * This field carries a send-once right that the receiver will use
161 * MACH_PORT_DEAD, a send-once right, or a send right.
183 #define MACH_MSG_TYPE_MOVE_SEND 17 /* Must hold send rights */
185 #define MACH_MSG_TYPE_COPY_SEND 19 /* Must hold send rights */
505 mach_msg_empty_send_t send; member in union:__anon1264
523 * temporal conditions may cause unpredictable send failures
527 * the scope of send timeou
[all...]
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_control.c462 if (error == 0 && kctl->send) {
464 error = (*kctl->send)(kctl, kcb->unit, kcb->userdata, m, flags);
795 /* Let the caller know the default send and receive sizes */
806 kctl->send = userkctl->ctl_send;
H A Dkern_descrip.c2026 * if this is a vnode, we send it down into the VNOP_IOCTL
2028 * effectively overload fcntl() to send ioctl()'s.
4783 * Description: Obtain a Mach send right for a given file descriptor.
4796 * On success, name of send right is stored at user-specified address.
4878 * Description: Obtain the file descriptor for a given Mach send right.
4881 * uap->port Name of send right to file port.
4897 mach_port_name_t send = uap->port; local
4903 send, MACH_MSG_TYPE_COPY_SEND, &port);
5342 * The ability to send a file descriptor to another
/darwin-on-arm/xnu/osfmk/ipc/
H A Dipc_kmsg.c415 mach_msg_descriptor_t *saddr, *send; local
421 send = saddr + body->msgh_descriptor_count;
423 for ( ; saddr < send; saddr++ ) {
1384 * Call the server routine, and get the reply message to send.
1406 * a send-once notification.
1614 * We do the port send check here instead of in ipc_kmsg_send()
1616 * and we need to do the send check before anything is actually copied.
1647 * make-send or make-sonce, then we must be looking
1650 * copy-send and make-send
3813 mach_msg_descriptor_t *sstart, *send; local
[all...]
/darwin-on-arm/xnu/bsd/security/audit/
H A Daudit_session.c1206 * Description: Obtain a Mach send right for the current session.
1210 * Returns: *ret_port Named Mach send right, which may be
1252 * Get a send right to the session's Mach port and insert it in the
1269 * Description: Obtain a Mach send right for the given session ID.
1463 * Description: Join the session for a given Mach port send right.
1466 * uap->port A Mach send right.
1482 mach_port_name_t send = uap->port; local
1486 if (ipc_object_copyin(get_task_ipcspace(p->task), send,
/darwin-on-arm/xnu/bsd/netinet6/
H A Dip6_output.c871 DTRACE_IP6(send, struct mbuf *, m, struct inpcb *, NULL,
1083 * to send. The multicast forwarding function
1207 * XXX: if we have to send an ICMPv6 error to the sender,
1276 * 1-a: send as is if tlen <= path mtu
1280 * 2-a: send as is if tlen <= interface mtu
1308 * Even if the DONTFRAG option is specified, we cannot send the

Completed in 202 milliseconds