Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/apr/include/
Dapr_ring.h228 #define APR_RING_SPLICE_BEFORE(lep, ep1, epN, link) do { \ argument
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); \
245 #define APR_RING_SPLICE_AFTER(lep, ep1, epN, link) do { \ argument
246 APR_RING_PREV((ep1), link) = (lep); \
247 APR_RING_NEXT((epN), link) = APR_RING_NEXT((lep), link); \
248 APR_RING_PREV(APR_RING_NEXT((lep), link), link) = (epN); \
249 APR_RING_NEXT((lep), link) = (ep1); \
[all …]
/freebsd-12-stable/sys/dev/cxgbe/iw_cxgbe/
Dcm.c127 add_ep_to_listenlist(struct c4iw_listen_ep *lep);
128 static int rem_ep_from_listenlist(struct c4iw_listen_ep *lep);
268 add_ep_to_listenlist(struct c4iw_listen_ep *lep) in add_ep_to_listenlist() argument
272 struct sockaddr_storage *laddr = &lep->com.local_addr; in add_ep_to_listenlist()
293 list_add_tail(&lep->listen_ep_list, &port_info->lep_list); in add_ep_to_listenlist()
299 rem_ep_from_listenlist(struct c4iw_listen_ep *lep) in rem_ep_from_listenlist() argument
303 struct sockaddr_storage *laddr = &lep->com.local_addr; in rem_ep_from_listenlist()
318 list_del(&lep->listen_ep_list); in rem_ep_from_listenlist()
340 struct c4iw_listen_ep *lep = NULL; in find_real_listen_ep() local
382 list_for_each_entry(lep, &port_info->lep_list, listen_ep_list) { in find_real_listen_ep()
[all …]
/freebsd-12-stable/sbin/mount_fusefs/
Dmount_fusefs.c356 char *ndevbas, *lep; in main() local
369 strtol(ndevbas + 4, &lep, 10); in main()
370 if (*lep != '\0') in main()
/freebsd-12-stable/sbin/restore/
Dsymtab.c531 struct entry *baseep, *lep; in initsymtable() local
599 lep = (struct entry *)entry; in initsymtable()
605 for (ep = &baseep[1]; ep < lep; ep++) { in initsymtable()
/freebsd-12-stable/sys/netgraph/bluetooth/hci/
Dng_hci_evnt.c578 ng_hci_le_ep *lep; in le_event() local
580 NG_HCI_M_PULLUP(event, sizeof(*lep)); in le_event()
584 lep = mtod(event, ng_hci_le_ep *); in le_event()
585 m_adj(event, sizeof(*lep)); in le_event()
586 switch(lep->subevent_code){ in le_event()
/freebsd-12-stable/sys/compat/linprocfs/
Dlinprocfs.c416 const char *lep; in linprocfs_domtab() local
427 lep = linux_emul_path; in linprocfs_domtab()
430 lep = dlep; in linprocfs_domtab()
433 lep_len = strlen(lep); in linprocfs_domtab()
450 if (strncmp(mntto, lep, lep_len) == 0 && mntto[lep_len] == '/') in linprocfs_domtab()
/freebsd-12-stable/sys/netinet/
Dsctputil.c6732 struct sctp_inpcb *lep; in sctp_bindx_add_address() local
6816 lep = sctp_pcb_findep(addr_to_use, 1, 0, vrf_id); in sctp_bindx_add_address()
6817 if (lep == NULL) { in sctp_bindx_add_address()
6822 if (lep != inp) { in sctp_bindx_add_address()
6825 SCTP_INP_DECR_REF(lep); in sctp_bindx_add_address()