/titanic_51/usr/src/man/man3slp/ |
H A D | Makefile | 19 MANSECT= 3slp 21 MANFILES= SLPClose.3slp \ 22 SLPDelAttrs.3slp \ 23 SLPDereg.3slp \ 24 SLPEscape.3slp \ 25 SLPFindAttrs.3slp \ 26 SLPFindScopes.3slp \ 27 SLPFindSrvTypes.3slp \ 28 SLPFindSrvs.3slp \ 29 SLPFree.3slp \ [all...] |
/titanic_51/usr/src/uts/common/io/softmac/ |
H A D | softmac_pkt.c | 61 softmac_rput_process_data(softmac_lower_t *slp, mblk_t *mp) in softmac_rput_process_data() argument 66 ASSERT((slp->sl_softmac != NULL)); in softmac_rput_process_data() 84 mac_rx(slp->sl_softmac->smac_mh, NULL, mp); in softmac_rput_process_data() 100 softmac_output(softmac_lower_t *slp, mblk_t *mp, t_uscalar_t dl_prim, in softmac_output() argument 107 mac_perim_enter_by_mh(slp->sl_softmac->smac_mh, &mph); in softmac_output() 109 ASSERT(!slp->sl_pending_ioctl); in softmac_output() 110 ASSERT(slp->sl_pending_prim == DL_PRIM_INVAL); in softmac_output() 115 mutex_enter(&slp->sl_mutex); in softmac_output() 116 slp->sl_pending_prim = dl_prim; in softmac_output() 117 mutex_exit(&slp in softmac_output() 163 softmac_ioctl_tx(softmac_lower_t * slp,mblk_t * mp,mblk_t ** mpp) softmac_ioctl_tx() argument 210 softmac_proto_tx(softmac_lower_t * slp,mblk_t * mp,mblk_t ** mpp) softmac_proto_tx() argument [all...] |
H A D | softmac_ctl.c | 32 softmac_send_notify_req(softmac_lower_t *slp, uint32_t notifications) in softmac_send_notify_req() argument 46 return (softmac_proto_tx(slp, reqmp, NULL)); in softmac_send_notify_req() 50 softmac_send_bind_req(softmac_lower_t *slp, uint_t sap) in softmac_send_bind_req() argument 69 return (softmac_proto_tx(slp, reqmp, NULL)); in softmac_send_bind_req() 73 softmac_send_unbind_req(softmac_lower_t *slp) in softmac_send_unbind_req() argument 85 return (softmac_proto_tx(slp, reqmp, NULL)); in softmac_send_unbind_req() 89 softmac_send_promisc_req(softmac_lower_t *slp, t_uscalar_t level, boolean_t on) in softmac_send_promisc_req() argument 115 return (softmac_proto_tx(slp, reqmp, NULL)); in softmac_send_promisc_req() 122 softmac_lower_t *slp = softmac->smac_lower; in softmac_m_promisc() local 125 ASSERT(slp ! in softmac_m_promisc() 133 softmac_lower_t *slp; softmac_m_multicst() local 178 softmac_lower_t *slp; softmac_m_unicst() local 205 softmac_lower_t *slp = ((softmac_t *)arg)->smac_lower; softmac_m_ioctl() local 304 softmac_lower_t *slp = rq->q_ptr; softmac_enqueue_notify_ind() local 319 softmac_process_dlpi(softmac_lower_t * slp,mblk_t * mp,uint_t minlen,t_uscalar_t reqprim) softmac_process_dlpi() argument 349 softmac_lower_t *slp = rq->q_ptr; softmac_rput_process_proto() local 449 softmac_lower_t *slp = rq->q_ptr; softmac_rput_process_notdata() local [all...] |
H A D | softmac_dev.c | 244 softmac_lower_t *slp; in softmac_cmn_open() local 257 if ((slp = kmem_zalloc(sizeof (*slp), KM_NOSLEEP)) == NULL) in softmac_cmn_open() 260 slp->sl_wq = WR(rq); in softmac_cmn_open() 261 cv_init(&slp->sl_cv, NULL, CV_DRIVER, NULL); in softmac_cmn_open() 262 mutex_init(&slp->sl_mutex, NULL, MUTEX_DRIVER, NULL); in softmac_cmn_open() 263 slp->sl_pending_prim = DL_PRIM_INVAL; in softmac_cmn_open() 264 rq->q_ptr = WR(rq)->q_ptr = slp; in softmac_cmn_open() 282 softmac_lower_t *slp = rq->q_ptr; in softmac_mod_close() local 292 slp in softmac_mod_close() 309 softmac_lower_t *slp = rq->q_ptr; softmac_mod_rput() local 404 softmac_lower_t *slp = wq->q_ptr; softmac_mod_wput() local 437 softmac_lower_t *slp = wq->q_ptr; softmac_mod_wsrv() local [all...] |
H A D | softmac_main.c | 1238 softmac_lower_t *slp = softmac->smac_lower; in softmac_m_start() local 1247 err = softmac_send_bind_req(slp, softmac->smac_media == DL_TPR ? 2 : 0); in softmac_m_start() 1259 err = softmac_send_promisc_req(slp, DL_PROMISC_SAP, B_TRUE); in softmac_m_start() 1261 (void) softmac_send_unbind_req(slp); in softmac_m_start() 1269 if ((err = softmac_capab_enable(slp)) != 0) { in softmac_m_start() 1270 (void) softmac_send_promisc_req(slp, DL_PROMISC_SAP, B_FALSE); in softmac_m_start() 1271 (void) softmac_send_unbind_req(slp); in softmac_m_start() 1282 softmac_lower_t *slp = softmac->smac_lower; in softmac_m_stop() local 1289 (void) softmac_send_promisc_req(slp, DL_PROMISC_SAP, B_FALSE); in softmac_m_stop() 1290 (void) softmac_send_unbind_req(slp); in softmac_m_stop() 1316 softmac_lower_t *slp = NULL; softmac_lower_setup() local 1409 softmac_lower_t *slp; softmac_m_open() local 1425 softmac_lower_t *slp; softmac_m_close() local [all...] |
/titanic_51/usr/src/cmd/sgs/gprof/common/ |
H A D | printlist.c | 50 struct stringlist *slp; in addlist() local 52 slp = malloc(sizeof (struct stringlist)); in addlist() 54 if (slp == NULL) { in addlist() 59 slp->next = listp->next; in addlist() 60 slp->string = funcname; in addlist() 61 listp->next = slp; in addlist() 67 struct stringlist *slp; in onlist() local 69 for (slp = listp->next; slp; slp in onlist() [all...] |
/titanic_51/usr/src/cmd/cmd-inet/usr.lib/pppoe/ |
H A D | options.c | 225 close_service(struct service_list *slp) in close_service() argument 233 assert(slp != NULL); in close_service() 234 psp = slp->sl_parse; in close_service() 241 sep = &slp->sl_entry; in close_service() 256 if (slp == &cfile->pf_global) { in close_service() 284 logdbg("service %s ends", slp->sl_entry.se_name); in close_service() 287 if (slp->sl_dev == NULL) { in close_service() 288 slp->sl_dev = cfile->pf_global.sl_dev; in close_service() 363 set_service(struct service_list *slp, const char *str) in set_service() argument 369 close_service(slp); in set_service() 405 set_wildcard(struct service_list * slp,const char * str) set_wildcard() argument 425 set_debug(struct service_list * slp,const char * str) set_debug() argument 439 set_nodebug(struct service_list * slp,const char * str) set_nodebug() argument 454 set_string(struct service_list * slp,const char * str) set_string() argument 491 set_file(struct service_list * slp,const char * str) set_file() argument 531 set_device(struct service_list * slp,const char * str) set_device() argument 602 set_client(struct service_list * slp,const char * str) set_client() argument 681 set_user(struct service_list * slp,const char * str) set_user() argument 714 set_group(struct service_list * slp,const char * str) set_group() argument 1233 struct service_list *slp; count_per_file() local 1258 struct service_list *slp; per_file_to_list() local 1327 struct service_list *slp; organize_state() local 1456 free_service(struct service_list * slp) free_service() argument 1492 free_service_list(struct service_list * slp) free_service_list() argument [all...] |
/titanic_51/usr/src/cmd/svc/svccfg/ |
H A D | svccfg.y | 124 string_list_t *slp; variable 129 while ((slp = uu_list_teardown($2, &cookie)) != NULL) { 130 free(slp->str); 131 free(slp); 148 string_list_t *slp; variable 156 while ((slp = uu_list_teardown($2, &cookie)) != NULL) { 157 free(slp->str); 158 free(slp); 329 string_list_t *slp; variable 334 while ((slp 435 string_list_t *slp; global() variable 462 string_list_t *slp; global() variable 505 string_list_t *slp; global() variable 524 string_list_t *slp; global() variable 605 string_list_t *slp; global() variable 630 string_list_t *slp; global() variable 647 string_list_t *slp; global() variable [all...] |
/titanic_51/usr/src/cmd/sgs/prof/common/ |
H A D | prof.c | 272 printSnymNames(struct slist *slp, struct snymEntry *snymp) in printSnymNames() argument 279 (void) fputs(slp->sl_name, stdout); in printSnymNames() 284 while ((++slp)->sl_addr != sharedaddr) in printSnymNames() 286 Print(", %s", slp->sl_name); in printSnymNames() 330 struct slist *slp; /* For scanning slist */ in main() local 638 slist = slp = _prof_Malloc(n_syms, sizeof (struct slist)); in main() 658 slp->sl_name = getname(ldptr, nl); in main() 661 slp->sl_addr = (char *)nl.ps_sym.st_value; in main() 662 slp->sl_size = nl.ps_sym.st_size; in main() 665 slp in main() [all...] |
/titanic_51/usr/src/cmd/cmd-inet/usr.sbin/snoop/ |
H A D | snoop_slp.c | 36 #include "slp.h" 166 void interpret_slp(int flags, char *slp, int fraglen) { in interpret_slp() argument 172 p = slp; in interpret_slp() 178 if (add_tcp_cont(tce, slp, fraglen)) { in interpret_slp() 179 slp = tce->msg; in interpret_slp() 185 if (*slp == 2 || tce) in interpret_slp() 186 interpret_slp_v2(flags, (void *)slp, fraglen); in interpret_slp() 188 interpret_slp_v1(flags, (void *)slp, fraglen); in interpret_slp() 689 static int interpret_slp_v2(int flags, struct slpv2_hdr *slp, int fraglen) { in interpret_slp_v2() argument 708 if (v2_header(flags, slp, in interpret_slp_v2() 763 v2_header(int flags,struct slpv2_hdr * slp,int * totallen,int fraglen) v2_header() argument 866 v2_finish(struct slpv2_hdr * slp,int flags) v2_finish() argument 1400 interpret_slp_v1(int flags,struct slpv1_hdr * slp,int fraglen) interpret_slp_v1() argument 1474 v1_header(int flags,struct slpv1_hdr * slp,int fraglen) v1_header() argument [all...] |
/titanic_51/usr/src/pkg/manifests/ |
H A D | service-network-slp.mf | 27 set name=pkg.fmri value=pkg:/service/network/slp@$(PKGVERS) 48 dir path=usr/share/lib/slp 55 file path=etc/inet/slp.conf.example group=sys 56 file path=lib/svc/manifest/network/slp.xml group=sys mode=0444 57 file path=lib/svc/method/slp mode=0555 58 file path=usr/include/slp.h 65 file path=usr/share/lib/slp/slp.jar group=sys 66 file path=usr/share/lib/slp/slpd.jar group=sys mode=0600 69 file path=usr/share/man/man3slp/SLPClose.3slp [all...] |
/titanic_51/usr/src/lib/libslp/etc/ |
H A D | slp.conf.example | 31 # file /etc/inet/slp.conf must exist in order for slpd(1m) to start, 32 # so copy this file to /etc/inet/slp.conf to enable SLP. See 33 # slp.conf(4), slpd(1m), or RFC 2614 for more information. 38 # net.slp.isDA=true 46 # net.slp.useScopes=default 49 # net.slp.useScopes=building17,building18,admin 57 # net.slp.DAAddresses=192.168.1.20,192.168.2.20 65 # net.slp.serializedRegURL=file:/etc/inet/slpd.reg 73 # net.slp.traceDATraffic=true 76 # net.slp [all...] |
/titanic_51/usr/src/lib/libresolv2/common/resolv/ |
H A D | res_mkupdate.c | 959 struct valuelist *slp; in res_buildservicelist() local 967 slp = (struct valuelist *)malloc(sizeof(struct valuelist)); in res_buildservicelist() 968 if (!slp) in res_buildservicelist() 970 slp->name = strdup(sp->s_name); in res_buildservicelist() 971 slp->proto = strdup(sp->s_proto); in res_buildservicelist() 972 if ((slp->name == NULL) || (slp->proto == NULL)) { in res_buildservicelist() 973 if (slp->name) free(slp->name); in res_buildservicelist() 974 if (slp in res_buildservicelist() 990 struct valuelist *slp, *slp_next; res_destroyservicelist() local 1004 struct valuelist *slp; res_buildprotolist() local [all...] |
/titanic_51/usr/src/lib/libtsnet/common/ |
H A D | tsol_sgettpent.c | 75 m_label_t *slp; in get_tn_sl_range() local 84 slp = &range->lower_bound; in get_tn_sl_range() 85 if (str_to_label(min, &slp, MAC_LABEL, L_NO_CORRECTION, NULL) != 0) in get_tn_sl_range() 87 slp = &range->upper_bound; in get_tn_sl_range() 88 if (str_to_label(max, &slp, MAC_LABEL, L_NO_CORRECTION, NULL) != 0) in get_tn_sl_range() 101 m_label_t *labels, *slp; in get_tn_sl_set() local 107 slp = &labels[sc]; in get_tn_sl_set() 108 if (str_to_label(tokp, &slp, MAC_LABEL, L_NO_CORRECTION, in get_tn_sl_set() 142 m_label_t *slp; in parse_remainder() local 157 slp in parse_remainder() [all...] |
/titanic_51/usr/src/grub/grub-0.97/stage2/ |
H A D | fsys_iso9660.c | 264 struct SL_component *slp; in iso9660_dir() 267 slp = &rr_ptr.rr->u.sl.link; in iso9660_dir() 271 switch (slp->flags.l) in iso9660_dir() 274 memcpy(rpnt, slp->text, slp->len); in iso9660_dir() 275 rpnt += slp->len; in iso9660_dir() 289 slp->flags.l); in iso9660_dir() 293 slen -= slp->len + 2; in iso9660_dir() 294 prevflag = slp->flags.l; in iso9660_dir() 295 slp in iso9660_dir() [all...] |
/titanic_51/usr/src/cmd/fm/fmadm/common/ |
H A D | faulty.c | 1338 sr_list_t *slp; in print_catalog() local 1340 slp = status_rec_list; in print_catalog() 1341 if (slp) { in print_catalog() 1343 srp = slp->status_record; in print_catalog() 1349 if (slp->next == status_rec_list) in print_catalog() 1351 slp = slp->next; in print_catalog() 1393 sr_list_t *slp, *end; in print_fru() local 1407 slp = tp->status_rec_list; in print_fru() 1408 end = slp; in print_fru() 1525 sr_list_t *slp, *end; print_asru() local [all...] |
/titanic_51/usr/src/cmd/sendmail/libsm/ |
H A D | t-memstat.c | 47 int r, r2, i, l, slp, sz; local 52 sz = slp = 0; 71 slp = strtol(optarg, NULL, 0); 87 if (slp > 0 && i + 1 < l && 0 == r) 92 sleep(slp);
|
/titanic_51/usr/src/cmd/sgs/rtld/common/ |
H A D | analyze.c | 2622 lookup_sym_interpose(Slookup *slp, Sresult *srp, uint_t *binfo, int *in_nfavl) in lookup_sym_interpose() argument 2658 clmp = slp->sl_cmap; in lookup_sym_interpose() 2695 SRESULT_INIT(sr, slp->sl_name); in lookup_sym_interpose() 2696 sl = *slp; in lookup_sym_interpose() 2729 sl = *slp; in lookup_sym_interpose() 2760 SRESULT_INIT(sr, slp->sl_name); in lookup_sym_interpose() 2795 lookup_sym_direct(Slookup *slp, Sresult *srp, uint_t *binfo, Syminfo *sip, in lookup_sym_direct() argument 2798 Rt_map *dlmp, *clmp = slp->sl_cmap; in lookup_sym_direct() 2817 if (((slp->sl_flags & LKUP_COPY) == 0) && in lookup_sym_direct() 2819 slp in lookup_sym_direct() 2903 core_lookup_sym(Rt_map * ilmp,Slookup * slp,Sresult * srp,uint_t * binfo,Aliste off,int * in_nfavl) core_lookup_sym() argument 2930 rescan_lazy_find_sym(Rt_map * ilmp,Slookup * slp,Sresult * srp,uint_t * binfo,int * in_nfavl) rescan_lazy_find_sym() argument 2949 _lookup_sym(Slookup * slp,Sresult * srp,uint_t * binfo,int * in_nfavl) _lookup_sym() argument 3169 lookup_sym(Slookup * slp,Sresult * srp,uint_t * binfo,int * in_nfavl) lookup_sym() argument [all...] |
H A D | elf.c | 361 elf_lazy_load(Rt_map *clmp, Slookup *slp, uint_t ndx, const char *sym, in elf_lazy_load() argument 414 pdip->di_info = (void *)slp->sl_id; in elf_lazy_load() 767 elf_null_find_sym(Slookup *slp, Sresult *srp, uint_t *binfo, int *in_nfavl) in elf_null_find_sym() argument 817 _elf_lookup_filtee(Slookup *slp, Sresult *srp, uint_t *binfo, uint_t ndx, argument 820 const char *name = slp->sl_name, *filtees; 821 Rt_map *clmp = slp->sl_cmap; 822 Rt_map *ilmp = slp->sl_imap; 1187 Slookup sl = *slp; 1278 elf_lookup_filtee(Slookup *slp, Sresult *srp, uint_t *binfo, uint_t ndx, argument 1281 Dyninfo *dip = &DYNINFO(slp 1346 elf_find_sym(Slookup * slp,Sresult * srp,uint_t * binfo,int * in_nfavl) global() argument 2685 elf_lazy_find_sym(Slookup * slp,Sresult * srp,uint_t * binfo,int * in_nfavl) global() argument [all...] |
H A D | a.out.c | 444 aout_lookup_sym(Slookup *slp, Sresult *srp, uint_t *binfo, int *in_nfavl) in aout_lookup_sym() argument 447 Slookup sl = *slp; in aout_lookup_sym() 449 DBG_CALL(Dbg_syms_lookup_aout(LIST(slp->sl_cmap), slp->sl_name)); in aout_lookup_sym() 473 aout_find_sym(Slookup *slp, Sresult *srp, uint_t *binfo, int *in_nfavl) in aout_find_sym() argument 475 const char *name = slp->sl_name; in aout_find_sym() 476 Rt_map *ilmp = slp->sl_imap; in aout_find_sym() 481 if (sp = aout_findsb(name, ilmp, slp->sl_flags)) { in aout_find_sym() 681 aout_dlsym_handle(Grp_hdl *ghp, Slookup *slp, Sresult *srp, uint_t *binfo, in aout_dlsym_handle() argument 687 if (dlsym_handle(ghp, slp, sr in aout_dlsym_handle() [all...] |
/titanic_51/usr/src/uts/common/io/fibre-channel/ulp/ |
H A D | fcip.c | 134 static void fcip_dodetach(struct fcipstr *slp); 152 static struct fcipstr *fcip_accept(struct fcipstr *slp, struct fcip *fptr, 2258 struct fcipstr *slp; in fcip_statec_cb() local 2395 for (slp = fcipstrup; slp != NULL; slp = slp->sl_nextp) { in fcip_statec_cb() 2396 if (slp && slp->sl_fcip == fptr) { in fcip_statec_cb() 2397 wrq = WR(slp in fcip_statec_cb() 3301 struct fcipstr *slp, *nslp; fcip_sendup() local 3390 fcip_accept(struct fcipstr * slp,struct fcip * fptr,int type,la_wwn_t * dhostp) fcip_accept() argument 3483 struct fcipstr *slp; fcip_open() local 3575 struct fcipstr *slp; fcip_close() local 3631 fcip_dodetach(struct fcipstr * slp) fcip_dodetach() argument 3694 struct fcipstr *slp; fcip_setipq() local 3739 struct fcipstr *slp = (struct fcipstr *)wq->q_ptr; fcip_ioctl() local 3769 struct fcipstr *slp = (struct fcipstr *)wq->q_ptr; fcip_wput() local 3882 struct fcipstr *slp; fcip_proto() local 4016 struct fcipstr *slp; fcip_wsrv() local 5121 struct fcipstr *slp; fcip_ireq() local 5186 struct fcipstr *slp; fcip_udreq() local 5349 struct fcipstr *slp; fcip_areq() local 5445 struct fcipstr *slp; fcip_dreq() local 5471 struct fcipstr *slp; fcip_breq() local 5532 struct fcipstr *slp; fcip_ubreq() local 5561 struct fcipstr *slp; fcip_pareq() local 5614 struct fcipstr *slp; fcip_spareq() local 5728 struct fcipstr *slp; fcip_dl_ioc_hdr_info() local [all...] |
/titanic_51/usr/src/cmd/cmd-inet/usr.lib/slpd/ |
H A D | slp | 36 CONF=/etc/inet/slp.conf 38 CLASSPATH=/usr/share/lib/slp/slpd.jar 39 MAIN_CLASS=com.sun.slp.slpd
|
/titanic_51/usr/src/uts/common/io/scsi/targets/ |
H A D | ses_safte.c | 789 safte_set_objstat(ses_softc_t *ssc, ses_objarg *obp, int slp) in safte_set_objstat() argument 812 err = set_objstat_sel(ssc, obp, slp); in safte_set_objstat() 841 slotop, slp); in safte_set_objstat() 856 wrslot_stat(ssc, slp); in safte_set_objstat() 868 cc->flag2, 0, slp); in safte_set_objstat() 873 idx - cc->pwroff, 0, 0, slp); in safte_set_objstat() 876 idx - cc->pwroff, 0, 1, slp); in safte_set_objstat() 888 cc->flag2, 0, slp); in safte_set_objstat() 902 (void) wrbuf16(ssc, SAFTE_WT_FANSPD, idx, fsp, 0, slp); in safte_set_objstat() 904 (void) wrbuf16(ssc, SAFTE_WT_FANSPD, idx, 0, 0, slp); in safte_set_objstat() 946 set_objstat_sel(ses_softc_t * ssc,ses_objarg * obp,int slp) set_objstat_sel() argument 1039 wrbuf16(ses_softc_t * ssc,uchar_t op,uchar_t b1,uchar_t b2,uchar_t b3,int slp) wrbuf16() argument 1082 wrslot_stat(ses_softc_t * ssc,int slp) wrslot_stat() argument 1133 perf_slotop(ses_softc_t * ssc,uchar_t slot,uchar_t opflag,int slp) perf_slotop() argument [all...] |
/titanic_51/usr/src/lib/libslp/ |
H A D | Makefile | 37 HDRS=clib/slp.h clib/slp-internal.h clib/slp_net_utils.h clib/slp_ami.h 39 ROOTHDRS= $(ROOTHDRDIR)/slp.h
|
/titanic_51/usr/src/uts/common/avs/ns/nsctl/ |
H A D | nsctl.c | 479 kmutex_t *slp; in nscopen() local 491 slp = nsc_kmem_alloc(sizeof (kmutex_t), 0, _nsc_local_mem); in nscopen() 492 mutex_init(slp, NULL, MUTEX_DRIVER, NULL); in nscopen() 498 _nsc_minor_slp[i] = slp; in nscopen() 506 mutex_destroy(slp); in nscopen() 507 nsc_kmem_free(slp, sizeof (kmutex_t)); in nscopen() 579 kmutex_t *slp; in nscclose() local 585 if ((slp = _nsc_minor_slp[mindev]) == 0) in nscclose() 594 mutex_destroy(slp); in nscclose() 595 nsc_kmem_free(slp, sizeo in nscclose() [all...] |