OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:writeObject
(Results
51 - 75
of
203
) sorted by null
1
2
3
4
5
6
7
8
9
/libcore/luni/src/main/java/java/lang/
StringBuilder.java
697
private void
writeObject
(ObjectOutputStream out) throws IOException {
700
out.
writeObject
(getValue());
/libcore/luni/src/main/java/java/util/logging/
LogRecord.java
464
private void
writeObject
(ObjectOutputStream out) throws IOException {
473
out.
writeObject
(null == element ? null : element.toString());
/libcore/luni/src/test/java/tests/api/java/io/
ObjectOutputStreamPutFieldTest.java
44
* from within the private {@code
writeObject
(ObjectOutputStream)} method of a
52
* {@code
writeObject
(ObjectOutputStream)} and uses all {@code putX} methods in
64
* is written when {@code Support_GetPutFields.
writeObject
(ObjectOutputStream)}
65
* and {@code Support_GetPutFieldsDeprecated.
writeObject
(ObjectOutputStream)} is
148
oos.
writeObject
(toSerialize);
179
oos.
writeObject
(toSerialize);
ObjectStreamFieldTest.java
308
oos.
writeObject
(new SerializableObject());
351
oos.
writeObject
(new SerializableObject());
399
oos.
writeObject
(obj);
462
private void
writeObject
(ObjectOutputStream o) throws IOException {
525
private void
writeObject
(ObjectOutputStream o) throws IOException {
/cts/tools/signature-tools/src/signature/io/impl/
BinaryApi.java
45
oos.
writeObject
(api);
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
BERConstructedOctetString.java
133
out.
writeObject
(e.nextElement());
DEROutputStream.java
113
public void
writeObject
(
ASN1Set.java
292
aOut.
writeObject
(obj);
/external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMWriter.java
100
public void
writeObject
(
133
writeObject
(((KeyPair)o).getPrivate());
209
public void
writeObject
(
218
writeObject
(((KeyPair)obj).getPrivate());
/external/guava/src/com/google/common/collect/
HashBiMap.java
94
private void
writeObject
(ObjectOutputStream stream) throws IOException {
Multimaps.java
119
private void
writeObject
(ObjectOutputStream stream) throws IOException {
121
stream.
writeObject
(factory);
122
stream.
writeObject
(backingMap());
125
@SuppressWarnings("unchecked") // reading data stored by
writeObject
194
private void
writeObject
(ObjectOutputStream stream) throws IOException {
196
stream.
writeObject
(factory);
197
stream.
writeObject
(backingMap());
200
@SuppressWarnings("unchecked") // reading data stored by
writeObject
269
private void
writeObject
(ObjectOutputStream stream) throws IOException {
271
stream.
writeObject
(factory)
[
all
...]
LinkedHashMultimap.java
352
private void
writeObject
(ObjectOutputStream stream) throws IOException {
357
stream.
writeObject
(entry.getKey());
358
stream.
writeObject
(entry.getValue());
373
@SuppressWarnings("unchecked") // reading data stored by
writeObject
375
@SuppressWarnings("unchecked") // reading data stored by
writeObject
ArrayListMultimap.java
143
private void
writeObject
(ObjectOutputStream stream) throws IOException {
HashMultimap.java
121
private void
writeObject
(ObjectOutputStream stream) throws IOException {
/libcore/luni/src/main/java/java/security/
SignedObject.java
80
oos.
writeObject
(object);
/libcore/luni/src/main/java/java/util/
PropertyPermission.java
159
private void
writeObject
(ObjectOutputStream stream) throws IOException {
PropertyPermissionCollection.java
82
private void
writeObject
(ObjectOutputStream stream) throws IOException {
TreeSet.java
472
private void
writeObject
(ObjectOutputStream stream) throws IOException {
474
stream.
writeObject
(backingMap.comparator());
480
stream.
writeObject
(it.next());
/libcore/luni/src/test/java/com/google/coretests/
CoreTestIsolator.java
100
oos.
writeObject
(throwable);
/libcore/luni/src/test/java/libcore/java/text/
DateFormatSymbolsTest.java
53
new ObjectOutputStream(out).
writeObject
(originalDfs);
/libcore/luni/src/test/java/libcore/java/util/
SerializableTester.java
71
new ObjectOutputStream(out).
writeObject
(object);
/packages/apps/CertInstaller/src/com/android/certinstaller/
Util.java
38
os.
writeObject
(object);
/libcore/luni/src/main/java/java/beans/
PropertyChangeSupport.java
362
private void
writeObject
(ObjectOutputStream oos) throws IOException {
400
oos.
writeObject
(children);
406
oos.
writeObject
(source);
/external/emma/core/java12/com/vladium/util/exception/
AbstractException.java
315
private void
writeObject
(final ObjectOutputStream out)
AbstractRuntimeException.java
315
private void
writeObject
(final ObjectOutputStream out)
Completed in 1260 milliseconds
1
2
3
4
5
6
7
8
9