Searched refs:oos (Results 1 – 4 of 4) sorted by relevance
416 ObjectOutputStream oos = new ObjectOutputStream(os); in writeHeader() local417 oos.writeByte(CACHE_VERSION); in writeHeader()418 oos.writeUTF(key); in writeHeader()419 oos.writeUTF(etag == null ? "" : etag); in writeHeader()420 oos.writeLong(serverDate); in writeHeader()421 oos.writeLong(ttl); in writeHeader()422 oos.writeLong(softTtl); in writeHeader()423 writeStringStringMap(responseHeaders, oos); in writeHeader()424 oos.flush(); in writeHeader()435 private static void writeStringStringMap(Map<String, String> map, ObjectOutputStream oos) in writeStringStringMap() argument[all …]
94 ObjectOutputStream oos = null; in getBytes() local98 oos = new ObjectOutputStream(baos); in getBytes()99 oos.writeObject(this); in getBytes()104 if (oos != null) { in getBytes()105 oos.close(); in getBytes()
73 ObjectOutputStream oos = null; in serialize() local75 oos = new ObjectOutputStream(baos); in serialize()76 oos.writeObject(chunk); in serialize()81 if (oos != null) { in serialize()83 oos.close(); in serialize()
1279 ObjectOutputStream oos = new ObjectOutputStream(baos); in writeSerializable() local1280 oos.writeObject(s); in writeSerializable()1281 oos.close(); in writeSerializable()