Searched refs:oinput (Results 1 – 3 of 3) sorted by relevance
121 ObjectInputStream oinput = null; in readObject() local131 oinput = new ObjectInputStream(input); in readObject()132 Object newObj = oinput.readObject(); in readObject()136 if (null != oinput) { in readObject()137 oinput.close(); in readObject()
1947 ObjectInputStream oinput = null; in testSerializationHarmonyRICompatible() local1952 oinput = new ObjectInputStream(getClass().getResource( in testSerializationHarmonyRICompatible()1955 deserializedDF = (DecimalFormat) oinput.readObject(); in testSerializationHarmonyRICompatible()1958 if (null != oinput) { in testSerializationHarmonyRICompatible()1959 oinput.close(); in testSerializationHarmonyRICompatible()
1631 try (ObjectInputStream oinput = new ObjectInputStream(getClass() in test_SerializationBug_26387905() argument1634 Locale l = (Locale) oinput.readObject(); in test_SerializationBug_26387905()