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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Tools/iExploder/iexploder-1.3.2/tools/
showtest.rb 30 ie = IExploder.new($HTML_MAX_TAGS, $HTML_MAX_ATTRS, $CSS_MAX_PROPS)
31 ie.readTagFiles()
38 ie.test_num = ARGV[0].to_i
39 ie.subtest_num = ARGV[1].to_i || 0
40 ie.lookup_mode = 1
41 ie.setRandomSeed
43 puts ie.buildPage()
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/
iexploder.cgi 23 ie = IExploder.new($CONFIG_PATH)
25 ie.cgi_url=ENV['SCRIPT_NAME'] || '?'
26 ie.browser=ENV['HTTP_USER_AGENT'] || 'unknown'
27 ie.test_num = cgi.params['t'][0].to_i
28 ie.subtest_data = cgi.params['s'][0] || nil
29 ie.random_mode = cgi.params['r'][0]
30 ie.lookup_mode = cgi.params['l'][0]
31 ie.stop_num = cgi.params['x'][0] || nil
32 ie.setRandomSeed()
36 header_options = ie.buildHeaders(mime_type
    [all...]
webserver.rb 31 ie = $INSTANCE.dup
32 ie.test_num = request.query['t'].to_i || 0
33 ie.subtest_data = request.query['s'] || nil
34 ie.random_mode = request.query['r']
35 ie.lookup_mode = request.query['l']
36 ie.claimed_browser = request.query['b'] || nil
37 ie.stop_num = request.query['x'] || nil
51 ie.browser = user_agent
52 ie.setRandomSeed()
57 for (key, value) in ie.buildHeaders(mime_type
    [all...]
  /external/webkit/Tools/iExploder/iexploder-1.3.2/htdocs/
iexploder.cgi 31 ie = IExploder.new($HTML_MAX_TAGS, $HTML_MAX_ATTRS, $CSS_MAX_PROPS)
32 ie.readTagFiles()
35 ie.url=ENV['SCRIPT_NAME'] || '?'
36 ie.test_num = cgi.params['test'][0].to_i
37 ie.subtest_num = cgi.params['subtest'][0].to_i || 0
38 ie.random_mode = cgi.params['random'][0]
39 ie.lookup_mode = cgi.params['lookup'][0]
40 ie.stop_num = cgi.params['stop'][0].to_i || 0
41 ie.setRandomSeed
44 ie.buildPage(
    [all...]
webserver.rb 49 ie = $ie_preload.dup
50 ie.test_num = req.query['test'].to_i
51 ie.subtest_num = req.query['subtest'].to_i || 0
52 ie.random_mode = req.query['random']
53 ie.lookup_mode = req.query['lookup']
54 ie.stop_num = req.query['stop'].to_i
55 ie.setRandomSeed
58 res.body = ie.buildPage()
  /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.
123 wpa_printf(MSG_DEBUG, "RSN: Too short IE buffer (%lu bytes)",
234 * wpa_gen_wpa_ie - Generate WPA/RSN IE based on current security policy
236 * @wpa_ie: Pointer to memory area for the generated WPA/RSN IE
237 * @wpa_ie_len: Maximum length of the generated WPA/RSN IE
238 * Returns: Length of the generated WPA/RSN IE or -1 on failur
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
BackgroundThread.java 40 } catch (InterruptedException ie) {
41 ie.printStackTrace();
  /external/wpa_supplicant_6/wpa_supplicant/src/wps/
wps.c 75 wpa_hexdump_buf(MSG_DEBUG, "WPS: WPS IE from (Re)AssocReq",
78 wpa_printf(MSG_DEBUG, "WPS: Failed to parse WPS IE "
82 "in (Re)AssocReq WPS IE");
84 wpa_printf(MSG_DEBUG, "WPS: Request Type (from WPS IE "
85 "in (Re)AssocReq WPS IE): %d",
163 * wps_is_selected_pbc_registrar - Check whether WPS IE indicates active PBC
164 * @msg: WPS IE contents from Beacon or Probe Response frame
189 * wps_is_selected_pin_registrar - Check whether WPS IE indicates active PIN
190 * @msg: WPS IE contents from Beacon or Probe Response frame
220 * wps_get_uuid_e - Get UUID-E from WPS IE
246 struct wpabuf *ie; local
285 struct wpabuf *ie; local
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps.c 76 wpa_hexdump_buf(MSG_DEBUG, "WPS: WPS IE from (Re)AssocReq",
79 wpa_printf(MSG_DEBUG, "WPS: Failed to parse WPS IE "
83 "in (Re)AssocReq WPS IE");
85 wpa_printf(MSG_DEBUG, "WPS: Request Type (from WPS IE "
86 "in (Re)AssocReq WPS IE): %d",
185 * wps_is_selected_pbc_registrar - Check whether WPS IE indicates active PBC
186 * @msg: WPS IE contents from Beacon or Probe Response frame
246 * wps_is_selected_pin_registrar - Check whether WPS IE indicates active PIN
247 * @msg: WPS IE contents from Beacon or Probe Response frame
262 * wps_is_addr_authorized - Check whether WPS IE authorizes MAC addres
372 struct wpabuf *ie; local
406 struct wpabuf *ie; local
451 struct wpabuf *ie; local
    [all...]
  /dalvik/tests/033-class-init-deadlock/src/
Main.java 20 try { Thread.sleep(1000); } catch (InterruptedException ie) { }
23 try { Thread.sleep(6000); } catch (InterruptedException ie) { }
38 try { Thread.sleep(3000); } catch (InterruptedException ie) { }
48 try { Thread.sleep(3000); } catch (InterruptedException ie) { }
  /dalvik/tests/059-finalizer-throw/src/
Main.java 34 } catch (InterruptedException ie) {
35 System.err.println(ie);
42 } catch (InterruptedException ie) {
43 System.err.println(ie);
  /dalvik/tests/030-bad-finalizer/src/
BadFinalizer.java 10 } catch (InterruptedException ie) {
11 System.out.println("Snooze: " + ie.getMessage());
  /external/clang/lib/Frontend/
TextDiagnosticBuffer.cpp 47 for (const_iterator it = err_begin(), ie = err_end(); it != ie; ++it)
50 for (const_iterator it = warn_begin(), ie = warn_end(); it != ie; ++it)
53 for (const_iterator it = note_begin(), ie = note_end(); it != ie; ++it)
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
scan_helpers.c 22 const u8 * wpa_scan_get_ie(const struct wpa_scan_res *res, u8 ie)
32 if (pos[0] == ie)
96 const u8 *ie; local
99 ie = wpa_scan_get_ie(res, WLAN_EID_SUPP_RATES);
100 for (i = 0; ie && i < ie[1]; i++) {
101 if ((ie[i + 2] & 0x7f) > rate)
102 rate = ie[i + 2] & 0x7f;
105 ie = wpa_scan_get_ie(res, WLAN_EID_EXT_SUPP_RATES);
106 for (i = 0; ie && i < ie[1]; i++)
    [all...]
  /dalvik/tests/036-finalizer/src/
Main.java 15 } catch (InterruptedException ie) {
16 System.out.println("Snooze: " + ie.getMessage());
40 } catch (InterruptedException ie) {
41 throw new RuntimeException(ie);
68 } catch (InterruptedException ie) {
69 throw new RuntimeException(ie);
  /dalvik/tests/039-join-main/src/
Main.java 15 catch (InterruptedException ie) {}
34 } catch (InterruptedException ie) {
  /dalvik/tests/050-sync-test/src/
Main.java 26 } catch (InterruptedException ie) {
28 ie.printStackTrace();
43 } catch (InterruptedException ie) {
45 ie.printStackTrace();
55 } catch (InterruptedException ie) {
57 ie.printStackTrace();
146 } catch (InterruptedException ie) {
160 } catch (InterruptedException ie) {
  /external/clang/lib/Driver/
Job.cpp 31 for (iterator it = begin(), ie = end(); it != ie; ++it)
ArgList.cpp 50 for (iterator it = begin(), ie = end(); it != ie; ) {
53 ie = end();
62 for (const_reverse_iterator it = rbegin(), ie = rend(); it != ie; ++it)
70 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
82 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
97 for (const_iterator it = begin(), ie = end(); it != ie; ++it)
    [all...]
  /dalvik/tests/053-wait-some/src/
Main.java 27 } catch (InterruptedException ie) {
28 ie.printStackTrace();
37 } catch (InterruptedException ie) {
38 ie.printStackTrace();
  /external/llvm/lib/Support/
DAGDeltaAlgorithm.cpp 130 ie = S.end(); it != ie; ++it)
191 ie = Changes.end(); it != ie; ++it) {
196 ie = Dependencies.end(); it != ie; ++it) {
203 ie = Changes.end(); it != ie; ++it)
215 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) {
  /external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/
wpa_ie.c 2 * wpa_supplicant - WPA/RSN IE and KDE processing
72 /* No WPA IE - fail silently */
77 wpa_printf(MSG_DEBUG, "%s: ie len too short %lu",
88 wpa_printf(MSG_DEBUG, "%s: malformed ie or unknown version",
101 wpa_printf(MSG_DEBUG, "%s: ie length mismatch, %u too much",
112 wpa_printf(MSG_DEBUG, "%s: ie count botch (pairwise), "
122 wpa_printf(MSG_DEBUG, "%s: ie too short (for key mgmt)",
133 wpa_printf(MSG_DEBUG, "%s: ie count botch (key mgmt), "
143 wpa_printf(MSG_DEBUG, "%s: ie too short (for capabilities)",
155 wpa_printf(MSG_DEBUG, "%s: ie has %u trailing bytes - ignored"
    [all...]
  /dalvik/tests/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...]
  /external/wpa_supplicant_8/src/p2p/
p2p_group.c 125 static void p2p_client_info(struct wpabuf *ie, struct p2p_group_member *m)
129 if (wpabuf_tailroom(ie) < wpabuf_len(m->client_info) + 1)
131 wpabuf_put_buf(ie, m->client_info);
136 struct wpabuf *ie)
157 p2p_buf_add_capability(ie, dev_capab, group_capab);
161 static void p2p_group_add_noa(struct wpabuf *ie, struct wpabuf *noa)
166 wpabuf_put_u8(ie, P2P_ATTR_NOTICE_OF_ABSENCE);
167 wpabuf_put_le16(ie, wpabuf_len(noa));
168 wpabuf_put_buf(ie, noa);
174 struct wpabuf *ie; local
194 struct wpabuf *ie; local
    [all...]

Completed in 608 milliseconds

1 2 3 4 5 6 7 8 91011>>