/libcore/ojluni/src/main/java/sun/util/logging/ |
D | PlatformLogger.java | 343 public void severe(String msg) { in severe() argument 344 loggerProxy.doLog(Level.SEVERE, msg); in severe() 347 public void severe(String msg, Throwable t) { in severe() argument 348 loggerProxy.doLog(Level.SEVERE, msg, t); in severe() 351 public void severe(String msg, Object... params) { in severe() argument 352 loggerProxy.doLog(Level.SEVERE, msg, params); in severe() 358 public void warning(String msg) { in warning() argument 359 loggerProxy.doLog(Level.WARNING, msg); in warning() 362 public void warning(String msg, Throwable t) { in warning() argument 363 loggerProxy.doLog(Level.WARNING, msg, t); in warning() [all …]
|
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
D | SunCertPathBuilderException.java | 64 public SunCertPathBuilderException(String msg) { in SunCertPathBuilderException() argument 65 super(msg); in SunCertPathBuilderException() 92 public SunCertPathBuilderException(String msg, Throwable cause) { in SunCertPathBuilderException() argument 93 super(msg, cause); in SunCertPathBuilderException() 103 SunCertPathBuilderException(String msg, AdjacencyList adjList) { in SunCertPathBuilderException() argument 104 this(msg); in SunCertPathBuilderException() 116 SunCertPathBuilderException(String msg, Throwable cause, in SunCertPathBuilderException() argument 119 this(msg, cause); in SunCertPathBuilderException()
|
D | BasicChecker.java | 161 String msg = "signature"; in verifySignature() local 163 debug.println("---checking " + msg + "..."); in verifySignature() 173 (msg + " check failed", e, null, -1, in verifySignature() 176 throw new CertPathValidatorException(msg + " check failed", e); in verifySignature() 180 debug.println(msg + " verified."); in verifySignature() 189 String msg = "timestamp"; in verifyTimestamp() local 191 debug.println("---checking " + msg + ":" + date.toString() + "..."); in verifyTimestamp() 197 (msg + " check failed", e, null, -1, BasicReason.EXPIRED); in verifyTimestamp() 200 (msg + " check failed", e, null, -1, BasicReason.NOT_YET_VALID); in verifyTimestamp() 204 debug.println(msg + " verified."); in verifyTimestamp() [all …]
|
/libcore/dom/src/test/java/org/w3c/domts/ |
D | DOMTestIncompatibleException.java | 25 private final String msg; field in DOMTestIncompatibleException 27 private DOMTestIncompatibleException(String msg) { in DOMTestIncompatibleException() argument 28 this.msg = msg; in DOMTestIncompatibleException() 38 msg = ex.toString(); in DOMTestIncompatibleException() 42 msg = setting.toString(); in DOMTestIncompatibleException() 45 msg = super.toString(); in DOMTestIncompatibleException() 73 return msg; in toString()
|
/libcore/ojluni/src/main/java/sun/security/validator/ |
D | ValidatorException.java | 67 public ValidatorException(String msg) { in ValidatorException() argument 68 super(msg); in ValidatorException() 71 public ValidatorException(String msg, Throwable cause) { in ValidatorException() argument 72 super(msg); in ValidatorException() 92 public ValidatorException(String msg, Object type, X509Certificate cert) { in ValidatorException() argument 93 super(msg); in ValidatorException() 98 public ValidatorException(String msg, Object type, X509Certificate cert, in ValidatorException() argument 100 this(msg, type, cert); in ValidatorException()
|
/libcore/ojluni/src/main/native/ |
D | jni_util.h | 49 JNU_ThrowByName(JNIEnv *env, const char *name, const char *msg); 53 JNU_ThrowNullPointerException(JNIEnv *env, const char *msg); 56 JNU_ThrowArrayIndexOutOfBoundsException(JNIEnv *env, const char *msg); 59 JNU_ThrowOutOfMemoryError(JNIEnv *env, const char *msg); 62 JNU_ThrowIllegalArgumentException(JNIEnv *env, const char *msg); 65 JNU_ThrowIllegalAccessError(JNIEnv *env, const char *msg); 68 JNU_ThrowIllegalAccessException(JNIEnv *env, const char *msg); 71 JNU_ThrowInternalError(JNIEnv *env, const char *msg); 74 JNU_ThrowIOException(JNIEnv *env, const char *msg); 77 JNU_ThrowNoSuchFieldException(JNIEnv *env, const char *msg); [all …]
|
D | java_util_zip_ZipFile.c | 70 ThrowZipException(JNIEnv *env, const char *msg) in ThrowZipException() argument 75 if (msg != NULL) { in ThrowZipException() 76 s = JNU_NewStringPlatform(env, msg); in ThrowZipException() 92 char *msg = 0; in ZipFile_open() local 102 zip = ZIP_Get_From_Cache(path, &msg, lastModified); in ZipFile_open() 103 if (zip == 0 && msg == 0) { in ZipFile_open() 118 zip = ZIP_Put_In_Cache0(path, zfd, &msg, lastModified, usemmap); in ZipFile_open() 123 } else if (msg != 0) { in ZipFile_open() 124 ThrowZipException(env, msg); in ZipFile_open() 125 free(msg); in ZipFile_open() [all …]
|
D | jni_util.c | 45 JNU_ThrowByName(JNIEnv *env, const char *name, const char *msg) in JNU_ThrowByName() argument 50 (*env)->ThrowNew(env, cls, msg); in JNU_ThrowByName() 56 JNU_ThrowNullPointerException(JNIEnv *env, const char *msg) in JNU_ThrowNullPointerException() argument 58 JNU_ThrowByName(env, "java/lang/NullPointerException", msg); in JNU_ThrowNullPointerException() 62 JNU_ThrowArrayIndexOutOfBoundsException(JNIEnv *env, const char *msg) in JNU_ThrowArrayIndexOutOfBoundsException() argument 64 JNU_ThrowByName(env, "java/lang/ArrayIndexOutOfBoundsException", msg); in JNU_ThrowArrayIndexOutOfBoundsException() 68 JNU_ThrowOutOfMemoryError(JNIEnv *env, const char *msg) in JNU_ThrowOutOfMemoryError() argument 70 JNU_ThrowByName(env, "java/lang/OutOfMemoryError", msg); in JNU_ThrowOutOfMemoryError() 74 JNU_ThrowIllegalArgumentException(JNIEnv *env, const char *msg) in JNU_ThrowIllegalArgumentException() argument 76 JNU_ThrowByName(env, "java/lang/IllegalArgumentException", msg); in JNU_ThrowIllegalArgumentException() [all …]
|
/libcore/ojluni/src/main/java/java/security/cert/ |
D | CertPathValidatorException.java | 98 public CertPathValidatorException(String msg) { in CertPathValidatorException() argument 99 this(msg, null); in CertPathValidatorException() 128 public CertPathValidatorException(String msg, Throwable cause) { in CertPathValidatorException() argument 129 this(msg, cause, null, -1); in CertPathValidatorException() 149 public CertPathValidatorException(String msg, Throwable cause, in CertPathValidatorException() argument 151 this(msg, cause, certPath, index, BasicReason.UNSPECIFIED); in CertPathValidatorException() 175 public CertPathValidatorException(String msg, Throwable cause, in CertPathValidatorException() argument 177 super(msg, cause); in CertPathValidatorException()
|
D | CertPathBuilderException.java | 70 public CertPathBuilderException(String msg) { in CertPathBuilderException() argument 71 super(msg); in CertPathBuilderException() 100 public CertPathBuilderException(String msg, Throwable cause) { in CertPathBuilderException() argument 101 super(msg, cause); in CertPathBuilderException()
|
D | CertStoreException.java | 70 public CertStoreException(String msg) { in CertStoreException() argument 71 super(msg); in CertStoreException() 99 public CertStoreException(String msg, Throwable cause) { in CertStoreException() argument 100 super(msg, cause); in CertStoreException()
|
/libcore/ojluni/src/main/java/java/util/ |
D | ServiceConfigurationError.java | 71 public ServiceConfigurationError(String msg) { in ServiceConfigurationError() argument 72 super(msg); in ServiceConfigurationError() 83 public ServiceConfigurationError(String msg, Throwable cause) { in ServiceConfigurationError() argument 84 super(msg, cause); in ServiceConfigurationError()
|
/libcore/ojluni/src/main/java/java/net/ |
D | BindException.java | 47 public BindException(String msg) { in BindException() argument 48 super(msg); in BindException() 57 public BindException(String msg, Throwable cause) { in BindException() argument 58 super(msg, cause); in BindException()
|
D | ConnectException.java | 47 public ConnectException(String msg) { in ConnectException() argument 48 super(msg); in ConnectException() 57 public ConnectException(String msg, Throwable cause) { in ConnectException() argument 58 super(msg, cause); in ConnectException()
|
D | PortUnreachableException.java | 44 public PortUnreachableException(String msg) { in PortUnreachableException() argument 45 super(msg); in PortUnreachableException() 55 public PortUnreachableException(String msg, Throwable cause) { in PortUnreachableException() argument 56 super(msg, cause); in PortUnreachableException()
|
D | SocketTimeoutException.java | 43 public SocketTimeoutException(String msg) { in SocketTimeoutException() argument 44 super(msg); in SocketTimeoutException() 58 public SocketTimeoutException(String msg, Throwable cause) { in SocketTimeoutException() argument 59 super(msg, cause); in SocketTimeoutException()
|
D | SocketException.java | 47 public SocketException(String msg) { in SocketException() argument 48 super(msg); in SocketException() 63 public SocketException(String msg, Throwable cause) { in SocketException() argument 64 super(msg, cause); in SocketException()
|
/libcore/ojluni/src/main/java/sun/util/locale/ |
D | LocaleSyntaxException.java | 40 public LocaleSyntaxException(String msg) { in LocaleSyntaxException() argument 41 this(msg, 0); in LocaleSyntaxException() 44 public LocaleSyntaxException(String msg, int errorIndex) { in LocaleSyntaxException() argument 45 super(msg); in LocaleSyntaxException()
|
/libcore/ojluni/src/main/java/java/util/logging/ |
D | Logger.java | 654 public void log(Level level, String msg) { in log() argument 658 LogRecord lr = new LogRecord(level, msg); in log() 673 public void log(Level level, String msg, Object param1) { in log() argument 677 LogRecord lr = new LogRecord(level, msg); in log() 694 public void log(Level level, String msg, Object params[]) { in log() argument 698 LogRecord lr = new LogRecord(level, msg); in log() 719 public void log(Level level, String msg, Throwable thrown) { in log() argument 723 LogRecord lr = new LogRecord(level, msg); in log() 745 public void logp(Level level, String sourceClass, String sourceMethod, String msg) { in logp() argument 749 LogRecord lr = new LogRecord(level, msg); in logp() [all …]
|
/libcore/ojluni/src/main/java/java/util/zip/ |
D | InflaterOutputStream.java | 165 String msg = ex.getMessage(); in flush() 166 if (msg == null) { in flush() 167 msg = "Invalid ZLIB data format"; in flush() 169 throw new ZipException(msg); in flush() 269 String msg = ex.getMessage(); in write() 270 if (msg == null) { in write() 271 msg = "Invalid ZLIB data format"; in write() 273 throw new ZipException(msg); in write()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/ |
D | Process2Test.java | 46 StringBuilder msg = new StringBuilder(""); in test_getErrorStream() local 51 msg.append((char) c); in test_getErrorStream() 53 assertEquals("", msg.toString()); in test_getErrorStream() 67 StringBuilder msg = new StringBuilder(""); in test_getErrorStream() local 72 msg.append((char) c); in test_getErrorStream() 74 assertEquals("oops\n", msg.toString()); in test_getErrorStream()
|
/libcore/luni/src/main/java/javax/xml/transform/ |
D | TransformerConfigurationException.java | 41 public TransformerConfigurationException(String msg) { in TransformerConfigurationException() argument 42 super(msg); in TransformerConfigurationException() 64 public TransformerConfigurationException(String msg, Throwable e) { in TransformerConfigurationException() argument 65 super(msg, e); in TransformerConfigurationException()
|
D | TransformerFactoryConfigurationError.java | 50 public TransformerFactoryConfigurationError(String msg) { in TransformerFactoryConfigurationError() argument 52 super(msg); in TransformerFactoryConfigurationError() 79 public TransformerFactoryConfigurationError(Exception e, String msg) { in TransformerFactoryConfigurationError() argument 81 super(msg); in TransformerFactoryConfigurationError()
|
/libcore/luni/src/main/java/javax/xml/parsers/ |
D | FactoryConfigurationError.java | 55 public FactoryConfigurationError(String msg) { in FactoryConfigurationError() argument 56 super(msg); in FactoryConfigurationError() 83 public FactoryConfigurationError(Exception e, String msg) { in FactoryConfigurationError() argument 84 super(msg); in FactoryConfigurationError()
|
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/ |
D | ChunkHandler.java | 61 public static Chunk createFailChunk(int errorCode, String msg) { in createFailChunk() argument 62 if (msg == null) in createFailChunk() 63 msg = ""; in createFailChunk() 65 ByteBuffer out = ByteBuffer.allocate(8 + msg.length() * 2); in createFailChunk() 68 out.putInt(msg.length()); in createFailChunk() 69 putString(out, msg); in createFailChunk()
|