Home
last modified time | relevance | path

Searched refs:rap (Results 1 – 21 of 21) sorted by relevance

/NextBSD/contrib/smbfs/lib/smb/
HDrap.c154 smb_rap_rqparam_z(struct smb_rap *rap, const char *value) in smb_rap_rqparam_z() argument
158 bcopy(value, rap->r_npbuf, len); in smb_rap_rqparam_z()
159 rap->r_npbuf += len; in smb_rap_rqparam_z()
160 rap->r_plen += len; in smb_rap_rqparam_z()
165 smb_rap_rqparam(struct smb_rap *rap, char ptype, char plen, long value) in smb_rap_rqparam() argument
167 char *p = rap->r_npbuf; in smb_rap_rqparam()
186 rap->r_npbuf += len; in smb_rap_rqparam()
187 rap->r_plen += len; in smb_rap_rqparam()
195 struct smb_rap *rap; in smb_rap_create() local
199 rap = malloc(sizeof(*rap)); in smb_rap_create()
[all …]
HDMakefile12 SRCS= rcfile.c ctx.c cfopt.c subr.c nls.c rap.c mbuf.c rq.c file.c \
/NextBSD/sys/contrib/ipfilter/netinet/
HDip_raudio_pxy.c59 raudio_t *rap; local
71 rap = aps->aps_data;
73 rap->rap_mode = RAP_M_TCP; /* default is for TCP */
86 raudio_t *rap = aps->aps_data; local
100 if (rap->rap_eos == 1)
128 if (rap->rap_seenpna == 0) {
133 rap->rap_seenpna = 1;
141 if (rap->rap_seenpna == 1 && rap->rap_seenver == 0) {
143 rap->rap_version = (*s << 8) | *(s + 1);
145 rap->rap_seenver = 1;
[all …]
/NextBSD/sys/net80211/
HDieee80211_ht.c515 ampdu_rx_purge(struct ieee80211_rx_ampdu *rap) in ampdu_rx_purge() argument
520 for (i = 0; i < rap->rxa_wnd; i++) { in ampdu_rx_purge()
521 m = rap->rxa_m[i]; in ampdu_rx_purge()
523 rap->rxa_m[i] = NULL; in ampdu_rx_purge()
524 rap->rxa_qbytes -= m->m_pkthdr.len; in ampdu_rx_purge()
526 if (--rap->rxa_qframes == 0) in ampdu_rx_purge()
530 KASSERT(rap->rxa_qbytes == 0 && rap->rxa_qframes == 0, in ampdu_rx_purge()
532 rap->rxa_qbytes, rap->rxa_qframes)); in ampdu_rx_purge()
539 ampdu_rx_start(struct ieee80211_node *ni, struct ieee80211_rx_ampdu *rap, in ampdu_rx_start() argument
544 if (rap->rxa_flags & IEEE80211_AGGR_RUNNING) { in ampdu_rx_start()
[all …]
HDieee80211_ddb.c224 _db_show_rxampdu(const char *sep, int ix, const struct ieee80211_rx_ampdu *rap) in _db_show_rxampdu() argument
229 sep, ix, rap, rap->rxa_flags, ix /*XXX */); in _db_show_rxampdu()
231 sep, rap->rxa_qbytes, rap->rxa_qframes, in _db_show_rxampdu()
232 rap->rxa_seqstart, rap->rxa_start, rap->rxa_wnd); in _db_show_rxampdu()
234 rap->rxa_age, rap->rxa_nframes); in _db_show_rxampdu()
236 if (rap->rxa_m[i] != NULL) in _db_show_rxampdu()
238 IEEE80211_SEQ_ADD(rap->rxa_start, i), in _db_show_rxampdu()
239 rap->rxa_m[i]); in _db_show_rxampdu()
HDieee80211_input.h176 struct ieee80211_rx_ampdu *rap; in ieee80211_check_rxseq() local
197 rap = &ni->ni_rx_ampdu[tid]; in ieee80211_check_rxseq()
200 (rap->rxa_flags & IEEE80211_AGGR_RUNNING)) in ieee80211_check_rxseq()
/NextBSD/sys/dev/le/
HDif_le_isa.c143 bus_size_t rap; member
216 lesc->sc_rap = leip->rap; in le_isa_probe_legacy()
263 bus_size_t macstart, rap, rdp; in le_isa_attach() local
276 rap = PCNET_RAP; in le_isa_attach()
288 rap = le_isa_params[i].rap; in le_isa_attach()
309 lesc->sc_rap = rap; in le_isa_attach()
/NextBSD/sys/dev/mpt/
HDmpt_user.c527 MSG_RAID_ACTION_REQUEST *rap; in mpt_user_raid_action() local
534 rap = req->req_vbuf; in mpt_user_raid_action()
535 memset(rap, 0, sizeof *rap); in mpt_user_raid_action()
536 rap->Action = raid_act->action; in mpt_user_raid_action()
537 rap->ActionDataWord = raid_act->action_data_word; in mpt_user_raid_action()
538 rap->Function = MPI_FUNCTION_RAID_ACTION; in mpt_user_raid_action()
539 rap->VolumeID = raid_act->volume_id; in mpt_user_raid_action()
540 rap->VolumeBus = raid_act->volume_bus; in mpt_user_raid_action()
541 rap->PhysDiskNum = raid_act->phys_disk_num; in mpt_user_raid_action()
542 se = (SGE_SIMPLE32 *)&rap->ActionDataSGE; in mpt_user_raid_action()
[all …]
HDmpt_raid.c556 MSG_RAID_ACTION_REQUEST *rap; in mpt_raid_reply_frame_handler() local
560 rap = (MSG_RAID_ACTION_REQUEST *)req->req_vbuf; in mpt_raid_reply_frame_handler()
562 switch (rap->Action) { in mpt_raid_reply_frame_handler()
588 MSG_RAID_ACTION_REQUEST *rap; in mpt_issue_raid_req() local
591 rap = req->req_vbuf; in mpt_issue_raid_req()
592 memset(rap, 0, sizeof *rap); in mpt_issue_raid_req()
593 rap->Action = Action; in mpt_issue_raid_req()
594 rap->ActionDataWord = htole32(ActionDataWord); in mpt_issue_raid_req()
595 rap->Function = MPI_FUNCTION_RAID_ACTION; in mpt_issue_raid_req()
596 rap->VolumeID = vol->config_page->VolumeID; in mpt_issue_raid_req()
[all …]
/NextBSD/contrib/tcp_wrappers/
HDsocket.c177 char *ap = NULL, *rap, hname[NI_MAXHOST]; local
289 rap = (char *)&((struct sockaddr_in *)res->ai_addr)->sin_addr;
297 rap = (char *)&((struct sockaddr_in6 *)res->ai_addr)->sin6_addr;
302 if (memcmp(rap, ap, alen) == 0) {
/NextBSD/lib/libsmb/
HDMakefile12 SRCS= rcfile.c ctx.c cfopt.c subr.c nls.c rap.c mbuf.c rq.c file.c \
/NextBSD/sys/dev/mwl/
HDif_mwl.c2305 mwl_ampdu_rxdma_reclaim(struct ieee80211_rx_ampdu *rap) in mwl_ampdu_rxdma_reclaim() argument
2312 n = rap->rxa_qframes; in mwl_ampdu_rxdma_reclaim()
2313 for (i = 0; i < rap->rxa_wnd && n > 0; i++) { in mwl_ampdu_rxdma_reclaim()
2314 m = rap->rxa_m[i]; in mwl_ampdu_rxdma_reclaim()
2382 struct ieee80211_rx_ampdu *rap; in mwl_node_drain() local
2384 rap = &ni->ni_rx_ampdu[tid]; in mwl_node_drain()
2385 if ((rap->rxa_flags & IEEE80211_AGGR_XCHGPEND) == 0) in mwl_node_drain()
2387 if (rap->rxa_qframes) in mwl_node_drain()
2388 mwl_ampdu_rxdma_reclaim(rap); in mwl_node_drain()
/NextBSD/share/misc/
HDiso639395 rap rap Rapanui
/NextBSD/etc/
HDservices81 rap 38/tcp #Route Access Protocol
82 rap 38/udp #Route Access Protocol
473 rap 256/tcp
474 rap 256/udp
1919 rap-service 1530/tcp
1920 rap-service 1530/udp
1921 rap-listen 1531/tcp
1922 rap-listen 1531/udp
/NextBSD/sys/dev/iwn/
HDif_iwn.c7179 iwn_ampdu_rx_start(struct ieee80211_node *ni, struct ieee80211_rx_ampdu *rap, in iwn_ampdu_rx_start() argument
7207 return sc->sc_ampdu_rx_start(ni, rap, baparamset, batimeout, baseqctl); in iwn_ampdu_rx_start()
7216 iwn_ampdu_rx_stop(struct ieee80211_node *ni, struct ieee80211_rx_ampdu *rap) in iwn_ampdu_rx_stop() argument
7229 if (&ni->ni_rx_ampdu[tid] == rap) in iwn_ampdu_rx_stop()
7240 sc->sc_ampdu_rx_stop(ni, rap); in iwn_ampdu_rx_stop()
/NextBSD/usr.bin/fortune/datfiles/
HDzippy993 Psychoanalysis?? I thought this was a nude rap session!!!
HDfortunes2298 If you rap your knuckles against a window jamb or door, if you
5866 stuff, and use instead, if film-strips and rap-sessions must be
/NextBSD/contrib/gcc/
HDFSFChangeLog.117760 * sh.h (REG_CLASS_CONTENTS): Add rap to GENERAL_REGS and its
11101 (REGISTER_NAMES): Add rap.
HDChangeLog-200228181 (INITIAL_ELIMINATION_OFFSET): Adjust for elimination of rap to
28283 * config/mips/mips.h (CAN_ELIMINATE): Don't eliminate rap to $fp
/NextBSD/share/dict/
HDweb2a45957 rap-full
45973 rap shot
47646 rip-rap
HDweb2163265 rap