Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/smbfs/lib/smb/
Drap.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 …]
DMakefile12 SRCS= rcfile.c ctx.c cfopt.c subr.c nls.c rap.c mbuf.c rq.c file.c \
/freebsd-9-stable/sys/contrib/ipfilter/netinet/
Dip_raudio_pxy.c58 raudio_t *rap; local
68 rap = aps->aps_data;
70 rap->rap_mode = RAP_M_TCP; /* default is for TCP */
81 raudio_t *rap = aps->aps_data; local
95 if (rap->rap_eos == 1)
123 if (rap->rap_seenpna == 0) {
128 rap->rap_seenpna = 1;
136 if (rap->rap_seenpna == 1 && rap->rap_seenver == 0) {
138 rap->rap_version = (*s << 8) | *(s + 1);
140 rap->rap_seenver = 1;
[all …]
/freebsd-9-stable/sys/net80211/
Dieee80211_ht.c517 ampdu_rx_purge(struct ieee80211_rx_ampdu *rap) in ampdu_rx_purge() argument
522 for (i = 0; i < rap->rxa_wnd; i++) { in ampdu_rx_purge()
523 m = rap->rxa_m[i]; in ampdu_rx_purge()
525 rap->rxa_m[i] = NULL; in ampdu_rx_purge()
526 rap->rxa_qbytes -= m->m_pkthdr.len; in ampdu_rx_purge()
528 if (--rap->rxa_qframes == 0) in ampdu_rx_purge()
532 KASSERT(rap->rxa_qbytes == 0 && rap->rxa_qframes == 0, in ampdu_rx_purge()
534 rap->rxa_qbytes, rap->rxa_qframes)); in ampdu_rx_purge()
541 ampdu_rx_start(struct ieee80211_node *ni, struct ieee80211_rx_ampdu *rap, in ampdu_rx_start() argument
546 if (rap->rxa_flags & IEEE80211_AGGR_RUNNING) { in ampdu_rx_start()
[all …]
Dieee80211_ddb.c216 _db_show_rxampdu(const char *sep, int ix, const struct ieee80211_rx_ampdu *rap) in _db_show_rxampdu() argument
221 sep, ix, rap, rap->rxa_flags, ix /*XXX */); in _db_show_rxampdu()
223 sep, rap->rxa_qbytes, rap->rxa_qframes, in _db_show_rxampdu()
224 rap->rxa_seqstart, rap->rxa_start, rap->rxa_wnd); in _db_show_rxampdu()
226 rap->rxa_age, rap->rxa_nframes); in _db_show_rxampdu()
228 if (rap->rxa_m[i] != NULL) in _db_show_rxampdu()
230 IEEE80211_SEQ_ADD(rap->rxa_start, i), in _db_show_rxampdu()
231 rap->rxa_m[i]); in _db_show_rxampdu()
Dieee80211_input.h177 struct ieee80211_rx_ampdu *rap; in ieee80211_check_rxseq() local
194 rap = &ni->ni_rx_ampdu[tid]; in ieee80211_check_rxseq()
197 (rap->rxa_flags & IEEE80211_AGGR_RUNNING)) in ieee80211_check_rxseq()
/freebsd-9-stable/sys/dev/le/
Dif_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()
/freebsd-9-stable/sys/dev/mpt/
Dmpt_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 …]
Dmpt_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 …]
/freebsd-9-stable/sys/fs/ntfs/
Dntfs_subr.c537 struct attr * rap) in ntfs_attrtontvattr() argument
548 vap->va_flag = rap->a_hdr.a_flag; in ntfs_attrtontvattr()
549 vap->va_type = rap->a_hdr.a_type; in ntfs_attrtontvattr()
550 vap->va_compression = rap->a_hdr.a_compression; in ntfs_attrtontvattr()
551 vap->va_index = rap->a_hdr.a_index; in ntfs_attrtontvattr()
555 vap->va_namelen = rap->a_hdr.a_namelen; in ntfs_attrtontvattr()
556 if (rap->a_hdr.a_namelen) { in ntfs_attrtontvattr()
557 wchar *unp = (wchar *) ((caddr_t) rap + rap->a_hdr.a_nameoff); in ntfs_attrtontvattr()
567 vap->va_datalen = rap->a_nr.a_datalen; in ntfs_attrtontvattr()
568 vap->va_allocated = rap->a_nr.a_allocated; in ntfs_attrtontvattr()
[all …]
/freebsd-9-stable/contrib/tcp_wrappers/
Dsocket.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) {
/freebsd-9-stable/lib/libsmb/
DMakefile11 SRCS= rcfile.c ctx.c cfopt.c subr.c nls.c rap.c mbuf.c rq.c file.c \
/freebsd-9-stable/contrib/ipfilter/perl/
DServices22 38 rap RouteAccessProtocol
235 256 rap RAP
846 1530 rap-service rap-service
847 1531 rap-listen rap-listen
/freebsd-9-stable/sys/dev/mwl/
Dif_mwl.c2394 mwl_ampdu_rxdma_reclaim(struct ieee80211_rx_ampdu *rap) in mwl_ampdu_rxdma_reclaim() argument
2401 n = rap->rxa_qframes; in mwl_ampdu_rxdma_reclaim()
2402 for (i = 0; i < rap->rxa_wnd && n > 0; i++) { in mwl_ampdu_rxdma_reclaim()
2403 m = rap->rxa_m[i]; in mwl_ampdu_rxdma_reclaim()
2471 struct ieee80211_rx_ampdu *rap; in mwl_node_drain() local
2473 rap = &ni->ni_rx_ampdu[tid]; in mwl_node_drain()
2474 if ((rap->rxa_flags & IEEE80211_AGGR_XCHGPEND) == 0) in mwl_node_drain()
2476 if (rap->rxa_qframes) in mwl_node_drain()
2477 mwl_ampdu_rxdma_reclaim(rap); in mwl_node_drain()
/freebsd-9-stable/share/misc/
Diso639395 rap rap Rapanui
/freebsd-9-stable/etc/
Dservices81 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
/freebsd-9-stable/contrib/ipfilter/etc/
Dservices35 rap 38/tcp # Route Access Protocol
36 rap 38/udp # Route Access Protocol
259 rap 256/tcp # RAP
260 rap 256/udp # RAP
/freebsd-9-stable/sys/dev/iwn/
Dif_iwn.c5551 iwn_ampdu_rx_start(struct ieee80211_node *ni, struct ieee80211_rx_ampdu *rap, in iwn_ampdu_rx_start() argument
5577 return sc->sc_ampdu_rx_start(ni, rap, baparamset, batimeout, baseqctl); in iwn_ampdu_rx_start()
5586 iwn_ampdu_rx_stop(struct ieee80211_node *ni, struct ieee80211_rx_ampdu *rap) in iwn_ampdu_rx_stop() argument
5597 if (&ni->ni_rx_ampdu[tid] == rap) in iwn_ampdu_rx_stop()
5608 sc->sc_ampdu_rx_stop(ni, rap); in iwn_ampdu_rx_stop()
/freebsd-9-stable/contrib/gnu-sort/
DTHANKS395 Ross Paterson rap@doc.ic.ac.uk
/freebsd-9-stable/games/fortune/datfiles/
Dzippy993 Psychoanalysis?? I thought this was a nude rap session!!!
Dfortunes2298 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
/freebsd-9-stable/contrib/gcc/
DFSFChangeLog.117760 * sh.h (REG_CLASS_CONTENTS): Add rap to GENERAL_REGS and its
11101 (REGISTER_NAMES): Add rap.
DChangeLog-200228181 (INITIAL_ELIMINATION_OFFSET): Adjust for elimination of rap to
28283 * config/mips/mips.h (CAN_ELIMINATE): Don't eliminate rap to $fp
/freebsd-9-stable/share/dict/
Dweb2a45957 rap-full
45973 rap shot
47646 rip-rap
Dweb2163265 rap