Home | History | Annotate | Download | only in pm

Lines Matching refs:token

31     private IBinder token;
34 public KeySet(IBinder token) {
35 if (token == null) {
36 throw new NullPointerException("null value for KeySet IBinder token");
38 this.token = token;
43 return token;
51 return token == ks.token;
59 return token.hashCode();
90 IBinder token = in.readStrongBinder();
91 return new KeySet(token);
99 out.writeStrongBinder(token);