Home
last modified time | relevance | path

Searched refs:frp (Results 1 – 15 of 15) sorted by relevance

/illumos-gate/usr/src/cmd/ipf/lib/
H A Dprintportcmp.c12 void printportcmp(pr, frp) in printportcmp() argument
14 frpcmp_t *frp;
19 if (frp->frp_cmp == FR_INRANGE || frp->frp_cmp == FR_OUTRANGE)
20 printf(" port %d %s %d", frp->frp_port,
21 pcmp1[frp->frp_cmp], frp->frp_top);
22 else if (frp->frp_cmp == FR_INCRANGE)
23 printf(" port %d:%d", frp->frp_port, frp->frp_top);
25 printf(" port %s %s", pcmp1[frp->frp_cmp],
26 portname(pr, frp->frp_port));
/illumos-gate/usr/src/lib/smbsrv/libfksmbsrv/common/
H A Dfake_stream.c40 frtn_t *frp = db->db_frtnp; in lastfree() local
45 ASSERT(frp != NULL); in lastfree()
46 frp->free_func(frp->free_arg); in lastfree()
54 esballoca(unsigned char *base, size_t size, uint_t pri, frtn_t *frp) in esballoca() argument
68 db->db_frtnp = frp; in esballoca()
90 esballoca_wait(unsigned char *base, size_t size, uint_t pri, frtn_t *frp) in esballoca_wait() argument
92 return (esballoca(base, size, pri, frp)); in esballoca_wait()
/illumos-gate/usr/src/uts/common/io/fibre-channel/ulp/
H A Dfcip.c1213 while (frp) { in fcip_handle_resume()
1225 frp = frp->fcipr_next; in fcip_handle_resume()
1303 if (frp) { in fcip_rt_update()
1403 frp = frp->fcipr_next; in fcip_lookup_rtable()
1405 return (frp); in fcip_lookup_rtable()
1913 frp = frp->fcipr_next; in fcip_handle_suspend()
1942 frp = frp->fcipr_next; in fcip_handle_suspend()
4220 (frp && FCIP_RTE_UNAVAIL(frp->fcipr_state))) { in fcip_transport()
5796 if (frp == NULL || (frp && (!FCIP_RTE_UNAVAIL(frp->fcipr_state)) && in fcip_get_dest()
5798 (frp && frp->fcipr_pd == NULL)) { in fcip_get_dest()
[all …]
/illumos-gate/usr/src/lib/smbclnt/libfknsmb/common/
H A Dfake_strsubr.c119 frtn_t *frp = dbp->db_frtnp; in mblk_free() local
126 frp->free_func(frp->free_arg); in mblk_free()
H A Dfake_stream.c635 gesballoc(unsigned char *base, size_t size, uint32_t db_rtfu, frtn_t *frp, in gesballoc() argument
641 ASSERT(base != NULL && frp != NULL); in gesballoc()
652 dbp->db_frtnp = frp; in gesballoc()
/illumos-gate/usr/src/uts/common/xen/os/
H A Dxvdi.c2061 comif_ring_fe_t *frp; in xvdi_ring_avail_slots() local
2067 (frp->req_prod_pvt - frp->rsp_cons)); in xvdi_ring_avail_slots()
2090 comif_ring_fe_t *frp; in xvdi_ring_has_incomp_request() local
2093 frp = FRONT_RING(ringp); in xvdi_ring_has_incomp_request()
2101 comif_ring_fe_t *frp; in xvdi_ring_has_unconsumed_responses() local
2104 frp = FRONT_RING(ringp); in xvdi_ring_has_unconsumed_responses()
2105 return (frp->rsp_cons != in xvdi_ring_has_unconsumed_responses()
2113 comif_ring_fe_t *frp; in xvdi_ring_get_request() local
2119 if (!RING_FULL(frp)) in xvdi_ring_get_request()
2146 comif_ring_fe_t *frp; in xvdi_ring_push_request() local
[all …]
/illumos-gate/usr/src/uts/common/ktli/
H A Dt_krcvudat.c184 frtn_t *frp = dbp->db_frtnp; in t_krcvudata() local
190 if (frp != NULL) in t_krcvudata()
191 KTLILOG(2, ", func: %x", frp->free_func); in t_krcvudata()
192 KTLILOG(2, ", arg %x\n", frp->free_arg); in t_krcvudata()
/illumos-gate/usr/src/uts/common/inet/ipf/
H A Dip_auth.c650 frentry_t *fr, **frp; local
680 for (frp = &ifs->ifs_fr_authlist; ((fr = *frp) != NULL); ) {
682 *frp = fr->fr_next;
685 frp = &fr->fr_next;
711 register frentry_t *fr, **frp; local
745 for (frp = &ifs->ifs_fr_authlist; ((fr = *frp) != NULL); ) {
747 *frp = fr->fr_next;
750 frp = &fr->fr_next;
H A Dip_frag.c1001 void fr_fragderef(frp, lock, ifs) in fr_fragderef() argument
1002 ipfr_t **frp; in fr_fragderef()
1008 fra = *frp;
1009 *frp = NULL;
H A Dfil.c1548 static INLINE int fr_portcheck(frp, pop) in fr_portcheck() argument
1549 frpcmp_t *frp; in fr_portcheck()
1556 po = frp->frp_port;
1561 switch (frp->frp_cmp)
1588 if (tup >= po && tup <= frp->frp_top) /* Out of range */
1592 if (tup <= po || tup >= frp->frp_top) /* In range */
1596 if (tup < po || tup > frp->frp_top) /* Inclusive range */
4995 int fr_derefrule(frp, ifs) in fr_derefrule() argument
4996 frentry_t **frp; in fr_derefrule()
5001 fr = *frp;
[all …]
/illumos-gate/usr/src/cmd/fuser/
H A Dfuser.c109 FILE *frp; in spec_to_mount() local
113 if ((frp = fopen(MNTTAB, "r")) == NULL) in spec_to_mount()
118 ret = getmntany(frp, &mget, &mref); in spec_to_mount()
119 (void) fclose(frp); in spec_to_mount()
/illumos-gate/usr/src/uts/common/io/
H A Dstream.c810 frtn_t *frp = dbp->db_frtnp; in dblk_lastfree_desb() local
813 frp->free_func(frp->free_arg); in dblk_lastfree_desb()
859 ASSERT(base != NULL && frp != NULL); in gesballoc()
870 dbp->db_frtnp = frp; in gesballoc()
895 frp, freebs_enqueue, KM_NOSLEEP); in esballoc()
903 frp, freebs_enqueue, KM_NOSLEEP)); in esballoc()
922 frp, freebs_enqueue, KM_SLEEP); in esballoc_wait()
929 frp, freebs_enqueue, KM_SLEEP)); in esballoc_wait()
969 frp, freebs_enqueue, KM_NOSLEEP); in esballoca()
995 frp, freebs_enqueue, KM_SLEEP); in esballoca_wait()
[all …]
/illumos-gate/usr/src/uts/intel/io/dnet/
H A Ddnet.c1604 struct free_ptr *frp; in dnet_getp() local
1711 frp = NULL; in dnet_getp()
1726 frp = kmem_zalloc(sizeof (*frp), KM_NOSLEEP); in dnet_getp()
1727 if (frp != NULL) { in dnet_getp()
1728 frp->free_rtn.free_func = in dnet_getp()
1730 frp->free_rtn.free_arg = (char *)frp; in dnet_getp()
1731 frp->buf = virtual_address; in dnet_getp()
1736 kmem_free(frp, sizeof (*frp)); in dnet_getp()
1738 frp = NULL; in dnet_getp()
2779 dnet_freemsg_buf(struct free_ptr *frp) in dnet_freemsg_buf() argument
[all …]
/illumos-gate/usr/src/uts/common/fs/sockfs/
H A Dsocksubr.c864 frtn_t *frp = mp->b_datap->db_frtnp; in fdbuf_verify() local
877 if (frp != NULL && in fdbuf_verify()
878 frp->free_func == fdbuf_free && in fdbuf_verify()
879 frp->free_arg != NULL && in fdbuf_verify()
880 bcmp(frp->free_arg, fdbuf, fdbuflen) == 0) { in fdbuf_verify()
/illumos-gate/usr/src/uts/common/os/
H A Dstrsubr.c8355 frtn_t *frp = dbp->db_frtnp; in mblk_free() local
8362 frp->free_func(frp->free_arg); in mblk_free()