Home | History | Annotate | Download | only in pm

Lines Matching refs:mSignature

37     private final byte[] mSignature;
46 mSignature = signature.clone();
86 mSignature = sig;
107 byte[] sig = mSignature;
140 byte[] bytes = new byte[mSignature.length];
141 System.arraycopy(mSignature, 0, bytes, 0, mSignature.length);
154 final ByteArrayInputStream bais = new ByteArrayInputStream(mSignature);
164 return this == other || Arrays.equals(mSignature, other.mSignature);
176 mHashCode = Arrays.hashCode(mSignature);
186 dest.writeByteArray(mSignature);
201 mSignature = source.createByteArray();