| /src/external/bsd/wpa/dist/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); 121 struct wmm_tspec_element *tspec = wpa_s->tspecs[ac][dir]; local 268 struct wmm_tspec_element *tspec; local 551 struct wmm_tspec_element tspec; local 739 struct wmm_tspec_element *tspec; local 871 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
|
| /src/external/bsd/wpa/dist/src/ap/ |
| wmm.h | 21 int wmm_process_tspec(struct wmm_tspec_element *tspec);
|
| wmm.c | 182 const struct wmm_tspec_element *tspec, 204 os_memcpy(t, tspec, sizeof(struct wmm_tspec_element)); 212 int wmm_process_tspec(struct wmm_tspec_element *tspec) 219 up = (tspec->ts_info[1] >> 3) & 0x07; 220 psb = (tspec->ts_info[1] >> 2) & 0x01; 221 dir = (tspec->ts_info[0] >> 5) & 0x03; 222 tid = (tspec->ts_info[0] >> 1) & 0x0f; 225 val = le_to_host16(tspec->nominal_msdu_size); 229 le_to_host32(tspec->mean_data_rate)); 231 le_to_host32(tspec->minimum_phy_rate)) [all...] |
| wpa_auth_ft.c | 2461 struct wmm_tspec_element *tspec; local 2463 if (parse.wmm_tspec_len + 2 < (int) sizeof(*tspec)) { 2464 wpa_printf(MSG_DEBUG, "FT: Too short WMM TSPEC IE " 2470 if (end - pos < (int) sizeof(*tspec)) { 2472 "response TSPEC"); 2477 tspec = (struct wmm_tspec_element *) pos; 2478 os_memcpy(tspec, parse.wmm_tspec - 2, sizeof(*tspec)); 2494 /* TSPEC accepted; include updated TSPEC in response * [all...] |
| /src/external/bsd/openldap/dist/include/ |
| ldap_rq.h | 33 char *tspec; member in struct:re_s 50 char *tspec
|
| /src/sys/sys/ |
| timepps.h | 53 struct timespec tspec; member in union:pps_timeu 73 #define assert_timestamp assert_tu.tspec 74 #define clear_timestamp clear_tu.tspec 86 #define assert_offset assert_off_tu.tspec 87 #define clear_offset clear_off_tu.tspec
|
| /src/external/bsd/ntp/dist/include/ |
| timepps-SCO.h | 143 struct timespec tspec; member in union:pps_timeu 160 #define assert_timestamp assert_tu.tspec 161 #define clear_timestamp clear_tu.tspec 177 #define assert_offset assert_off_tu.tspec 178 #define clear_offset clear_off_tu.tspec
|
| timepps-Solaris.h | 143 struct timespec tspec; member in union:pps_timeu 160 #define assert_timestamp assert_tu.tspec 161 #define clear_timestamp clear_tu.tspec 177 #define assert_offset assert_off_tu.tspec 178 #define clear_offset clear_off_tu.tspec
|
| timepps-SunOS.h | 143 struct timespec tspec; member in union:pps_timeu 160 #define assert_timestamp assert_tu.tspec 161 #define clear_timestamp clear_tu.tspec 177 #define assert_offset assert_off_tu.tspec 178 #define clear_offset clear_off_tu.tspec
|
| /src/external/bsd/openldap/dist/libraries/libldap/ |
| rq.c | 51 char *tspec 65 entry->tspec = tspec;
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| cparse.d | 1619 auto tspec = cparseDeclarationSpecifiers(level, specifier); 1625 if (!tspec) 1631 if (auto ti = tspec.isTypeIdentifier()) 1640 auto tt = tspec.isTypeTag(); 1665 if (!tspec) 1673 if (tspec && specifier.mod & MOD.xconst) 1675 tspec = toConst(tspec); 1686 if (token.value == TOK.assign && tspec && tspec.isTypeIdentifier() [all...] |
| transitivevisitor.d | 1023 if (e.tspec) 1024 visitType(e.tspec);
|
| expression.h | 667 /* is(targ id tok tspec) 672 Type *tspec; // can be NULL member in class:IsExp
|
| expression.d | 4170 * is(targ id tok tspec) 4177 Type tspec; // can be null 4182 extern (D) this(const ref Loc loc, Type targ, Identifier id, TOK tok, Type tspec, TOK tok2, TemplateParameters* parameters) 4188 this.tspec = tspec; 4203 return new IsExp(loc, targ.syntaxCopy(), id, tok, tspec ? tspec.syntaxCopy() : null, tok2, p);
|
| expressionsem.d | 5453 /* is(targ id tok tspec) 5698 else if (e.tspec && !e.id && !(e.parameters && e.parameters.dim)) 5700 /* Evaluate to true if targ matches tspec 5701 * is(targ == tspec) 5702 * is(targ : tspec) 5704 e.tspec = e.tspec.typeSemantic(e.loc, sc); 5706 //printf("tspec = %s, %s\n", e.tspec.toChars(), e.tspec.deco) [all...] |
| parse.d | 8210 AST.Type tspec = null; 8248 tspec = parseType(); 8251 if (tspec) 8269 e = new AST.IsExp(loc, targ, ident, tok, tspec, tok2, tpl);
|
| hdrgen.d | 2220 else if (e.tspec) 2226 typeToBuffer(e.tspec, null, buf, hgs);
|
| dtemplate.d | 8204 if (Type tspec = isType(tap.specAlias)) 8206 MATCH m2 = ta.implicitConvTo(tspec);
|
| /src/sbin/mount_nfs/ |
| mount_nfs.c | 177 char *tspec; local 184 if ((tspec = strdup(spec)) == NULL) { 187 if (!getnfsargs(tspec, nfsargsp)) { 190 free(tspec);
|
| /src/external/bsd/openldap/dist/servers/slapd/back-monitor/ |
| thread.c | 263 i, re->tname, re->tspec ); 296 i, re->tname, re->tspec );
|
| /src/usr.bin/xlint/lint1/ |
| lex.c | 96 #define kwdef_type(name, tspec, since) \ 97 kwdef(name, T_TYPE, .u.kw_tspec = (tspec), since, 0, 1)
|