Home | History | Annotate | Download | only in rmi

Lines Matching defs:out

133     public void doReply(InputStream in, OutputStream out, String cmd)
137 processRMI(in, out);
139 lookupName(cmd, in, out);
141 super.doReply(in, out, cmd);
166 ObjectOutputStream out = new ObjectOutputStream(outs);
168 out.writeBoolean(false);
169 out.writeUTF(err.toString());
173 out.writeBoolean(true);
174 out.writeObject(rvalue);
183 out.flush();
184 out.close();
228 ObjectOutputStream out = new ObjectOutputStream(outs);
231 out.writeInt(-1); // error code
232 out.writeUTF("error");
236 out.writeInt(found.identifier);
237 out.writeUTF(found.object.getClass().getName());
240 out.flush();
241 out.close();