Searched refs:aq (Results 1 - 16 of 16) sorted by relevance

/freebsd-10-stable/sys/net80211/
H A Dieee80211_ageq.c50 ieee80211_ageq_init(struct ieee80211_ageq *aq, int maxlen, const char *name) argument
52 memset(aq, 0, sizeof(*aq));
53 aq->aq_maxlen = maxlen;
54 IEEE80211_AGEQ_INIT(aq, name); /* OS-dependent setup */
62 ieee80211_ageq_cleanup(struct ieee80211_ageq *aq) argument
64 KASSERT(aq->aq_len == 0, ("%d frames on ageq", aq->aq_len));
65 IEEE80211_AGEQ_DESTROY(aq); /* OS-dependent cleanup */
104 ieee80211_ageq_append(struct ieee80211_ageq *aq, struc argument
137 ieee80211_ageq_drain(struct ieee80211_ageq *aq) argument
146 ieee80211_ageq_drain_node(struct ieee80211_ageq *aq, struct ieee80211_node *ni) argument
160 ieee80211_ageq_age(struct ieee80211_ageq *aq, int quanta) argument
191 ieee80211_ageq_remove(struct ieee80211_ageq *aq, struct ieee80211_node *match) argument
[all...]
/freebsd-10-stable/sys/dev/ixl/
H A Di40e_adminq.c61 hw->aq.asq.tail = I40E_VF_ATQT1;
62 hw->aq.asq.head = I40E_VF_ATQH1;
63 hw->aq.asq.len = I40E_VF_ATQLEN1;
64 hw->aq.asq.bal = I40E_VF_ATQBAL1;
65 hw->aq.asq.bah = I40E_VF_ATQBAH1;
66 hw->aq.arq.tail = I40E_VF_ARQT1;
67 hw->aq.arq.head = I40E_VF_ARQH1;
68 hw->aq.arq.len = I40E_VF_ARQLEN1;
69 hw->aq.arq.bal = I40E_VF_ARQBAL1;
70 hw->aq
[all...]
H A Di40e_nvm.c123 access, time_left, ret_code, hw->aq.asq_last_status);
145 time_left, ret_code, hw->aq.asq_last_status);
175 (total_delay < hw->aq.asq_cmd_timeout)) {
H A Dixl.h621 hw->aq.fw_maj_ver, hw->aq.fw_min_ver,
622 hw->aq.api_maj_ver, hw->aq.api_min_ver,
H A Dif_ixl.c560 hw->aq.num_arq_entries = IXL_AQ_LEN;
561 hw->aq.num_asq_entries = IXL_AQ_LEN;
562 hw->aq.arq_buf_size = IXL_AQ_BUFSZ;
563 hw->aq.asq_buf_size = IXL_AQ_BUFSZ;
584 if (hw->aq.api_maj_ver == I40E_FW_API_VERSION_MAJOR &&
585 hw->aq.api_min_ver > I40E_FW_API_VERSION_MINOR)
589 else if (hw->aq.api_maj_ver < I40E_FW_API_VERSION_MAJOR ||
590 hw->aq.api_min_ver < (I40E_FW_API_VERSION_MINOR - 1))
649 if (((hw->aq.fw_maj_ver == 4) && (hw->aq
[all...]
H A Dif_ixlv.c990 hw->aq.num_arq_entries = IXL_AQ_LEN;
991 hw->aq.num_asq_entries = IXL_AQ_LEN;
992 hw->aq.arq_buf_size = IXL_AQ_BUFSZ;
993 hw->aq.asq_buf_size = IXL_AQ_BUFSZ;
2740 oldreg = reg = rd32(hw, hw->aq.arq.len);
2754 wr32(hw, hw->aq.arq.len, reg);
2756 oldreg = reg = rd32(hw, hw->aq.asq.len);
2770 wr32(hw, hw->aq.asq.len, reg);
H A Di40e_common.c377 if (hw->aq.asq.len) {
379 return !!(rd32(hw, hw->aq.asq.len) &
382 return !!(rd32(hw, hw->aq.asq.len) &
1627 if (hw->aq.asq_last_status == I40E_AQ_RC_EIO)
1910 if ((hw->aq.fw_maj_ver < 4 || (hw->aq.fw_maj_ver == 4 &&
1911 hw->aq.fw_min_ver < 40)) && hw_link_info->phy_type == 0xE)
3087 if (status == I40E_SUCCESS || hw->aq.asq_last_status == I40E_AQ_RC_EBUSY)
H A Dixlvc.c179 "error %d, aq status %d\n", op, err, hw->aq.asq_last_status);
H A Di40e_type.h602 struct i40e_adminq_info aq; member in struct:i40e_hw
/freebsd-10-stable/contrib/gcc/
H A Dlibgcov.c775 va_list ap, aq; local
782 va_copy (aq, ap);
792 args[i] = va_arg (aq, char *);
793 va_end (aq);
806 va_list ap, aq; local
813 va_copy (aq, ap);
823 args[i] = va_arg (aq, char *);
824 va_end (aq);
837 va_list ap, aq; local
845 va_copy (aq, a
[all...]
/freebsd-10-stable/contrib/pf/libevent/
H A Dbuffer.c135 va_list aq; local
144 va_copy(aq, ap);
147 sz = vsnprintf(buffer, space - 1, fmt, aq);
150 sz = vsnprintf(buffer, space, fmt, aq);
153 va_end(aq);
/freebsd-10-stable/contrib/ntp/libntp/
H A Dsnprintf.c1521 va_list aq; local
1523 VA_COPY(aq, ap);
1524 len = vsnprintf(NULL, 0, format, aq);
1525 VA_END_COPY(aq);
/freebsd-10-stable/sys/ofed/include/linux/
H A Dlinux_compat.c741 va_list aq; local
743 va_copy(aq, ap);
744 len = vsnprintf(NULL, 0, fmt, aq);
745 va_end(aq);
/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_acl.c272 struct archive_acl_entry *ap, *aq; local
335 aq = NULL;
345 aq = ap;
353 if (aq == NULL)
356 aq->next = ap;
/freebsd-10-stable/contrib/ntp/sntp/libevent/
H A Dbuffer.c2828 va_list aq; local
2855 va_copy(aq, ap);
2857 sz = evutil_vsnprintf(buffer, space, fmt, aq);
2859 va_end(aq);
/freebsd-10-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c63804 } aq; member in union:vdbeExecUnion
[all...]

Completed in 509 milliseconds