Home | History | Annotate | Download | only in nfc

Lines Matching defs:EMPTY_BYTE_ARRAY

276     private static final byte[] EMPTY_BYTE_ARRAY = new byte[0];
517 if (type == null) type = EMPTY_BYTE_ARRAY;
518 if (id == null) id = EMPTY_BYTE_ARRAY;
519 if (payload == null) payload = EMPTY_BYTE_ARRAY;
788 type = (typeLength > 0 ? new byte[typeLength] : EMPTY_BYTE_ARRAY);
789 id = (idLength > 0 ? new byte[idLength] : EMPTY_BYTE_ARRAY);
795 payload = (payloadLength > 0 ? new byte[(int)payloadLength] : EMPTY_BYTE_ARRAY);