Home | History | Annotate | Download | only in rmi

Lines Matching defs:in

6  * 1.1 (the "License"); you may not use this file except in compliance with
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);
147 ObjectInputStream in = new ObjectInputStream(ins);
149 int objectId = in.readInt();
150 int methodId = in.readInt();
156 Object[] args = readParameters(in);
185 in.close();
188 private Object[] readParameters(ObjectInputStream in)
191 int n = in.readInt();
194 Object a = in.readObject();
224 ObjectInputStream in = new ObjectInputStream(ins);
225 String name = DataInputStream.readUTF(in);
242 in.close();