Home | History | Annotate | Download | only in gpac

Lines Matching refs:temp

106             BerTlv temp = BerTlv.decode(data, index);
108 if (temp.getTag() == AID_REF_DO.TAG
109 || temp.getTag() == AID_REF_DO.TAG_DEFAULT_APPLICATION) { // AID-REF-DO
110 mAidDo = new AID_REF_DO(data, temp.getTag(), temp.getValueIndex(),
111 temp.getValueLength());
113 } else if (temp.getTag() == Hash_REF_DO.TAG) { // Hash-REF-DO
114 mHashDo = new Hash_REF_DO(data, temp.getValueIndex(), temp.getValueLength());
121 index = temp.getValueIndex() + temp.getValueLength();
140 ByteArrayOutputStream temp = new ByteArrayOutputStream();
146 mAidDo.build(temp);
147 mHashDo.build(temp);
149 byte[] data = temp.toByteArray();