Home | History | Annotate | Download | only in keymaster

Lines Matching refs:tag

31     public final int tag;
38 final int tag = in.readInt();
39 switch (KeymasterDefs.getTagType(tag)) {
44 return new KeymasterIntArgument(tag, in);
47 return new KeymasterLongArgument(tag, in);
49 return new KeymasterDateArgument(tag, in);
52 return new KeymasterBlobArgument(tag, in);
54 return new KeymasterBooleanArgument(tag, in);
56 throw new ParcelFormatException("Bad tag: " + tag + " at " + pos);
66 protected KeymasterArgument(int tag) {
67 this.tag = tag;
82 out.writeInt(tag);