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

  /external/wpa_supplicant_8/src/ap/
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);
64 struct sta_info *sta, u8 *eid);
68 u8 * hostapd_eid_interworking(struct hostapd_data *hapd, u8 *eid);
69 u8 * hostapd_eid_adv_proto(struct hostapd_data *hapd, u8 *eid);
70 u8 * hostapd_eid_roaming_consortium(struct hostapd_data *hapd, u8 *eid);
71 u8 * hostapd_eid_time_adv(struct hostapd_data *hapd, u8 *eid);
    [all...]
ieee802_11_shared.c 23 struct sta_info *sta, u8 *eid)
25 u8 *pos = eid;
167 u8 * hostapd_eid_ext_capab(struct hostapd_data *hapd, u8 *eid)
169 u8 *pos = eid;
177 return eid;
205 u8 * hostapd_eid_interworking(struct hostapd_data *hapd, u8 *eid)
207 u8 *pos = eid;
212 return eid;
245 u8 * hostapd_eid_adv_proto(struct hostapd_data *hapd, u8 *eid)
247 u8 *pos = eid;
    [all...]
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 62 static u8 * hostapd_eid_ds_params(struct hostapd_data *hapd, u8 *eid)
64 *eid++ = WLAN_EID_DS_PARAMS;
65 *eid++ = 1;
66 *eid++ = hapd->iconf->channel;
67 return eid;
71 static u8 * hostapd_eid_erp_info(struct hostapd_data *hapd, u8 *eid)
75 return eid;
87 *eid++ = WLAN_EID_ERP_INFO;
88 *eid++ = 1;
89 *eid++ = ieee802_11_erp_info(hapd)
    [all...]
ieee802_11.c 40 u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid)
42 u8 *pos = eid;
46 return eid;
77 u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid)
79 u8 *pos = eid;
83 return eid;
89 return eid;
    [all...]
  /external/tinyalsa/
mixer.c 92 struct snd_ctl_elem_id *eid = NULL; local
116 eid = calloc(elist.count, sizeof(struct snd_ctl_elem_id));
117 if (!eid)
123 elist.pids = eid;
129 ei->id.numid = eid[n].numid;
152 free(eid);
157 if (eid)
158 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 };
  /frameworks/base/graphics/java/android/renderscript/
RenderScript.java 243 native int rsnTypeCreate(int con, int eid, int x, int y, int z, boolean mips, boolean faces);
244 synchronized int nTypeCreate(int eid, int x, int y, int z, boolean mips, boolean faces) {
246 return rsnTypeCreate(mContext, eid, x, y, z, mips, faces);
    [all...]
  /external/wpa_supplicant_8/src/common/
ieee802_11_defs.h 717 u8 eid; /* 221 = 0xdd */ member in struct:wmm_tspec_element
  /frameworks/base/graphics/jni/
android_renderscript_RenderScript.cpp 429 nTypeCreate(JNIEnv *_env, jobject _this, RsContext con, RsElement eid,
432 LOG_API("nTypeCreate, con(%p) eid(%p), x(%i), y(%i), z(%i), mips(%i), faces(%i)",
433 con, eid, dimx, dimy, dimz, mips, faces);
435 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces);
    [all...]
  /frameworks/base/tools/aapt/
ResourceTable.cpp 3802 int eid = Res_GETENTRY(resID); local
    [all...]
  /external/chromium/net/base/
effective_tld_names.cc     [all...]

Completed in 541 milliseconds