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

1 2

  /external/wpa_supplicant_8/src/ap/
hs20.c 19 u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid)
22 return eid;
23 *eid++ = WLAN_EID_VENDOR_SPECIFIC;
24 *eid++ = 5;
25 WPA_PUT_BE24(eid, OUI_WFA);
26 eid += 3;
27 *eid++ = HS20_INDICATION_OUI_TYPE;
29 *eid++ = hapd->conf->disable_dgaf ? 0x01 : 0x00;
30 return eid;
hs20.h 14 u8 * hostapd_eid_hs20_indication(struct hostapd_data *hapd, u8 *eid);
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_BE24(eid, OUI_WFA);
100 eid += 3;
101 *eid++ = P2P_OUI_TYPE;
103 *eid++ = P2P_ATTR_MANAGEABILITY;
104 WPA_PUT_LE16(eid, 1);
105 eid += 2;
110 *eid++ = bitmap
    [all...]
wmm.h 22 u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid);
23 int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid,
ieee802_11.h 43 u8 * hostapd_eid_ext_capab(struct hostapd_data *hapd, u8 *eid);
44 u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid);
45 u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid);
46 u8 * hostapd_eid_ht_capabilities(struct hostapd_data *hapd, u8 *eid);
47 u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid);
48 u8 * hostapd_eid_vht_capabilities(struct hostapd_data *hapd, u8 *eid);
49 u8 * hostapd_eid_vht_operation(struct hostapd_data *hapd, u8 *eid);
71 struct sta_info *sta, u8 *eid);
75 u8 * hostapd_eid_interworking(struct hostapd_data *hapd, u8 *eid);
76 u8 * hostapd_eid_adv_proto(struct hostapd_data *hapd, u8 *eid);
    [all...]
ieee802_11_shared.c 23 struct sta_info *sta, u8 *eid)
25 u8 *pos = eid;
209 u8 * hostapd_eid_ext_capab(struct hostapd_data *hapd, u8 *eid)
211 u8 *pos = eid;
229 return eid;
242 while (len > 0 && eid[1 + len] == 0) {
244 eid[1] = len;
247 return eid;
249 return eid + 2 + len;
253 u8 * hostapd_eid_interworking(struct hostapd_data *hapd, u8 *eid)
    [all...]
ieee802_11_vht.c 23 u8 * hostapd_eid_vht_capabilities(struct hostapd_data *hapd, u8 *eid)
26 u8 *pos = eid;
30 return eid;
50 u8 * hostapd_eid_vht_operation(struct hostapd_data *hapd, u8 *eid)
53 u8 *pos = eid;
56 return eid;
p2p_hostapd.h 33 u8 * hostapd_eid_p2p_manage(struct hostapd_data *hapd, u8 *eid);
wmm.c 57 u8 * hostapd_eid_wmm(struct hostapd_data *hapd, u8 *eid)
59 u8 *pos = eid;
65 return eid;
66 eid[0] = WLAN_EID_VENDOR_SPECIFIC;
95 eid[1] = pos - eid - 2; /* element length */
104 * element. eid does not include Element ID and Length octets.
106 int hostapd_eid_wmm_valid(struct hostapd_data *hapd, const u8 *eid, size_t len)
110 wpa_hexdump(MSG_MSGDUMP, "WMM IE", eid, len);
118 wmm = (struct wmm_information_element *) eid;
    [all...]
ieee802_11_ht.c 28 u8 * hostapd_eid_ht_capabilities(struct hostapd_data *hapd, u8 *eid)
31 u8 *pos = eid;
35 return eid;
57 u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid)
60 u8 *pos = eid;
63 return eid;
beacon.c 63 static u8 * hostapd_eid_ds_params(struct hostapd_data *hapd, u8 *eid)
65 *eid++ = WLAN_EID_DS_PARAMS;
66 *eid++ = 1;
67 *eid++ = hapd->iconf->channel;
68 return eid;
72 static u8 * hostapd_eid_erp_info(struct hostapd_data *hapd, u8 *eid)
76 return eid;
88 *eid++ = WLAN_EID_ERP_INFO;
89 *eid++ = 1;
90 *eid++ = ieee802_11_erp_info(hapd)
    [all...]
wnm_ap.c 71 wnmsleep_ie.eid = WLAN_EID_WNMSLEEP;
211 wpa_printf(MSG_DEBUG, "WNM: EID %d not recognized",
ieee802_11.c 44 u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid)
46 u8 *pos = eid;
50 return eid;
89 u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid)
91 u8 *pos = eid;
95 return eid;
103 return eid;
    [all...]
  /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/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 61 * Extracts the ID and calendar email from the eid parameter of a URI.
63 * The URI contains an "eid" parameter, which is comprised of an ID, followed
73 String eidParam = uri.getQueryParameter("eid");
74 if (debug) Log.d(TAG, "eid=" + eidParam );
80 if (debug) Log.d(TAG, "decoded eid=" + new String(decodedBytes) );
120 String eid = new String(decodedBytes, 0, spacePosn); local
122 if (debug) Log.d(TAG, "eid= " + eid );
129 return new String[] { eid, email };
  /external/chromium_org/google_apis/gaia/
oauth2_mint_token_flow.h 78 const std::string& eid,
oauth2_mint_token_flow.cc 103 const std::string& eid,
108 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/support/v8/renderscript/java/src/android/support/v8/renderscript/
RenderScript.java 214 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int yuv);
215 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) {
217 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
535 native int rsnScriptIntrinsicCreate(int con, int id, int eid);
536 synchronized int nScriptIntrinsicCreate(int id, int eid) {
538 return rsnScriptIntrinsicCreate(mContext, id, eid);
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
RenderScript.java 298 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces, int yuv);
299 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces, int yuv) {
301 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces, yuv);
700 native int rsnScriptIntrinsicCreate(int con, int id, int eid);
701 synchronized int nScriptIntrinsicCreate(int id, int eid) {
703 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...]
  /frameworks/rs/
rs.spec 349 param RsElement eid
  /frameworks/base/graphics/jni/
android_renderscript_RenderScript.cpp 428 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid,
431 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i), yuv(%i)",
432 con, eid, dimx, dimy, dimz, mips, faces, yuv);
434 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces, yuv);
    [all...]
  /external/wpa_supplicant_8/src/common/
ieee802_11_defs.h 822 u8 eid; /* 221 = 0xdd */ member in struct:wmm_tspec_element
1104 u8 eid; \/* WLAN_EID_WNMSLEEP *\/ member in struct:wnm_sleep_element
    [all...]

Completed in 347 milliseconds

1 2