/external/wpa_supplicant_8/wpa_supplicant/ |
wmm_ac.c | 35 static inline u8 wmm_ac_get_tsid(const struct wmm_tspec_element *tspec) 37 return (tspec->ts_info[0] >> 1) & 0x0f; 41 static u8 wmm_ac_get_direction(const struct wmm_tspec_element *tspec) 43 return (tspec->ts_info[0] >> 5) & 0x03; 47 static u8 wmm_ac_get_user_priority(const struct wmm_tspec_element *tspec) 49 return (tspec->ts_info[1] >> 3) & 0x07; 70 const struct wmm_tspec_element *tspec) 74 u16 admitted_time = le_to_host16(tspec->medium_time); 75 u8 up = wmm_ac_get_user_priority(tspec); 77 u8 dir = wmm_ac_get_direction(tspec); 124 struct wmm_tspec_element *tspec = wpa_s->tspecs[ac][dir]; local 271 struct wmm_tspec_element *tspec; local 559 struct wmm_tspec_element tspec; local 747 struct wmm_tspec_element *tspec; local 879 struct wmm_tspec_element *tspec; local [all...] |
wmm_ac.h | 69 * the respective tspec slot (according to the direction). 99 * TSPEC) 104 * tspec - Traffic Stream Specification, will be used to compare the 105 * sent TSPEC in ADDTS request to the received TSPEC in ADDTS response 108 struct wmm_tspec_element tspec; member in struct:wmm_ac_addts_request
|
/external/wpa_supplicant_8/src/ap/ |
wmm.c | 128 const struct wmm_tspec_element *tspec, 150 os_memcpy(t, tspec, sizeof(struct wmm_tspec_element)); 158 int wmm_process_tspec(struct wmm_tspec_element *tspec) 164 up = (tspec->ts_info[1] >> 3) & 0x07; 165 psb = (tspec->ts_info[1] >> 2) & 0x01; 166 dir = (tspec->ts_info[0] >> 5) & 0x03; 167 tid = (tspec->ts_info[0] >> 1) & 0x0f; 170 val = le_to_host16(tspec->nominal_msdu_size); 174 le_to_host32(tspec->mean_data_rate)); 176 le_to_host32(tspec->minimum_phy_rate)) [all...] |
wmm.h | 21 int wmm_process_tspec(struct wmm_tspec_element *tspec);
|
wpa_auth_ft.c | 538 struct wmm_tspec_element *tspec; local 540 if (parse.wmm_tspec_len + 2 < (int) sizeof(*tspec)) { 541 wpa_printf(MSG_DEBUG, "FT: Too short WMM TSPEC IE " 547 if (end - pos < (int) sizeof(*tspec)) { 549 "response TSPEC"); 554 tspec = (struct wmm_tspec_element *) pos; 555 os_memcpy(tspec, parse.wmm_tspec - 2, sizeof(*tspec)); 571 /* TSPEC accepted; include updated TSPEC in response * [all...] |
/external/deqp/framework/delibs/deutil/ |
deTimer.c | 217 struct itimerspec tspec; local 224 tspec.it_value.tv_sec = milliseconds / 1000; 225 tspec.it_value.tv_nsec = (milliseconds % 1000) * 1000; 226 tspec.it_interval.tv_sec = 0; 227 tspec.it_interval.tv_nsec = 0; 229 if (timer_settime(timer->timer, 0, &tspec, DE_NULL) != 0) 238 struct itimerspec tspec; local 245 tspec.it_value.tv_sec = milliseconds / 1000; 246 tspec.it_value.tv_nsec = (milliseconds % 1000) * 1000; 247 tspec.it_interval.tv_sec = tspec.it_value.tv_sec 259 struct itimerspec tspec; local [all...] |
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/ |
802.11e.h | 32 /* WME Traffic Specification (TSPEC) element */ 33 #define WME_TSPEC_HDR_LEN 2 /* WME TSPEC header length */ 34 #define WME_TSPEC_BODY_OFF 2 /* WME TSPEC body offset */ 47 /* 802.11e TSPEC IE */ 48 typedef BWL_PRE_PACKED_STRUCT struct tspec { struct 111 #define DOT11E_STATUS_ADMISSION_ACCEPTED 0 /* TSPEC Admission accepted status */ 112 #define DOT11E_STATUS_ADDTS_INVALID_PARAM 1 /* TSPEC invalid parameter status */
|
bcmevent.h | 260 #define WLC_E_REASON_TSPEC_REJECTED 7 /* roamed due to TSPEC rejection */
|
802.11.h | [all...] |
/external/libdrm/tests/exynos/ |
exynos_fimg2d_perf.c | 34 struct timespec tspec = { 0 }; local 78 clock_gettime(CLOCK_MONOTONIC, &tspec); 91 g2d_time = (end.tv_sec - tspec.tv_sec) * 1000000000ULL; 92 g2d_time += (end.tv_nsec - tspec.tv_nsec); 112 struct timespec tspec = { 0 }; local 172 clock_gettime(CLOCK_MONOTONIC, &tspec); 184 g2d_time = (end.tv_sec - tspec.tv_sec) * 1000000000ULL; 185 g2d_time += (end.tv_nsec - tspec.tv_nsec);
|
/external/iw/ |
status.c | 35 [39] = "The TS has not been created because the request cannot be honored. However, a suggested Tspec is provided so that the initiating QSTA may attempt to send another TS with the suggested changes to the TSpec",
|
nl80211.h | [all...] |
/external/autotest/client/tests/cyclictest/src/ |
cyclictest.c | 206 struct itimerspec tspec; local 240 tspec.it_interval = interval; 254 tspec.it_value = next; 256 tspec.it_value.tv_nsec = 0; 257 tspec.it_value.tv_sec = 1; 259 timer_settime(timer, par->timermode, &tspec, NULL);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/ |
EmojiPalettesView.java | 150 final TabHost.TabSpec tspec = host.newTabSpec(tabId); local 151 tspec.setContent(R.id.emoji_keyboard_dummy); 159 tspec.setIndicator(iconView); 160 host.addTab(tspec);
|
/external/wpa_supplicant_8/src/common/ |
wpa_ctrl.h | 152 #define WMM_AC_EVENT_TSPEC_ADDED "TSPEC-ADDED " 153 #define WMM_AC_EVENT_TSPEC_REMOVED "TSPEC-REMOVED " 154 #define WMM_AC_EVENT_TSPEC_REQ_FAILED "TSPEC-REQ-FAILED "
|
ieee802_11_defs.h | 909 /* WMM TSPEC Direction Field Values */ 970 /* WMM TSPEC Element */ [all...] |
/system/connectivity/shill/net/ |
nl80211_message.cc | 270 "However, a suggested Tspec is provided so that the initiating QSTA " 272 "TSpec";
|
/external/iproute2/doc/ |
api-ip6-flowlabels.tex | 421 RTAP> sender 3ffe:2400::1/FL0xA1234 <Tspec>
|
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/ |
bcmutils.h | 521 #define BCME_TSPEC_NOTFOUND -32 /* TSPEC Not Found */ 572 "TSPEC Not Found", \
|
wlioctl.h | [all...] |
/external/aac/libAACdec/src/ |
conceal.cpp | 704 FIXP_DBL tSpec = *pSpec; 706 *pCncl-- = FX_DBL2FX_CNCL( tSpec); [all...] |
/external/wpa_supplicant_8/src/rsn_supp/ |
wpa_ft.c | 134 * @ric_ies: Optional IE(s), e.g., WMM TSPEC(s), for RIC-Request or %NULL
|
/external/tcpdump/ |
print-rsvp.c | 165 { RSVP_OBJ_SENDER_TSPEC, "Sender TSpec" }, 376 { 127, "Token Bucket TSpec" }, [all...] |
/external/wpa_supplicant_8/src/drivers/ |
driver.h | [all...] |
/external/kernel-headers/original/uapi/linux/ |
nl80211.h | [all...] |