Searched refs:ah (Results 151 - 175 of 313) sorted by relevance

1234567891011>>

/freebsd-11-stable/sys/netinet/
H A Dif_ether.c174 static void arp_check_update_lle(struct arphdr *ah, struct in_addr isaddr,
312 arp_fillheader(struct ifnet *ifp, struct arphdr *ah, int bcast, u_char *buf, argument
324 ereq.lladdr = ar_tha(ah);
325 ereq.hdata = (u_char *)ah;
347 struct arphdr *ah; local
391 m->m_len = sizeof(*ah) + 2 * sizeof(struct in_addr) +
395 ah = mtod(m, struct arphdr *);
396 bzero((caddr_t)ah, m->m_len);
400 ah->ar_pro = htons(ETHERTYPE_IP);
401 ah
782 struct arphdr *ah; local
1155 arp_check_update_lle(struct arphdr *ah, struct in_addr isaddr, struct ifnet *ifp, int bridged, struct llentry *la) argument
[all...]
/freebsd-11-stable/sys/netinet/libalias/
H A Dalias_cuseeme.c67 fingerprint(struct libalias *la, struct alias_data *ah) argument
70 if (ah->dport == NULL || ah->oaddr == NULL)
72 if (ntohs(*ah->dport) == CUSEEME_PORT_NUMBER)
78 protohandlerin(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
81 AliasHandleCUSeeMeIn(la, pip, *ah->oaddr);
86 protohandlerout(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
89 AliasHandleCUSeeMeOut(la, pip, ah->lnk);
H A Dalias_nbt.c80 fingerprint1(struct libalias *la, struct alias_data *ah) argument
83 if (ah->dport == NULL || ah->sport == NULL || ah->lnk == NULL ||
84 ah->aaddr == NULL || ah->aport == NULL)
86 if (ntohs(*ah->dport) == NETBIOS_DGM_PORT_NUMBER
87 || ntohs(*ah->sport) == NETBIOS_DGM_PORT_NUMBER)
93 protohandler1(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
96 return (AliasHandleUdpNbt(la, pip, ah
100 fingerprint2(struct libalias *la, struct alias_data *ah) argument
113 protohandler2in(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
122 protohandler2out(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
[all...]
H A Dalias_smedia.c135 fingerprint(struct libalias *la, struct alias_data *ah) argument
138 if (ah->dport != NULL && ah->aport != NULL && ah->sport != NULL &&
139 ntohs(*ah->dport) == TFTP_PORT_NUMBER)
141 if (ah->dport == NULL || ah->sport == NULL || ah->lnk == NULL ||
142 ah->maxpktsize == 0)
144 if (ntohs(*ah
153 protohandler(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
[all...]
H A Dalias_ftp.c109 fingerprint_out(struct libalias *la, struct alias_data *ah) argument
112 if (ah->dport == NULL || ah->sport == NULL || ah->lnk == NULL ||
113 ah->maxpktsize == 0)
115 if (ntohs(*ah->dport) == FTP_CONTROL_PORT_NUMBER ||
116 ntohs(*ah->sport) == FTP_CONTROL_PORT_NUMBER)
122 fingerprint_in(struct libalias *la, struct alias_data *ah) argument
125 if (ah->dport == NULL || ah
134 protohandler_out(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
143 protohandler_in(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
[all...]
H A Dalias_pptp.c82 fingerprint(struct libalias *la, struct alias_data *ah) argument
85 if (ah->dport == NULL || ah->sport == NULL || ah->lnk == NULL)
87 if (ntohs(*ah->dport) == PPTP_CONTROL_PORT_NUMBER
88 || ntohs(*ah->sport) == PPTP_CONTROL_PORT_NUMBER)
94 fingerprintgre(struct libalias *la, struct alias_data *ah) argument
101 protohandlerin(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
104 AliasHandlePptpIn(la, pip, ah->lnk);
109 protohandlerout(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
117 protohandlergrein(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
127 protohandlergreout(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
[all...]
H A Dalias_irc.c96 fingerprint(struct libalias *la, struct alias_data *ah) argument
99 if (ah->dport == NULL || ah->lnk == NULL || ah->maxpktsize == 0)
101 if (ntohs(*ah->dport) == IRC_CONTROL_PORT_NUMBER_1
102 || ntohs(*ah->dport) == IRC_CONTROL_PORT_NUMBER_2)
108 protohandler(struct libalias *la, struct ip *pip, struct alias_data *ah) argument
113 AliasHandleIrcOut(la, pip, ah->lnk, ah->maxpktsize);
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/
H A Dib_agent.c92 struct ib_ah *ah; local
106 ah = ib_create_ah_from_wc(agent->qp->pd, wc, grh, port_num);
107 if (IS_ERR(ah)) {
109 PTR_ERR(ah));
127 send_buf->ah = ah;
144 ib_destroy_ah(ah);
150 ib_destroy_ah(mad_send_wc->send_buf->ah);
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5210/
H A Dar5210_phy.c21 #include "ah.h"
68 ar5210GetRateTable(struct ath_hal *ah, u_int mode) argument
79 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid mode 0x%x\n",
83 ath_hal_setupratetable(ah, rt);
H A Dar5210.h95 #undef HAL_NUM_TX_QUEUES /* from ah.h */
126 #define AH5210(ah) ((struct ath_hal_5210 *)(ah))
130 extern void ar5210Detach(struct ath_hal *ah);
139 extern HAL_BOOL ar5210PerCalibrationN(struct ath_hal *ah, struct ieee80211_channel *chan,
141 extern HAL_BOOL ar5210ResetCalValid(struct ath_hal *ah, const struct ieee80211_channel *);
151 extern HAL_BOOL ar5210SetTxQueueProps(struct ath_hal *ah, int q,
153 extern HAL_BOOL ar5210GetTxQueueProps(struct ath_hal *ah, int q,
155 extern int ar5210SetupTxQueue(struct ath_hal *ah, HAL_TX_QUEUE type,
157 extern HAL_BOOL ar5210ReleaseTxQueue(struct ath_hal *ah, u_in
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/
H A Dah_eeprom.h163 HAL_STATUS ath_hal_v1EepromAttach(struct ath_hal *ah);
164 HAL_STATUS ath_hal_legacyEepromAttach(struct ath_hal *ah);
165 HAL_STATUS ath_hal_v14EepromAttach(struct ath_hal *ah);
166 HAL_STATUS ath_hal_v4kEepromAttach(struct ath_hal *ah);
167 HAL_STATUS ath_hal_9287EepromAttach(struct ath_hal *ah);
H A Dah_eeprom_v3.c21 #include "ah.h"
69 readEepromFreqPierInfo(struct ath_hal *ah, HAL_EEPROM *ee) argument
72 if (!ath_hal_eepromRead(ah, _off, &eeval)) \
137 eepromAllocExpnPower5112(struct ath_hal *ah, argument
151 HALDEBUG(ah, HAL_DEBUG_ANY,
179 eepromExpandPower5112(struct ath_hal *ah, argument
200 HALDEBUG(ah, HAL_DEBUG_ANY,
211 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: no channels\n", __func__);
275 readEepromRawPowerCalInfo5112(struct ath_hal *ah, HAL_EEPROM *ee) argument
278 if (!ath_hal_eepromRead(ah, _of
399 freeEepromRawPowerCalInfo5112(struct ath_hal *ah, HAL_EEPROM *ee) argument
441 ar2413ReadCalDataset(struct ath_hal *ah, HAL_EEPROM *ee, EEPROM_DATA_STRUCT_2413 *pCalDataset, uint32_t start_offset, uint32_t maxPiers, uint8_t mode) argument
678 ar2413EepromToRawDataset(struct ath_hal *ah, EEPROM_DATA_STRUCT_2413 *pCal, RAW_DATA_STRUCT_2413 *pRaw) argument
731 readEepromRawPowerCalInfo2413(struct ath_hal *ah, HAL_EEPROM *ee) argument
811 readEepromRawPowerCalInfo(struct ath_hal *ah, HAL_EEPROM *ee) argument
917 readEepromTargetPowerCalInfo(struct ath_hal *ah, HAL_EEPROM *ee) argument
1013 readEepromCTLInfo(struct ath_hal *ah, HAL_EEPROM *ee) argument
1110 readHeaderInfo(struct ath_hal *ah, HAL_EEPROM *ee) argument
1500 legacyEepromReadContents(struct ath_hal *ah, HAL_EEPROM *ee) argument
1557 legacyEepromGet(struct ath_hal *ah, int param, void *val) argument
1669 legacyEepromSet(struct ath_hal *ah, int param, int v) argument
1718 legacyEepromDiag(struct ath_hal *ah, int request, const void *args, uint32_t argsize, void **result, uint32_t *resultsize) argument
1745 legacyEepromGetSpurChan(struct ath_hal *ah, int ix, HAL_BOOL is2GHz) argument
1757 legacyEepromDetach(struct ath_hal *ah) argument
1775 ath_hal_legacyEepromAttach(struct ath_hal *ah) argument
[all...]
H A Dah_internal.h94 HAL_OPS_CONFIG *ah,
114 HAL_BOOL (*probe)(struct ath_hal *ah);
115 HAL_BOOL (*attach)(struct ath_hal *ah, HAL_STATUS *ecode);
127 struct ath_hal_rf *ath_hal_rfprobe(struct ath_hal *ah, HAL_STATUS *ecode);
169 #define AH_HOME_CHAN_NFCAL_HIST(ah, ichan) (ichan ? &ichan->nf_cal_hist: NULL)
172 #define AH_HOME_CHAN_NFCAL_HIST(ah, ichan) (&AH_PRIVATE(ah)->nf_cal_hist)
535 extern HAL_BOOL ath_hal_setTxQProps(struct ath_hal *ah,
537 extern HAL_BOOL ath_hal_getTxQProps(struct ath_hal *ah,
647 extern void DO_HALDEBUG(struct ath_hal *ah, u_in
703 ath_hal_checkchannel(struct ath_hal *ah, const struct ieee80211_channel *c) argument
724 ath_hal_gethwchannel(struct ath_hal *ah, const struct ieee80211_channel *c) argument
1008 struct ath_hal *ah = &ahp->h; local
1021 ath_hal_getantennaallowed(struct ath_hal *ah, const struct ieee80211_channel *chan) argument
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5416/
H A Dar5416desc.h405 #define TXCTL_OFFSET(ah) 2
406 #define TXCTL_NUMWORDS(ah) (AR_SREV_5416_V20_OR_LATER(ah) ? 12 : 8)
407 #define TXSTATUS_OFFSET(ah) (AR_SREV_5416_V20_OR_LATER(ah) ? 14 : 10)
408 #define TXSTATUS_NUMWORDS(ah) 10
410 #define RXCTL_OFFSET(ah) 3
411 #define RXCTL_NUMWORDS(ah) 1
412 #define RXSTATUS_OFFSET(ah) 4
413 #define RXSTATUS_NUMWORDS(ah)
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar5211/
H A Dar5211.h142 #define AH5211(ah) ((struct ath_hal_5211 *)(ah))
157 extern HAL_BOOL ar5211PerCalibrationN(struct ath_hal *ah, struct ieee80211_channel *chan,
159 extern HAL_BOOL ar5211ResetCalValid(struct ath_hal *ah, const struct ieee80211_channel *);
172 extern HAL_BOOL ar5211SetTxQueueProps(struct ath_hal *ah, int q,
174 extern HAL_BOOL ar5211GetTxQueueProps(struct ath_hal *ah, int q,
176 extern int ar5211SetupTxQueue(struct ath_hal *ah, HAL_TX_QUEUE type,
178 extern HAL_BOOL ar5211ReleaseTxQueue(struct ath_hal *ah, u_int q);
179 extern HAL_BOOL ar5211ResetTxQueue(struct ath_hal *ah, u_int q);
204 extern void ar5211GetTxIntrQueue(struct ath_hal *ah, uint32_
[all...]
H A Dar5211_phy.c21 #include "ah.h"
84 ar5211GetRateTable(struct ath_hal *ah, u_int mode) argument
98 HALDEBUG(ah, HAL_DEBUG_ANY, "%s: invalid mode 0x%x\n",
102 ath_hal_setupratetable(ah, rt);
/freebsd-11-stable/sys/dev/ath/
H A Dif_ath.c511 ah->config.no_pll_pwrsave = true;
580 struct ath_hal *ah = NULL; local
601 ah = ath_hal_attach(devid, sc, sc->sc_st, sc->sc_sh,
603 if (ah == NULL) {
609 sc->sc_ah = ah;
641 sc->sc_mrretry = ath_hal_setupxtxdesc(ah, NULL, 0,0, 0,0, 0,0);
648 if (ath_hal_hwphycounters(ah))
654 sc->sc_keymax = ath_hal_keycachesize(ah);
666 ath_hal_keyreset(ah, i);
867 ath_hal_setledstate(ah, HAL_LED_INI
1709 struct ath_hal *ah = sc->sc_ah; local
1871 struct ath_hal *ah = sc->sc_ah; local
1913 struct ath_hal *ah = sc->sc_ah; local
1995 struct ath_hal *ah = sc->sc_ah; local
2366 ath_hal_gethangstate(struct ath_hal *ah, uint32_t mask, uint32_t *hangs) argument
2441 struct ath_hal *ah = sc->sc_ah; local
2599 struct ath_hal *ah = sc->sc_ah; local
2788 struct ath_hal *ah = sc->sc_ah; local
2972 struct ath_hal *ah = sc->sc_ah; local
3556 struct ath_hal *ah = sc->sc_ah; local
3580 struct ath_hal *ah = sc->sc_ah; local
3805 struct ath_hal *ah = sc->sc_ah; local
3820 struct ath_hal *ah = sc->sc_ah; local
3852 struct ath_hal *ah = sc->sc_ah; local
3940 struct ath_hal *ah = sc->sc_ah; local
4255 struct ath_hal *ah = sc->sc_ah; local
4830 struct ath_hal *ah = sc->sc_ah; local
4903 struct ath_hal *ah = sc->sc_ah; local
4934 struct ath_hal *ah = sc->sc_ah; local
4968 struct ath_hal *ah = sc->sc_ah; local
4994 struct ath_hal *ah = sc->sc_ah; local
5085 struct ath_hal *ah = sc->sc_ah; local
5234 struct ath_hal *ah = sc->sc_ah; local
5362 struct ath_hal *ah = sc->sc_ah; local
5387 struct ath_hal *ah = sc->sc_ah; local
5480 struct ath_hal *ah = sc->sc_ah; local
5900 struct ath_hal *ah = sc->sc_ah; local
5924 struct ath_hal *ah = sc->sc_ah; local
5939 struct ath_hal *ah = sc->sc_ah; local
5976 struct ath_hal *ah = sc->sc_ah; local
6186 struct ath_hal *ah = sc->sc_ah; local
[all...]
H A Dif_ath_tdma.c136 struct ath_hal *ah = sc->sc_ah; local
185 ath_hal_beaconsettimers(ah, &bt);
252 struct ath_hal *ah = sc->sc_ah; local
290 sc->sc_tdmaguard = ath_hal_computetxtime(ah, sc->sc_currates,
294 ath_hal_intrset(ah, 0);
298 ath_hal_setcca(ah, AH_FALSE); /* disable CCA */
307 ath_hal_intrset(ah, sc->sc_imask);
362 struct ath_hal *ah = sc->sc_ah; local
389 ath_hal_intrset(ah, sc->sc_imask);
395 tsf = ath_hal_gettsf64(ah);
614 struct ath_hal *ah = sc->sc_ah; local
[all...]
H A Dif_ath_beacon.c114 struct ath_hal *ah = sc->sc_ah; local
127 return ath_hal_setuptxqueue(ah, HAL_TX_QUEUE_BEACON, &qi);
138 struct ath_hal *ah = sc->sc_ah; local
141 ath_hal_gettxqueueprops(ah, sc->sc_bhalq, &qi);
161 if (!ath_hal_settxqueueprops(ah, sc->sc_bhalq, &qi)) {
166 ath_hal_resettxqueue(ah, sc->sc_bhalq); /* push to h/w */
270 struct ath_hal *ah = sc->sc_ah; local
322 ath_hal_setuptxdesc(ah, ds
349 ath_hal_computetxtime(ah, rt, roundup(m->m_len, 4),
351 ath_hal_set11nratescenario(ah, d
429 struct ath_hal *ah = sc->sc_ah; local
817 struct ath_hal *ah = sc->sc_ah; local
919 struct ath_hal *ah = sc->sc_ah; local
[all...]
/freebsd-11-stable/sys/dev/ath/ath_hal/ar9002/
H A Dar9280.h62 void ar9280InitPLL(struct ath_hal *ah,
/freebsd-11-stable/stand/pc98/boot0.5/
H A Dputssjis.s59 xorb %ah, %ah
86 orb $0x80, %ah
124 cmpb $0x7f, %ah
126 decb %ah # Lower -= 1 if lower > 0x7f
128 cmpb $0x9e, %ah
130 subb $0x7d, %ah # Lower -= 0x7d
134 subb $0x1f, %ah # Lower -= 0x1f
H A Ddisk.s103 movb $6, %ah
149 movb $5, %ah
171 movw $0x0001, %ax # %ah = unit number, %al = for bit operation
181 addb %ah, %dh # %dh = DA/UA
188 movb $0x84, %ah
199 orb %ah, %ah
201 cmpb $1, %ah
228 incb %ah
239 movw $0x0001, %ax # %ah
[all...]
/freebsd-11-stable/contrib/ofed/libmlx4/
H A Dverbs.c1147 static int mlx4_resolve_grh_to_l2(struct ibv_pd *pd, struct mlx4_ah *ah, argument
1155 memcpy(ah->mac, &attr->grh.dgid.raw[8], 3);
1156 memcpy(ah->mac + 3, &attr->grh.dgid.raw[13], 3);
1157 ah->mac[0] ^= 2;
1161 ah->mac[0] = 0x33;
1162 ah->mac[1] = 0x33;
1164 ah->mac[i] = attr->grh.dgid.raw[i + 10];
1171 ah->av.dlid = htobe16(0xc000);
1172 ah->av.port_pd |= htobe32(1 << 31);
1179 ah
1188 struct mlx4_ah *ah; local
1250 mlx4_destroy_ah(struct ibv_ah *ah) argument
[all...]
/freebsd-11-stable/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_ib.c61 struct ipoib_ah *ah; local
63 ah = kmalloc(sizeof *ah, GFP_KERNEL);
64 if (!ah)
67 ah->priv = priv;
68 ah->last_send = 0;
69 kref_init(&ah->ref);
71 ah->ah = ib_create_ah(pd, attr);
72 if (IS_ERR(ah
83 struct ipoib_ah *ah = container_of(kref, struct ipoib_ah, ref); local
562 struct ipoib_ah *ah, *tah; local
[all...]
/freebsd-11-stable/stand/i386/boot0/
H A Dboot0.S349 xorb %ah,%ah # BIOS: Get
358 movb $0x1,%ah # BIOS: Check
361 movb $0x03,%ah # BIOS: Read COM
363 testb $0x01,%ah # Check line status
367 xorb %ah,%ah # BIOS: int 0x1a, 00
388 xorb %ah,%ah # BIOS: int 0x16, 00
390 movb %ah,
[all...]

Completed in 179 milliseconds

1234567891011>>