Searched defs:pack (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/net/
H A DDatagramSocketImpl.java192 * Receives data and stores it in the supplied datagram packet {@code pack}.
197 * @param pack
202 protected abstract void receive(DatagramPacket pack) throws IOException; argument
205 * Sends the given datagram packet {@code pack}. The packet contains the
208 * @param pack
213 protected abstract void send(DatagramPacket pack) throws IOException; argument
272 * @param pack
278 protected abstract int peekData(DatagramPacket pack) throws IOException; argument
H A DDatagramSocket.java233 * pack}. All fields of {@code pack} must be set according to the data
238 * @param pack
243 public synchronized void receive(DatagramPacket pack) throws IOException { argument
246 if (pack == null) {
247 throw new NullPointerException("pack == null");
252 pack.resetLengthForReceive();
253 impl.receive(pack);
259 * @param pack
264 public void send(DatagramPacket pack) throw argument
[all...]
H A DPlainDatagramSocketImpl.java160 private void doRecv(DatagramPacket pack, int flags) throws IOException { argument
161 IoBridge.recvfrom(false, fd, pack.getData(), pack.getOffset(), pack.getLength(), flags, pack, isNativeConnected);
163 updatePacketRecvAddress(pack);
168 public void receive(DatagramPacket pack) throws IOException { argument
169 doRecv(pack, 0);
173 public int peekData(DatagramPacket pack) throws IOException { argument
174 doRecv(pack, MSG_PEE
[all...]
/libcore/luni/src/main/java/java/util/jar/
H A DPack200.java91 static final String CLASS_ATTRIBUTE_PFX = "pack.class.attribute.";
96 static final String CODE_ATTRIBUTE_PFX = "pack.code.attribute.";
101 static final String DEFLATE_HINT = "pack.deflate.hint";
106 static final String EFFORT = "pack.effort";
121 static final String FIELD_ATTRIBUTE_PFX = "pack.field.attribute.";
131 static final String KEEP_FILE_ORDER = "pack.keep.file.order";
141 static final String METHOD_ATTRIBUTE_PFX = "pack.method.attribute.";
147 static final String MODIFICATION_TIME = "pack.modification.time";
157 static final String PASS_FILE_PFX = "pack.pass.file.";
162 static final String PROGRESS = "pack
201 void pack(JarFile in, OutputStream out) throws IOException; method in interface:Pack200.Packer
214 void pack(JarInputStream in, OutputStream out) throws IOException; method in interface:Pack200.Packer
[all...]

Completed in 206 milliseconds