Searched refs:lep (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/apr/include/
H A Dapr_ring.h219 * Splice the sequence ep1..epN into the ring before element lep
220 * (..lep.. becomes ..ep1..epN..lep..)
223 * @param lep Element in the ring to splice before
228 #define APR_RING_SPLICE_BEFORE(lep, ep1, epN, link) do { \
229 APR_RING_NEXT((epN), link) = (lep); \
230 APR_RING_PREV((ep1), link) = APR_RING_PREV((lep), link); \
231 APR_RING_NEXT(APR_RING_PREV((lep), link), link) = (ep1); \
232 APR_RING_PREV((lep), link) = (epN); \
236 * Splice the sequence ep1..epN into the ring after element lep
[all...]
/freebsd-11-stable/sys/dev/cxgbe/iw_cxgbe/
H A Dcm.c125 add_ep_to_listenlist(struct c4iw_listen_ep *lep);
126 static int rem_ep_from_listenlist(struct c4iw_listen_ep *lep);
221 struct list_head lep_list; /* per port lep list */
222 uint32_t refcnt; /* number of lep's listening */
258 * Because of two port adapter, the number of lep's are two(lep1 & lep2) for
261 * Here 'lep1' is always marked as Master lep, because solisten() is always
262 * called through first lep.
266 add_ep_to_listenlist(struct c4iw_listen_ep *lep) argument
270 struct sockaddr_storage *laddr = &lep->com.local_addr;
291 list_add_tail(&lep
297 rem_ep_from_listenlist(struct c4iw_listen_ep *lep) argument
338 struct c4iw_listen_ep *lep = NULL; local
1162 struct c4iw_listen_ep *lep = (struct c4iw_listen_ep *)ep; local
2702 struct c4iw_listen_ep *lep = NULL; local
2776 struct c4iw_listen_ep *lep = to_listen_ep(cm_id); local
[all...]
/freebsd-11-stable/sbin/mount_fusefs/
H A Dmount_fusefs.c348 char *ndevbas, *lep; local
361 strtol(ndevbas + 4, &lep, 10);
362 if (*lep != '\0')
/freebsd-11-stable/sys/netgraph/bluetooth/hci/
H A Dng_hci_evnt.c562 ng_hci_le_ep *lep; local
564 NG_HCI_M_PULLUP(event, sizeof(*lep));
568 lep = mtod(event, ng_hci_le_ep *);
569 m_adj(event, sizeof(*lep));
570 switch(lep->subevent_code){
/freebsd-11-stable/sbin/restore/
H A Dsymtab.c529 struct entry *baseep, *lep; local
597 lep = (struct entry *)entry;
603 for (ep = &baseep[1]; ep < lep; ep++) {
/freebsd-11-stable/sys/compat/linprocfs/
H A Dlinprocfs.c283 const char *lep; local
294 lep = linux_emul_path;
297 lep = dlep;
300 lep_len = strlen(lep);
317 if (strncmp(mntto, lep, lep_len) == 0 && mntto[lep_len] == '/')
/freebsd-11-stable/sys/netinet/
H A Dsctputil.c6606 struct sctp_inpcb *lep; local
6620 lep = sctp_pcb_findep(addr_touse, 1, 0, vrf_id);
6621 if (lep != NULL) {
6627 SCTP_INP_DECR_REF(lep);
6629 if (lep == inp) {
6632 } else if (lep == NULL) {

Completed in 133 milliseconds