Home | History | Annotate | Download | only in util

Lines Matching defs:source

72      * @param source the ByteBuffer from which to get the data.
75 public ByteArrayWrapper(ByteBuffer source) {
76 size = source.limit();
78 source.get(bytes,0,size);
84 public ByteArrayWrapper(ByteArrayWrapper source) {
85 size = source.size;
87 copyBytes(source.bytes, 0, bytes, 0, size);
131 * @param src source byte array to copy from
158 * @param src source byte array to copy from
268 * @param src source byte array to copy from