Lines Matching defs:in

9  * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
33 * A command APDU following the structure defined in ISO/IEC 7816-4.
39 * in the {@linkplain #CommandAPDU(int,int,int,int,int) constructors},
42 * value Ne. In other words, a value of 0 means "no data in the response APDU"
55 * <p>Instances of this class are immutable. Where data is passed in or out
104 * <code>apduOffset</code> in the byte array and is <code>apduLength</code>
111 * @param apduOffset the offset in the byte array at which the apdu
152 * <p>Note that the data in the ByteBuffer is copied to protect against
169 * in ISO 7816, no command body.
182 * response data length. This is case 2 in ISO 7816, empty command data
190 * @param ne the maximum number of expected data bytes in a response APDU
201 * This is case 3 in ISO 7816, command data present and Ne absent. The
222 * This is case 3 in ISO 7816, command data present and Ne absent. The
234 * @param dataOffset the offset in the byte array at which the data
236 * @param dataLength the number of the data bytes in the command body
250 * and expected response data length. This is case 4 in ISO 7816,
263 * @param ne the maximum number of expected data bytes in a response APDU
356 * and expected response data length. This is case 4 in ISO 7816,
370 * @param dataOffset the offset in the byte array at which the data
372 * @param dataLength the number of the data bytes in the command body
373 * @param ne the maximum number of expected data bytes in a response APDU
469 } // else le == 65536: no need to fill in, encoded as 0
519 * Returns the number of data bytes in the command body (Nc) or 0 if this
523 * @return the number of data bytes in the command body or 0 if this APDU
531 * Returns a copy of the data bytes in the command body. If this APDU as
534 * @return a copy of the data bytes in the command body or the empty
544 * Returns the maximum number of expected data bytes in a response
547 * @return the maximum number of expected data bytes in a response APDU.
554 * Returns a copy of the bytes in this APDU.
556 * @return a copy of the bytes in this APDU.
574 * identical to the bytes in this CommandAPDU.
599 private void readObject(java.io.ObjectInputStream in)
601 apdu = (byte[])in.readUnshared();