HomeSort by relevance Sort by last modified time
    Searched refs:eid (Results 1 - 25 of 34) sorted by null

1 2

  /external/wpa_supplicant_8/src/ap/
hs20.c 20 u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid)
24 return eid;
25 *eid++ = WLAN_EID_VENDOR_SPECIFIC;
26 *eid++ = 7;
27 WPA_PUT_BE24(eid, OUI_WFA);
28 eid += 3;
29 *eid++ = HS20_INDICATION_OUI_TYPE;
34 *eid++ = conf;
35 WPA_PUT_LE16(eid, hapd->conf->anqp_domain_id);
36 eid += 2
    [all...]
p2p_hostapd.c 94 u8 * hostapd_eid_p2p_manage(struct hostapd_data *hapd, u8 *eid)
97 *eid++ = WLAN_EID_VENDOR_SPECIFIC;
98 *eid++ = 4 + 3 + 1;
99 WPA_PUT_BE32(eid, P2P_IE_VENDOR_TYPE);
100 eid += 4;
102 *eid++ = P2P_ATTR_MANAGEABILITY;
103 WPA_PUT_LE16(eid, 1);
104 eid += 2;
109 *eid++ = bitmap;
111 return eid;
    [all...]
hs20.h 14 u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid);
15 u8 * hostapd_eid_osen(struct hostapd_data *hapd, u8 *eid);
wmm.h 16 u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid);
17 int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid,
ieee802_11.h 46 u8 * hostapd_eid_ext_capab(struct hostapd_data *hapd, u8 *eid);
47 u8 * hostapd_eid_qos_map_set(struct hostapd_data *hapd, u8 *eid);
48 u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid);
49 u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid);
50 u8 * hostapd_eid_ht_capabilities(struct hostapd_data *hapd, u8 *eid);
51 u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid);
52 u8 * hostapd_eid_vht_capabilities(struct hostapd_data *hapd, u8 *eid);
53 u8 * hostapd_eid_vht_operation(struct hostapd_data *hapd, u8 *eid);
79 struct sta_info *sta, u8 *eid);
83 u8 * hostapd_eid_interworking(struct hostapd_data *hapd, u8 *eid);
    [all...]
ieee802_11_shared.c 23 struct sta_info *sta, u8 *eid)
25 u8 *pos = eid;
217 u8 * hostapd_eid_ext_capab(struct hostapd_data *hapd, u8 *eid)
219 u8 *pos = eid;
243 return eid;
256 while (len > 0 && eid[1 + len] == 0) {
258 eid[1] = len;
261 return eid;
263 return eid + 2 + len;
267 u8 * hostapd_eid_qos_map_set(struct hostapd_data *hapd, u8 *eid)
    [all...]
beacon.c 35 static u8 * hostapd_eid_bss_load(struct hostapd_data *hapd, u8 *eid, size_t len)
40 return eid;
41 *eid++ = WLAN_EID_BSS_LOAD;
42 *eid++ = 5;
43 os_memcpy(eid, hapd->conf->bss_load_test, 5);
44 eid += 5;
47 return eid;
73 static u8 * hostapd_eid_ds_params(struct hostapd_data *hapd, u8 *eid)
75 *eid++ = WLAN_EID_DS_PARAMS;
76 *eid++ = 1
    [all...]
p2p_hostapd.h 33 u8 * hostapd_eid_p2p_manage(struct hostapd_data *hapd, u8 *eid);
ieee802_11_vht.c 22 u8 * hostapd_eid_vht_capabilities(struct hostapd_data *hapd, u8 *eid)
25 u8 *pos = eid;
29 return eid;
49 u8 * hostapd_eid_vht_operation(struct hostapd_data *hapd, u8 *eid)
52 u8 *pos = eid;
55 return eid;
wmm.c 51 u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid)
53 u8 *pos = eid;
59 return eid;
60 eid[0] = WLAN_EID_VENDOR_SPECIFIC;
89 eid[1] = pos - eid - 2; /* element length */
98 * element. eid does not include Element ID and Length octets.
100 int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid, size_t len)
104 wpa_hexdump(MSG_MSGDUMP, "WMM IE", eid, len);
112 wmm = (struct wmm_information_element *) eid;
    [all...]
wpa_auth_ie.c 316 static u8 * wpa_write_osen(struct wpa_auth_config *conf, u8 *eid)
321 *eid++ = WLAN_EID_VENDOR_SPECIFIC;
322 len = eid++; /* to be filled */
323 WPA_PUT_BE24(eid, OUI_WFA);
324 eid += 3;
325 *eid++ = HS20_OSEN_OUI_TYPE;
328 RSN_SELECTOR_PUT(eid, RSN_CIPHER_SUITE_NO_GROUP_ADDRESSED);
329 eid += RSN_SELECTOR_LEN;
332 WPA_PUT_LE16(eid, 1);
333 eid += 2
    [all...]
ieee802_11_ht.c 24 u8 * hostapd_eid_ht_capabilities(struct hostapd_data *hapd, u8 *eid)
27 u8 *pos = eid;
31 return eid;
82 u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid)
85 u8 *pos = eid;
88 return eid;
  /external/chromium_org/third_party/opus/src/celt/
opus_custom_demo.c 144 int eid = 0;
153 eid = i;
159 data[eid/8] ^= 1<<(7-(eid%8));
  /external/libopus/celt/
opus_custom_demo.c 144 int eid = 0;
153 eid = i;
159 data[eid/8] ^= 1<<(7-(eid%8));
  /external/tinyalsa/
mixer.c 95 struct snd_ctl_elem_id *eid = NULL; local
122 eid = calloc(elist.count, sizeof(struct snd_ctl_elem_id));
123 if (!eid)
129 elist.pids = eid;
135 ei->id.numid = eid[n].numid;
158 free(eid);
163 if (eid)
164 free(eid);
  /packages/apps/Calendar/src/com/android/calendar/
GoogleCalendarUriIntentFilter.java 59 * Extracts the ID and calendar email from the eid parameter of a URI.
61 * The URI contains an "eid" parameter, which is comprised of an ID, followed
71 String eidParam = uri.getQueryParameter("eid");
72 if (debug) Log.d(TAG, "eid=" + eidParam );
78 if (debug) Log.d(TAG, "decoded eid=" + new String(decodedBytes) );
118 String eid = new String(decodedBytes, 0, spacePosn); local
120 if (debug) Log.d(TAG, "eid= " + eid );
127 return new String[] { eid, email };
  /external/chromium_org/google_apis/gaia/
oauth2_mint_token_flow.h 80 const std::string& eid,
oauth2_mint_token_flow.cc 102 const std::string& eid,
107 extension_id(eid),
  /hardware/qcom/audio/legacy/libalsa-intf/
alsa_mixer.c 156 struct snd_ctl_elem_id *eid = NULL; local
182 eid = calloc(elist.count, sizeof(struct snd_ctl_elem_id));
183 if (!eid)
189 elist.pids = eid;
195 ei->id.numid = eid[n].numid;
218 free(eid);
222 if (eid)
223 free(eid);
  /frameworks/base/rs/java/android/renderscript/
RenderScript.java 349 native long rsnTypeCreate(long con, long eid, int x, int y, int z, boolean mips, boolean faces, int yuv);
350 synchronized long nTypeCreate(long eid, int x, int y, int z, boolean mips, boolean faces, int yuv) {
352 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
734 native long rsnScriptIntrinsicCreate(long con, int id, long eid);
735 synchronized long nScriptIntrinsicCreate(int id, long eid) {
737 return rsnScriptIntrinsicCreate(mContext, id, eid);
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
RenderScript.java 295 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int yuv);
296 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) {
298 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
616 native int rsnScriptIntrinsicCreate(int con, int id, int eid);
617 synchronized int nScriptIntrinsicCreate(int id, int eid) {
619 return rsnScriptIntrinsicCreate(mContext, id, eid);
    [all...]
  /frameworks/support/v8/renderscript/jni/
android_renderscript_RenderScript.cpp 308 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid,
311 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
312 con, eid, dimx, dimy, dimz, mips, faces, yuv);
314 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv);
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rs.spec 349 param RsElement eid
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rs.spec 349 param RsElement eid
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rs.spec 349 param RsElement eid

Completed in 381 milliseconds

1 2