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

1 2 3 4 5 6 7 8 91011>>

  /external/wpa_supplicant_8/src/rsn_supp/
wpa_ie.c 2 * wpa_supplicant - WPA/RSN IE and KDE processing
20 * wpa_parse_wpa_ie - Parse WPA/RSN IE
21 * @wpa_ie: Pointer to WPA or RSN IE
22 * @wpa_ie_len: Length of the WPA/RSN IE
26 * Parse the contents of WPA or RSN IE and write the parsed data into data.
118 wpa_printf(MSG_DEBUG, "RSN: Too short IE buffer (%lu bytes)",
285 * wpa_gen_wpa_ie - Generate WPA/RSN IE based on current security policy
287 * @wpa_ie: Pointer to memory area for the generated WPA/RSN IE
288 * @wpa_ie_len: Maximum length of the generated WPA/RSN IE
289 * Returns: Length of the generated WPA/RSN IE or -1 on failur
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wifi_display.c 41 struct wpabuf *ie; local
54 ie = wpabuf_alloc(len);
55 if (ie == NULL)
60 wpabuf_put_buf(ie, global->wfd_subelem[i]);
63 return ie;
69 struct wpabuf *ie, *buf; local
75 wpa_printf(MSG_DEBUG, "WFD: Update WFD IE");
79 "include WFD IE");
103 * WFD IE is included in number of management frames. Two different
161 ie = wifi_display_encaps(buf)
    [all...]
wifi_display.h 19 struct wpabuf *ie);
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/
rotate.pass.cpp 111 int ie[] = {0, 1, 2, 3, 4}; local
112 const unsigned se = sizeof(ie)/sizeof(ie[0]);
113 r = std::rotate(Iter(ie), Iter(ie), Iter(ie+se));
114 assert(base(r) == ie+se);
115 assert(ie[0] == 0);
116 assert(ie[1] == 1);
117 assert(ie[2] == 2)
313 std::unique_ptr<int> ie[5]; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.rotate/
rotate.pass.cpp 111 int ie[] = {0, 1, 2, 3, 4}; local
112 const unsigned se = sizeof(ie)/sizeof(ie[0]);
113 r = std::rotate(Iter(ie), Iter(ie), Iter(ie+se));
114 assert(base(r) == ie+se);
115 assert(ie[0] == 0);
116 assert(ie[1] == 1);
117 assert(ie[2] == 2)
313 std::unique_ptr<int> ie[5]; local
    [all...]
  /art/test/033-class-init-deadlock/src/
Main.java 34 try { Thread.sleep(1000); } catch (InterruptedException ie) { }
37 try { Thread.sleep(6000); } catch (InterruptedException ie) { }
52 try { Thread.sleep(3000); } catch (InterruptedException ie) { }
62 try { Thread.sleep(3000); } catch (InterruptedException ie) { }
  /art/test/059-finalizer-throw/src/
Main.java 48 } catch (InterruptedException ie) {
49 System.err.println(ie);
56 } catch (InterruptedException ie) {
57 System.err.println(ie);
  /external/clang/lib/Frontend/
TextDiagnosticBuffer.cpp 50 for (const_iterator it = err_begin(), ie = err_end(); it != ie; ++it)
53 for (const_iterator it = warn_begin(), ie = warn_end(); it != ie; ++it)
56 for (const_iterator it = remark_begin(), ie = remark_end(); it != ie; ++it)
59 for (const_iterator it = note_begin(), ie = note_end(); it != ie; ++it)
  /frameworks/compile/mclinker/lib/Script/
SectionsCmd.cpp 25 for (iterator it = begin(), ie = end(); it != ie; ++it) {
35 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
71 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
OutputSectDesc.cpp 35 for (iterator it = begin(), ie = end(); it != ie; ++it) {
101 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
122 ie = m_Epilog.phdrs().end(); it != ie; ++it) {
161 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
  /external/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
unique.pass.cpp 56 int ie[] = {0, 0, 1, 0}; local
57 const unsigned se = sizeof(ie)/sizeof(ie[0]);
58 r = std::unique(Iter(ie), Iter(ie+se));
59 assert(base(r) == ie + 3);
60 assert(ie[0] == 0);
61 assert(ie[1] == 1);
62 assert(ie[2] == 0);
130 Ptr ie[4] local
    [all...]
unique_pred.pass.cpp 74 int ie[] = {0, 0, 1, 0}; local
75 const unsigned se = sizeof(ie)/sizeof(ie[0]);
77 r = std::unique(Iter(ie), Iter(ie+se), count_equal());
78 assert(base(r) == ie + 3);
79 assert(ie[0] == 0);
80 assert(ie[1] == 1);
81 assert(ie[2] == 0);
164 Ptr ie[4] local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
unique.pass.cpp 56 int ie[] = {0, 0, 1, 0}; local
57 const unsigned se = sizeof(ie)/sizeof(ie[0]);
58 r = std::unique(Iter(ie), Iter(ie+se));
59 assert(base(r) == ie + 3);
60 assert(ie[0] == 0);
61 assert(ie[1] == 1);
62 assert(ie[2] == 0);
130 Ptr ie[4] local
    [all...]
unique_pred.pass.cpp 74 int ie[] = {0, 0, 1, 0}; local
75 const unsigned se = sizeof(ie)/sizeof(ie[0]);
77 r = std::unique(Iter(ie), Iter(ie+se), count_equal());
78 assert(base(r) == ie + 3);
79 assert(ie[0] == 0);
80 assert(ie[1] == 1);
81 assert(ie[2] == 0);
164 Ptr ie[4] local
    [all...]
  /art/test/039-join-main/src/
Main.java 29 catch (InterruptedException ie) {}
48 } catch (InterruptedException ie) {
  /art/test/050-sync-test/src/
Main.java 40 } catch (InterruptedException ie) {
42 ie.printStackTrace();
57 } catch (InterruptedException ie) {
59 ie.printStackTrace();
70 } catch (InterruptedException ie) {
72 ie.printStackTrace();
164 } catch (InterruptedException ie) {
178 } catch (InterruptedException ie) {
  /external/wpa_supplicant_8/src/wps/
wps.c 105 wpa_hexdump_buf(MSG_DEBUG, "WPS: WPS IE from (Re)AssocReq",
108 wpa_printf(MSG_DEBUG, "WPS: Failed to parse WPS IE "
112 "in (Re)AssocReq WPS IE");
114 wpa_printf(MSG_DEBUG, "WPS: Request Type (from WPS IE "
115 "in (Re)AssocReq WPS IE): %d",
229 * wps_is_selected_pbc_registrar - Check whether WPS IE indicates active PBC
230 * @msg: WPS IE contents from Beacon or Probe Response frame
290 * wps_is_selected_pin_registrar - Check whether WPS IE indicates active PIN
291 * @msg: WPS IE contents from Beacon or Probe Response frame
306 * wps_is_addr_authorized - Check whether WPS IE authorizes MAC addres
418 struct wpabuf *ie; local
452 struct wpabuf *ie; local
498 struct wpabuf *ie; local
    [all...]
  /art/test/053-wait-some/src/
Main.java 41 } catch (InterruptedException ie) {
42 ie.printStackTrace();
51 } catch (InterruptedException ie) {
52 ie.printStackTrace();
  /external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
TestThread.java 87 } catch (InterruptedException ie) {
89 ie.printStackTrace();
134 } catch (InterruptedException ie) {
135 ie.printStackTrace();
  /external/llvm/lib/Support/
DAGDeltaAlgorithm.cpp 132 ie = S.end(); it != ie; ++it)
193 ie = Changes.end(); it != ie; ++it) {
198 ie = Dependencies.end(); it != ie; ++it) {
205 ie = Changes.end(); it != ie; ++it)
217 ie = pred_end(Change); it != ie; ++it)
    [all...]
DeltaAlgorithm.cpp 35 ie = S.end(); it != ie; ++it, ++idx)
61 ie = Sets.end(); it != ie; ++it)
74 ie = Sets.end(); it != ie; ++it) {
  /art/test/068-classloader/src/
Main.java 83 } catch (InstantiationException ie) {
84 System.err.println("newInstance failed: " + ie);
154 } catch (InstantiationException ie) {
155 System.err.println("newInstance failed: " + ie);
201 } catch (InstantiationException ie) {
202 System.err.println("newInstance failed: " + ie);
249 } catch (InstantiationException ie) {
250 System.err.println("newInstance failed: " + ie);
295 } catch (InstantiationException ie) {
296 System.err.println("newInstance failed: " + ie);
    [all...]
  /art/test/036-finalizer/src/
Main.java 31 } catch (InterruptedException ie) {
32 System.out.println("Snooze: " + ie.getMessage());
57 } catch (InterruptedException ie) {
58 throw new RuntimeException(ie);
85 } catch (InterruptedException ie) {
86 throw new RuntimeException(ie);
  /frameworks/compile/mclinker/lib/LD/
BranchIslandFactory.cpp 48 for (SectionData::iterator it = sd.begin(), ie = sd.end(); it != ie; ++it) {
83 for (iterator it = begin(), ie = end(), prev = ie; it != ie;
90 if (prev != ie) {
  /external/llvm/lib/Option/
ArgList.cpp 51 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
59 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
71 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
86 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
101 for (const_iterator it = begin(), ie = end(); it != ie; ++it)
    [all...]

Completed in 286 milliseconds

1 2 3 4 5 6 7 8 91011>>