Searched refs:description (Results 1 - 19 of 19) sorted by relevance

/libcore/expectations/
H A Dknownfailures.txt6 description: "four known CharsetDecoder-/CharsetEncoder-related failures",
16 description: "can't compile a pattern with negative look-behind and quantifiers with upper bounds",
21 description: "our regex implementation calls toString on CharSequences",
26 description: "Package.getPackages(), ClassLoader.getPackages() both omit results",
31 description: "Deserialization shouldn't set transient fields",
36 description: "Investigate InterruptedIOException + InputStream.read(), OutputStream.write()",
44 description: "SimpleDateFormat assumes DST always uses 60 minute offset; this fails for zones like Lord Howe Daylight Time",
49 description: "Expat uses an unbounded number of global references",
54 description: "Test fails, Intermediate certificate lacks BasicConstraints",
59 description
[all...]
H A Dtaggedtests.txt7 description: "large tests",
H A Dbrokentests.txt6 description: "libcore.java.io.OldFileTest#test_deleteOnExit fails on IRM05 mysid-user",
11 description: "FIONREAD/SIOCINQ returns the wrong result on sockets (5731252 is the root cause of 5534202)",
16 description: "libcore.java.net.URLConnectionTest#testServerShutdownInput fails on ICL27 mysid-userdebug (5534202 is caused by 5731252)",
21 description: "Support digest authentication in HttpURLConnection",
26 description: "Without no security manager, we don't care if checkPermission's argument is null",
31 description: "This test and testGetKeepAlive have been failing in our continuous build recently.",
39 description: "on the RI, writing the two halves of the surrogate pair in separate writes
50 description: "We're retiring the security manager. Unfortunately, tests all over the place
59 description: "ignore compilation errors due to different available APIs",
65 description
[all...]
H A Dicebox.txt6 description: "javasqlite doesn't honor query timeouts",
16 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
22 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
28 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
34 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
40 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
46 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
52 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
60 description: "Dalvik doesn't support XML Schemas, DTDs or validation",
66 description
[all...]
/libcore/crypto/src/main/java/org/conscrypt/
H A DAlertException.java31 // alert description code
32 private final byte description; field in class:AlertException
37 * @param description The alert description code from {@link AlertProtocol}
42 protected AlertException(byte description, SSLException reason) { argument
45 this.description = description;
58 * Returns alert's description code.
60 * @return alert description code from {@link AlertProtocol}
64 return description;
[all...]
H A DMessage.java54 * @param description
57 protected void fatalAlert(byte description, String reason) { argument
58 throw new AlertException(description, new SSLHandshakeException(reason));
63 * @param description
67 protected void fatalAlert(byte description, String reason, Throwable cause) { argument
68 throw new AlertException(description, new SSLException(reason, cause));
H A DAlertProtocol.java39 * Defines the description code of the close_notify alert
43 * Defines the description code of the unexpected_message alert
47 * Defines the description code of the bad_record_mac alert
51 * Defines the description code of the decryption_failed alert
55 * Defines the description code of the record_overflow alert
59 * Defines the description code of the decompression_failure alert
63 * Defines the description code of the handshake_failure alert
67 * Defines the description code of the bad_certificate alert
71 * Defines the description code of the unsupported_certificate alert
75 * Defines the description cod
161 alert(byte level, byte description) argument
[all...]
H A DHandshakeProtocol.java292 * @param description
294 protected void sendWarningAlert(byte description) { argument
295 recordProtocol.alert(AlertProtocol.WARNING, description);
301 * @param description
304 protected void fatalAlert(byte description, String reason) { argument
305 throw new AlertException(description, new SSLHandshakeException(reason));
311 * @param description
315 protected void fatalAlert(byte description, String reason, Exception cause) { argument
316 throw new AlertException(description, new SSLException(reason, cause));
322 * @param description
325 fatalAlert(byte description, SSLException cause) argument
[all...]
H A DSSLRecordProtocol.java433 * @param description: byte
435 protected void alert(byte level, byte description) { argument
437 logger.println("SSLRecordProtocol.allert: "+level+" "+description);
439 alertProtocol.alert(level, description);
H A DSSLEngineImpl.java481 String description = "Fatal alert received "
484 throw new SSLException(description);
H A DSSLSocketImpl.java811 String description = "Fatal alert received "
814 throw new SSLException(description);
/libcore/luni/src/main/java/java/sql/
H A DDriverPropertyInfo.java35 * A description of the property. May be {@code null}.
37 public String description; field in class:DriverPropertyInfo
70 this.description = null;
/libcore/luni/src/main/java/java/util/regex/
H A DPatternSyntaxException.java24 * {@link Pattern}. Might include a detailed description, the original regular
35 * Holds the description of the syntax error, or null if the description is
56 * @param description
57 * the description of the syntax error, or {@code null} if the
58 * description is not known.
66 public PatternSyntaxException(String description, String pattern, int index) { argument
67 this.desc = description;
84 * potentially multi-line, and it might include a detailed description, the
122 * Returns the description o
[all...]
/libcore/luni/src/main/java/libcore/io/
H A DErrnoException.java52 String description = Libcore.os.strerror(errno);
53 return functionName + " failed: " + errnoName + " (" + description + ")";
H A DGaiException.java53 String description = Libcore.os.gai_strerror(error);
54 return functionName + " failed: " + gaiName + " (" + description + ")";
/libcore/luni/src/test/java/libcore/java/sql/
H A DOldDriverPropertyInfoTest.java63 String description = info[0].description;
64 assertNull(description);
/libcore/luni/src/test/java/libcore/xml/
H A DDomTest.java85 + " <description xmlns=\"http://marketing\">Belgian<![CDATA[ waffles & strawberries (< 5g ]]>of fat)</description>\n"
110 private Element description; field in class:DomTest
153 description = (Element) item.getChildNodes().item(3);
154 descriptionText1 = (Text) description.getChildNodes().item(0);
155 descriptionText2 = (CDATASection) description.getChildNodes().item(1);
156 descriptionText3 = (Text) description.getChildNodes().item(2);
178 itemXmlnsA, name, standard, deluxe, waffles, description,
216 assertEquals("http://addons", description.lookupNamespaceURI("a"));
248 assertEquals("http://marketing", description
[all...]
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/libcore/crypto/src/main/native/
H A Dorg_conscrypt_NativeCrypto.cpp1664 jstring description = env->NewStringUTF(tmp); local
1667 return description;
1694 jstring description = env->NewStringUTF(tmp); local
1697 return description;

Completed in 5931 milliseconds