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

1 2

  /libcore/ojluni/src/main/java/java/io/
NotActiveException.java 34 public class NotActiveException extends ObjectStreamException {
39 * Constructor to create a new NotActiveException with the reason given.
43 public NotActiveException(String reason) {
48 * Constructor to create a new NotActiveException without a reason.
50 public NotActiveException() {
SerialCallbackContext.java 37 * If not set to the current thread, the getObj method throws NotActiveException.
54 public Object getObj() throws NotActiveException {
63 public void check() throws NotActiveException {
65 throw new NotActiveException(
70 private void checkAndSetUsed() throws NotActiveException {
72 throw new NotActiveException(
ObjectOutputStream.java 449 * class being serialized. It will throw the NotActiveException if it is
458 throw new NotActiveException("not in call to writeObject");
481 throw new NotActiveException("not in call to writeObject");
495 * @throws NotActiveException Called when a classes writeObject method was
501 throw new NotActiveException("no current PutField object");
    [all...]
ObjectInputStream.java 484 * class being deserialized. It will throw the NotActiveException if it is
490 * @throws NotActiveException if the stream is not currently reading
498 throw new NotActiveException("not in call to readObject");
528 * @throws NotActiveException if the stream is not currently reading
537 throw new NotActiveException("not in call to readObject");
569 * @throws NotActiveException The stream is not currently reading objects
574 throws NotActiveException, InvalidObjectException
577 throw new NotActiveException("stream inactive");
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
NotActiveExceptionTest.java 20 import java.io.NotActiveException;
27 * java.io.NotActiveException#NotActiveException()
30 NotActiveException e = new NotActiveException();
35 * java.io.NotActiveException#NotActiveException(java.lang.String)
39 NotActiveException e = new NotActiveException(message);
ObjectStreamFieldTest.java 24 import java.io.NotActiveException;
279 private void readObject(ObjectInputStream in) throws NotActiveException,
343 private void readObject(ObjectInputStream in) throws NotActiveException,
ObjectOutputStreamTest.java 27 import java.io.NotActiveException;
602 fail("Failed to throw NotActiveException");
603 } catch (NotActiveException e) {
    [all...]
SerializationStressTest.java 28 import java.io.NotActiveException;
301 } catch (NotActiveException e) {
307 "Failed to throw NotActiveException when invoked outside readObject");
    [all...]
SerializationStressTest2.java 25 import java.io.NotActiveException;
    [all...]
SerializationStressTest1.java     [all...]
  /libcore/ojluni/src/main/java/javax/security/auth/x500/
X500Principal.java 507 java.io.NotActiveException,
  /libcore/luni/src/test/java/libcore/java/io/
OldObjectOutputStreamTest.java 25 import java.io.NotActiveException;
247 fail("Test 1: NotActiveException expected.");
248 } catch (NotActiveException e) {
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
javaprims.i 57 class NotActiveException;
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 35 import java.io.NotActiveException;
697 fail("NotActiveException expected");
698 } catch (NotActiveException e) {
    [all...]
  /prebuilts/misc/common/robolectric/3.1.1/lib/
xstream-1.4.8.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
xstream-1.4.8.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
xstream-1.4.8.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
xstream-1.4.8.jar 
  /prebuilts/tools/common/m2/repository/com/thoughtworks/xstream/xstream/1.4.7/
xstream-1.4.7.jar 
  /prebuilts/tools/common/m2/repository/com/thoughtworks/xstream/xstream/1.4.8/
xstream-1.4.8.jar 
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 

Completed in 306 milliseconds

1 2