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

/libcore/luni/src/main/java/java/net/
H A DDatagramSocketImpl.java184 * Receives data and stores it in the supplied datagram packet {@code pack}.
189 * @param pack
194 protected abstract void receive(DatagramPacket pack) throws IOException; argument
197 * Sends the given datagram packet {@code pack}. The packet contains the
200 * @param pack
205 protected abstract void send(DatagramPacket pack) throws IOException; argument
264 * @param pack
270 protected abstract int peekData(DatagramPacket pack) throws IOException; argument
H A DDatagramSocket.java230 * pack}. All fields of {@code pack} must be set according to the data
235 * @param pack
240 public synchronized void receive(DatagramPacket pack) throws IOException { argument
243 if (pack == null) {
244 throw new NullPointerException("pack == null");
249 pack.resetLengthForReceive();
250 impl.receive(pack);
256 * @param pack
261 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 160 milliseconds