Home | History | Annotate | Download | only in pm

Lines Matching defs:mSignature

35     private final byte[] mSignature;
44 mSignature = signature.clone();
84 mSignature = sig;
105 byte[] sig = mSignature;
138 byte[] bytes = new byte[mSignature.length];
139 System.arraycopy(mSignature, 0, bytes, 0, mSignature.length);
152 final ByteArrayInputStream bais = new ByteArrayInputStream(mSignature);
162 return this == other || Arrays.equals(mSignature, other.mSignature);
174 mHashCode = Arrays.hashCode(mSignature);
184 dest.writeByteArray(mSignature);
199 mSignature = source.createByteArray();