Lines Matching refs:array
38 * byte-array based communication channel. It is left to developers to implement higher level
66 * response APDU can be provided directly by returning a byte-array in this method. In general
80 * @return a byte-array containing the response APDU, or null if no response APDU can be sent
114 * Utility method to convert a byte array to a hexadecimal string.
137 * @return Byte array generated from input
156 * @param first First array
162 for (byte[] array : rest) {
163 totalLength += array.length;
167 for (byte[] array : rest) {
168 System.arraycopy(array, 0, result, offset, array.length);
169 offset += array.length;