HomeSort by relevance Sort by last modified time
    Searched defs:tspec (Results 1 - 4 of 4) sorted by null

  /external/deqp/framework/delibs/deutil/
deTimer.c 215 struct itimerspec tspec; local
222 tspec.it_value.tv_sec = milliseconds / 1000;
223 tspec.it_value.tv_nsec = (milliseconds % 1000) * 1000;
224 tspec.it_interval.tv_sec = 0;
225 tspec.it_interval.tv_nsec = 0;
227 if (timer_settime(timer->timer, 0, &tspec, DE_NULL) != 0)
236 struct itimerspec tspec; local
243 tspec.it_value.tv_sec = milliseconds / 1000;
244 tspec.it_value.tv_nsec = (milliseconds % 1000) * 1000;
245 tspec.it_interval.tv_sec = tspec.it_value.tv_sec
257 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 */
  /external/wpa_supplicant_8/src/ap/
wpa_auth_ft.c 542 struct wmm_tspec_element *tspec; local
545 if (parse.wmm_tspec_len + 2 < (int) sizeof(*tspec)) {
546 wpa_printf(MSG_DEBUG, "FT: Too short WMM TSPEC IE "
552 if (end - pos < (int) sizeof(*tspec)) {
554 "response TSPEC");
559 tspec = (struct wmm_tspec_element *) pos;
560 os_memcpy(tspec, parse.wmm_tspec - 2, sizeof(*tspec));
561 res = wmm_process_tspec(tspec);
570 /* TSPEC accepted; include updated TSPEC in response *
579 struct wmm_tspec_element *tspec; local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/emoji/
EmojiPalettesView.java 153 final TabHost.TabSpec tspec = host.newTabSpec(tabId); local
154 tspec.setContent(R.id.emoji_keyboard_dummy);
159 tspec.setIndicator(iconView);
160 host.addTab(tspec);

Completed in 698 milliseconds