Searched refs:objectStream (Results 1 – 3 of 3) sorted by relevance
269 ObjectInputStream objectStream = new ObjectInputStream(inputStream); in deserializeObjectValue() local270 return objectStream.readObject(); in deserializeObjectValue()
1827 ObjectOutputStream objectStream = new ObjectOutputStream(fileStream); in saveAllObserversBootMitigationCountToMetadata() local1828 objectStream.writeObject(bootMitigationCounts); in saveAllObserversBootMitigationCountToMetadata()1829 objectStream.flush(); in saveAllObserversBootMitigationCountToMetadata()1830 objectStream.close(); in saveAllObserversBootMitigationCountToMetadata()1986 ObjectInputStream objectStream = new ObjectInputStream(fileStream); in readAllObserversBootMitigationCountIfNecessary() local1988 (HashMap<String, Integer>) objectStream.readObject(); in readAllObserversBootMitigationCountIfNecessary()1989 objectStream.close(); in readAllObserversBootMitigationCountIfNecessary()
463 try (ObjectOutputStream objectStream = new ObjectOutputStream(byteStream)) { in serialize() argument464 objectStream.writeObject(obj); in serialize()