Searched refs:sid (Results 76 - 100 of 134) sorted by relevance

123456

/freebsd-11-stable/sys/dev/glxsb/
H A Dglxsb.c624 uint32_t sid = ((uint32_t)tid) & 0xffffffff; local
631 if (ses->ses_id == sid)
642 ses->ses_id = sid;
867 uint32_t sid; local
914 sid = crp->crp_sid & 0xffffffff;
917 if (ses->ses_id == sid)
/freebsd-11-stable/contrib/binutils/
H A DMakefile.def99 host_modules= { module= sid; };
399 dependencies = { module=all-sid; on=all-libiberty; };
400 dependencies = { module=all-sid; on=all-bfd; };
401 dependencies = { module=all-sid; on=all-opcodes; };
402 dependencies = { module=all-sid; on=all-tcl; };
403 dependencies = { module=all-sid; on=all-tk; };
404 dependencies = { module=install-sid; on=install-tcl; };
405 dependencies = { module=install-sid; on=install-tk; };
H A DMakefile.in651 maybe-configure-sid \
799 all-host: maybe-all-sid
914 info-host: maybe-info-sid
1020 dvi-host: maybe-dvi-sid
1126 pdf-host: maybe-pdf-sid
1232 html-host: maybe-html-sid
1338 TAGS-host: maybe-TAGS-sid
1444 install-info-host: maybe-install-info-sid
1550 install-pdf-host: maybe-install-pdf-sid
1656 install-html-host: maybe-install-html-sid
[all...]
/freebsd-11-stable/contrib/openbsm/libbsm/
H A Dbsm_io.c2543 READ_TOKEN_U_INT32(buf, len, tok->tt.proc32.sid, tok->len, err);
2583 open_attr(fp, "sid");
2584 print_4_bytes(fp, tok->tt.proc32.sid, "%u");
2605 print_4_bytes(fp, tok->tt.proc32.sid, "%u");
2655 READ_TOKEN_U_INT32(buf, len, tok->tt.proc64.sid, tok->len, err);
2694 open_attr(fp, "sid");
2695 print_4_bytes(fp, tok->tt.proc64.sid, "%u");
2716 print_4_bytes(fp, tok->tt.proc64.sid, "%u");
2767 READ_TOKEN_U_INT32(buf, len, tok->tt.proc32_ex.sid, tok->len, err);
2821 open_attr(fp, "sid");
[all...]
/freebsd-11-stable/sys/dev/nsp/
H A Dnsp.c1205 u_int sid; local
1208 sid = (u_int) nsp_cr_read_1(sc->port_res, NSPR_RESELR);
1209 sid &= ~sc->sc_idbit;
1210 sid = ffs(sid) - 1;
1211 if ((ti = scsi_low_reselected(slp, sid)) == NULL)
/freebsd-11-stable/sys/netgraph/
H A Dng_pppoe.c552 CTR2(KTR_NET, "%20s: new sid %d", __func__, val);
585 uint16_t session = ntohs(wh->ph.sid);
893 neg->pkt->pkt_header.ph.sid = 0x0000;
1475 session = ntohs(wh->ph.sid);
1636 session = ntohs(wh->ph.sid);
1788 neg->pkt->pkt_header.ph.sid =
1857 neg->pkt->pkt_header.ph.sid = wh->ph.sid;
1858 sp->Session_ID = ntohs(wh->ph.sid);
/freebsd-11-stable/sys/dev/sound/pci/hda/
H A Dhdaa.h233 int sid; member in struct:hdaa_chan
/freebsd-11-stable/contrib/wpa/src/eap_peer/
H A Deap_gpsk.c751 u8 *sid; local
756 sid = os_memdup(data->session_id, data->id_len);
757 if (sid == NULL)
761 return sid;
/freebsd-11-stable/contrib/wpa/src/pae/
H A Dieee802_1x_kay_i.h72 const u8 *mac2, const u8 *sid, size_t sid_len, u8 *ckn);
/freebsd-11-stable/sys/netinet/
H A Dsctp_structs.h394 uint16_t sid; /* the stream number of this guy */ member in struct:sctp_data_chunkrec
529 uint16_t sid; member in struct:sctp_stream_queue_pending
550 uint16_t sid; member in struct:sctp_stream_in
633 uint16_t sid; member in struct:sctp_stream_out
H A Dsctp_timer.c438 if (asoc->strmout[chk->rec.data.sid].chunks_on_queues > 0) {
439 asoc->strmout[chk->rec.data.sid].chunks_on_queues--;
442 if ((asoc->strmout[chk->rec.data.sid].chunks_on_queues == 0) &&
443 (asoc->strmout[chk->rec.data.sid].state == SCTP_STREAM_RESET_PENDING) &&
444 TAILQ_EMPTY(&asoc->strmout[chk->rec.data.sid].outqueue)) {
H A Dsctp_ss_functions.c318 while (strqt != NULL && (strqt->sid < strq->sid)) {
913 strq = &asoc->strmout[sp->sid];
H A Dsctputil.c1232 asoc->strmout[i].sid = i;
3075 ssfe->ssfe_info.snd_sid = chk->rec.data.sid;
3093 ssf->ssf_info.sinfo_stream = chk->rec.data.sid;
3182 ssfe->ssfe_info.snd_sid = sp->sid;
3200 ssf->ssf_info.sinfo_stream = sp->sid;
3959 if (asoc->strmout[chk->rec.data.sid].chunks_on_queues > 0) {
3960 asoc->strmout[chk->rec.data.sid].chunks_on_queues--;
3963 panic("No chunks on the queues for sid %u.", chk->rec.data.sid);
3983 if (asoc->strmout[chk->rec.data.sid]
4795 uint16_t sid; local
[all...]
/freebsd-11-stable/crypto/openssh/
H A Dmux.c1817 u_int i, rid, sid, esid, exitval, type, exitval_seen; local
1889 sid = buffer_get_int(&m);
1890 debug("%s: master session id: %u", __func__, sid);
1937 if ((esid = buffer_get_int(&m)) != sid)
1940 __func__, sid, esid);
1946 if ((esid = buffer_get_int(&m)) != sid)
1949 __func__, sid, esid);
2020 u_int type, rid, sid; local
2078 sid = buffer_get_int(&m);
2079 debug("%s: master session id: %u", __func__, sid);
[all...]
/freebsd-11-stable/sys/dev/firewire/
H A Dfirewire.c1266 fw_print_sid(uint32_t sid) argument
1269 s = (union fw_self_id *) &sid;
1298 void fw_sidrcv(struct firewire_comm *fc, uint32_t *sid, u_int len) argument
1316 if (sid[1] != ~sid[0]) {
1319 sid += 2;
1322 *self_id = *((union fw_self_id *)sid);
1328 fw_print_sid(sid[0]);
1353 sid += 2;
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-l2c-defs.h3676 uint64_t sid : 6; /**< XMC sid of request causing error */ member in struct:cvmx_l2c_err_xmc::cvmx_l2c_err_xmc_s
3682 uint64_t sid : 6;
3691 uint64_t sid : 4; /**< XMC sid of request causing error */ member in struct:cvmx_l2c_err_xmc::cvmx_l2c_err_xmc_cn61xx
3697 uint64_t sid : 4;
3708 uint64_t sid : 5; /**< XMC sid of request causing error */ member in struct:cvmx_l2c_err_xmc::cvmx_l2c_err_xmc_cn66xx
3714 uint64_t sid : 5;
4318 uint64_t sid member in struct:cvmx_l2c_lfb0::cvmx_l2c_lfb0_s
4354 uint64_t sid : 9; /**< LFB Source ID */ member in struct:cvmx_l2c_lfb0::cvmx_l2c_lfb0_cn30xx
4393 uint64_t sid : 9; /**< LFB Source ID */ member in struct:cvmx_l2c_lfb0::cvmx_l2c_lfb0_cn31xx
4433 uint64_t sid : 9; /**< LFB Source ID */ member in struct:cvmx_l2c_lfb0::cvmx_l2c_lfb0_cn50xx
[all...]
/freebsd-11-stable/sys/dev/isp/
H A Disp_freebsd.c913 chan, atp->tag, atp->orig_datalen, atp->bytes_xfered, (uintmax_t)atp->lun, atp->nphdl, atp->sid, atp->did, atp->oxid, states[atp->state & 0x7]);
1247 cto->ct_iid_lo = atp->sid;
1248 cto->ct_iid_hi = atp->sid >> 16;
1758 atp->sid = PORT_ANY;
1782 uint32_t did, sid; local
1791 sid = (aep->at_hdr.s_id[0] << 16) | (aep->at_hdr.s_id[1] << 8) | aep->at_hdr.s_id[2];
1812 if (isp_find_pdb_by_portid(isp, chan, sid, &lp) == 0) {
1817 __func__, aep->at_rxid, did, chan, sid);
1869 aep->at_rxid, nphdl, sid, aep->at_hdr.ox_id, oatp->state);
1921 atp->sid
2232 uint32_t sid; local
[all...]
/freebsd-11-stable/sys/mips/nlm/dev/sec/
H A Dnlmrsa.c377 u_int32_t sid = CRYPTO_SESID2LID(tid); local
382 session = XLP_RSA_SESSION(sid);
/freebsd-11-stable/sys/mips/rmi/dev/sec/
H A Drmilib.h600 #define XLR_SEC_SESSION(sid) ((sid) & 0x000007ff)
H A Drmisec.c289 u_int32_t sid = CRYPTO_SESID2LID(tid); local
294 session = XLR_SEC_SESSION(sid);
/freebsd-11-stable/sys/dev/iscsi_initiator/
H A Discsivar.h49 printf("%d] %s: " fmt "\n", sp->sid, __func__ , ##args);} while(0)
139 int sid; // Session ID member in struct:isc_session
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp1286 SymbolRef sid, RefVal V,
1306 return removeRefBinding(state, sid);
1308 Leaked.push_back(sid);
1309 return setRefBinding(state, sid, V ^ RefVal::ErrorLeak);
1285 handleSymbolDeath(ProgramStateRef state, SymbolRef sid, RefVal V, SmallVectorImpl<SymbolRef> &Leaked) const argument
H A DRetainCountChecker.h348 SymbolRef sid, RefVal V,
/freebsd-11-stable/sys/dev/ct/
H A Dct.c746 u_int sid; local
755 sid = regv & SIDR_IDM;
756 if ((ti = scsi_low_reselected(slp, sid)) == NULL)
/freebsd-11-stable/contrib/binutils/binutils/
H A Dsrconv.c750 dbt.sid = get_member_id (type->u.astructdef.idx);
778 dbt.sid = get_member_id (type->u.astructref.ref->number);
780 dbt.sid = 0;
831 dbt.sid = get_member_id (type->u.aenumdef.idx);
858 dbt.sid = get_member_id (type->u.aenumref.ref->number);

Completed in 545 milliseconds

123456