/libcore/ojluni/src/main/java/java/io/ |
D | InvalidClassException.java | 50 public String classname; field in InvalidClassException 69 classname = cname; in InvalidClassException() 76 if (classname == null) in getMessage() 79 return classname + "; " + super.getMessage(); in getMessage()
|
D | ObjectStreamException.java | 43 protected ObjectStreamException(String classname) { in ObjectStreamException() argument 44 super(classname); in ObjectStreamException()
|
D | NotSerializableException.java | 45 public NotSerializableException(String classname) { in NotSerializableException() argument 46 super(classname); in NotSerializableException()
|
D | ObjectStreamClass.java | 498 new ExceptionInfo(e.classname, e.getMessage()); in ObjectStreamClass()
|
/libcore/ojluni/src/main/java/java/security/ |
D | IdentityScope.java | 77 String classname = AccessController.doPrivileged( in initializeSystemScope() local 84 if (classname == null) { in initializeSystemScope() 92 scope = (IdentityScope) Class.forName(classname).newInstance(); in initializeSystemScope()
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
D | X509Key.java | 233 String classname = ""; in buildX509Key() local 242 classname = sunProvider.getProperty("PublicKey.X.509." + in buildX509Key() 244 if (classname == null) { in buildX509Key() 250 keyClass = Class.forName(classname); in buildX509Key() 254 keyClass = cl.loadClass(classname); in buildX509Key() 274 throw new IOException (classname + " [internal error]"); in buildX509Key()
|
/libcore/ojluni/src/main/java/sun/security/pkcs/ |
D | PKCS8Key.java | 196 String classname = ""; in buildPKCS8Key() local 205 classname = sunProvider.getProperty("PrivateKey.PKCS#8." + in buildPKCS8Key() 207 if (classname == null) { in buildPKCS8Key() 213 keyClass = Class.forName(classname); in buildPKCS8Key() 217 keyClass = cl.loadClass(classname); in buildPKCS8Key() 237 throw new IOException (classname + " [internal error]"); in buildPKCS8Key()
|
/libcore/luni/src/test/java/libcore/java/sql/ |
D | OldDriverPropertyInfoTest.java | 31 static final String classname = "SQLite.JDBCDriver"; field in OldDriverPropertyInfoTest 50 Class.forName(classname).newInstance(); in testPublicFields()
|
/libcore/ojluni/src/main/native/ |
D | jni_util.h | 204 JNU_IsInstanceOfByName(JNIEnv *env, jobject object, char *classname); 239 const char *classname, 245 const char *classname,
|
D | jni_util.c | 937 JNU_IsInstanceOfByName(JNIEnv *env, jobject object, char* classname) in JNU_IsInstanceOfByName() argument 942 cls = (*env)->FindClass(env, classname); in JNU_IsInstanceOfByName() 1210 const char *classname, in JNU_GetStaticFieldByName() argument 1223 cls = (*env)->FindClass(env, classname); in JNU_GetStaticFieldByName() 1277 const char *classname, in JNU_SetStaticFieldByName() argument 1289 cls = (*env)->FindClass(env, classname); in JNU_SetStaticFieldByName()
|
/libcore/luni/src/main/java/javax/xml/xpath/ |
D | XPathFactoryFinder.java | 363 private static String which(String classname, ClassLoader loader) { in which() argument 364 String classnameAsResource = classname.replace('.', '/') + ".class"; in which()
|
/libcore/luni/src/main/java/javax/xml/validation/ |
D | SchemaFactoryFinder.java | 403 private static String which(String classname, ClassLoader loader) { in which() argument 404 String classnameAsResource = classname.replace('.', '/') + ".class"; in which()
|