Searched refs:tspec (Results 1 - 25 of 27) sorted by relevance

12

/netbsd-current/external/bsd/wpa/dist/wpa_supplicant/
H A Dwmm_ac.c35 static inline u8 wmm_ac_get_tsid(const struct wmm_tspec_element *tspec) argument
37 return (tspec->ts_info[0] >> 1) & 0x0f;
41 static u8 wmm_ac_get_direction(const struct wmm_tspec_element *tspec) argument
43 return (tspec->ts_info[0] >> 5) & 0x03;
47 static u8 wmm_ac_get_user_priority(const struct wmm_tspec_element *tspec) argument
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);
69 wmm_ac_add_ts(struct wpa_supplicant *wpa_s, const u8 *addr, const struct wmm_tspec_element *tspec) argument
121 struct wmm_tspec_element *tspec = wpa_s->tspecs[ac][dir]; local
208 wmm_ac_send_delts(struct wpa_supplicant *wpa_s, const struct wmm_tspec_element *tspec, const u8 *address) argument
268 struct wmm_tspec_element *tspec; local
551 struct wmm_tspec_element tspec; local
631 wmm_ac_handle_delts(struct wpa_supplicant *wpa_s, const u8 *sa, const struct wmm_tspec_element *tspec) argument
659 wmm_ac_handle_addts_resp(struct wpa_supplicant *wpa_s, const u8 *sa, const u8 resp_dialog_token, const u8 status_code, const struct wmm_tspec_element *tspec) argument
739 struct wmm_tspec_element *tspec; local
871 struct wmm_tspec_element *tspec; local
[all...]
H A Dwmm_ac.h69 * the respective tspec slot (according to the direction).
104 * tspec - Traffic Stream Specification, will be used to compare the
108 struct wmm_tspec_element tspec; member in struct:wmm_ac_addts_request
/netbsd-current/external/bsd/wpa/dist/src/ap/
H A Dwmm.h21 int wmm_process_tspec(struct wmm_tspec_element *tspec);
H A Dwmm.c187 const struct wmm_tspec_element *tspec,
209 os_memcpy(t, tspec, sizeof(struct wmm_tspec_element));
217 int wmm_process_tspec(struct wmm_tspec_element *tspec) argument
224 up = (tspec->ts_info[1] >> 3) & 0x07;
225 psb = (tspec->ts_info[1] >> 2) & 0x01;
226 dir = (tspec->ts_info[0] >> 5) & 0x03;
227 tid = (tspec->ts_info[0] >> 1) & 0x0f;
230 val = le_to_host16(tspec->nominal_msdu_size);
234 le_to_host32(tspec->mean_data_rate));
236 le_to_host32(tspec
186 wmm_send_action(struct hostapd_data *hapd, const u8 *addr, const struct wmm_tspec_element *tspec, u8 action_code, u8 dialogue_token, u8 status_code) argument
292 wmm_addts_req(struct hostapd_data *hapd, const struct ieee80211_mgmt *mgmt, struct wmm_tspec_element *tspec, size_t len) argument
[all...]
H A Dwpa_auth_ft.c2319 struct wmm_tspec_element *tspec; local
2321 if (parse.wmm_tspec_len + 2 < (int) sizeof(*tspec)) {
2328 if (end - pos < (int) sizeof(*tspec)) {
2335 tspec = (struct wmm_tspec_element *) pos;
2336 os_memcpy(tspec, parse.wmm_tspec - 2, sizeof(*tspec));
/netbsd-current/external/bsd/openldap/dist/include/
H A Dldap_rq.h33 char *tspec; member in struct:re_s
50 char *tspec
/netbsd-current/sys/sys/
H A Dtimepps.h53 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
/netbsd-current/external/bsd/ntp/dist/include/
H A Dtimepps-Solaris.h143 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
H A Dtimepps-SunOS.h143 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
H A Dtimepps-SCO.h143 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
/netbsd-current/external/bsd/openldap/dist/libraries/libldap/
H A Drq.c51 char *tspec
65 entry->tspec = tspec;
/netbsd-current/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dcparse.d1619 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
[all...]
H A Dtransitivevisitor.d1023 if (e.tspec)
1024 visitType(e.tspec);
H A Dexpression.h667 /* is(targ id tok tspec)
672 Type *tspec; // can be NULL member in class:IsExp
H A Dexpression.d4168 * is(targ id tok tspec)
4175 Type tspec; // can be null
4180 extern (D) this(const ref Loc loc, Type targ, Identifier id, TOK tok, Type tspec, TOK tok2, TemplateParameters* parameters)
4186 this.tspec = tspec;
4201 return new IsExp(loc, targ.syntaxCopy(), id, tok, tspec ? tspec.syntaxCopy() : null, tok2, p);
H A Dexpressionsem.d5453 /* 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
[all...]
H A Dparse.d8210 AST.Type tspec = null;
8248 tspec = parseType();
8251 if (tspec)
8269 e = new AST.IsExp(loc, targ, ident, tok, tspec, tok2, tpl);
/netbsd-current/sbin/mount_nfs/
H A Dmount_nfs.c177 char *tspec; local
184 if ((tspec = strdup(spec)) == NULL) {
187 if (!getnfsargs(tspec, nfsargsp)) {
190 free(tspec);
/netbsd-current/external/bsd/openldap/dist/servers/slapd/back-monitor/
H A Dthread.c270 i, re->tname, re->tspec );
303 i, re->tname, re->tspec );
/netbsd-current/usr.bin/xlint/lint1/
H A Dlex.c96 #define kwdef_type(name, tspec, since) \
97 kwdef(name, T_TYPE, .u.kw_tspec = (tspec), since, 0, 1)
/netbsd-current/external/gpl3/gcc.old/dist/gcc/d/dmd/
H A Dexpression.h698 /* is(targ id tok tspec)
704 Type *tspec; // can be NULL member in class:IsExp
708 IsExp(Loc loc, Type *targ, Identifier *id, TOK tok, Type *tspec,
H A Dexpression.c4892 Type *tspec, TOK tok2, TemplateParameters *parameters)
4898 this->tspec = tspec;
4918 tspec ? tspec->syntaxCopy() : NULL,
4891 IsExp(Loc loc, Type *targ, Identifier *id, TOK tok, Type *tspec, TOK tok2, TemplateParameters *parameters) argument
H A Dexpressionsem.c1910 /* is(targ id tok tspec)
2102 else if (e->tspec && !e->id && !(e->parameters && e->parameters->dim))
2104 /* Evaluate to true if targ matches tspec
2105 * is(targ == tspec)
2106 * is(targ : tspec)
2108 e->tspec = e->tspec->semantic(e->loc, sc);
2110 //printf("tspec = %s, %s\n", e->tspec->toChars(), e->tspec
[all...]
H A Dparse.c7019 Type *tspec = NULL; local
7056 tspec = parseType();
7059 if (tspec)
7077 e = new IsExp(loc, targ, ident, tok, tspec, tok2, tpl);
H A Dhdrgen.c2743 else if (e->tspec)
2749 typeToBuffer(e->tspec, NULL);

Completed in 441 milliseconds

12