/packages/apps/SecureElement/src/com/android/se/security/gpac/ |
D | BerTlv.java | 70 public static BerTlv decode(byte[] data, int startIndex) throws ParserException { in decode() 76 throws ParserException { in decode() 79 throw new ParserException("No data given!"); in decode() 94 throw new ParserException( in decode() 104 throw new ParserException("Index " + curIndex + " out of range! [0..[" + data.length); in decode() 117 throw new ParserException("Invalid TLV length encoding!"); in decode() 120 throw new ParserException("Not enough data provided!"); in decode() 123 throw new ParserException( in decode() 130 throw new ParserException("Index out of range! [0..[" + data.length); in decode() 134 throw new ParserException("Invalid TLV length encoding!"); in decode() [all …]
|
D | ParserException.java | 38 public class ParserException extends Exception { class 43 public ParserException() { in ParserException() method in ParserException 48 public ParserException(String arg0, Throwable arg1) { in ParserException() method in ParserException 53 public ParserException(String arg0) { in ParserException() method in ParserException 58 public ParserException(Throwable arg0) { in ParserException() method in ParserException
|
D | NFC_AR_DO.java | 76 public void interpret() throws ParserException { in interpret() 84 throw new ParserException("Not enough data for NFC_AR_DO!"); in interpret() 88 throw new ParserException("Invalid length of NFC-AR-DO!"); in interpret() 90 throw new ParserException( in interpret()
|
D | AID_REF_DO.java | 107 public void interpret() throws ParserException { in interpret() 113 throw new ParserException("Invalid value length for AID-REF-DO!"); in interpret() 119 throw new ParserException("Invalid value length for AID-REF-DO!"); in interpret() 123 throw new ParserException("Not enough data for AID-REF-DO!"); in interpret() 130 throw new ParserException("Invalid Tag for AID-REF-DO!"); in interpret()
|
D | REF_AR_DO.java | 85 public void interpret() throws ParserException { in interpret() 94 throw new ParserException("Not enough data for AR_DO!"); in interpret() 122 throw new ParserException("Missing Ref-DO in REF-AR-DO!"); in interpret() 125 throw new ParserException("Missing AR-DO in REF-AR-DO!"); in interpret()
|
D | REF_DO.java | 113 public void interpret() throws ParserException { in interpret() 123 throw new ParserException("Not enough data for AR_DO!"); in interpret() 149 throw new ParserException("Unexpected combination of SEAC DOs and DAC DO"); in interpret() 160 throw new ParserException("Missing AID-REF-DO in REF-DO!"); in interpret() 164 throw new ParserException("Missing Hash-REF-DO in REF-DO!"); in interpret()
|
D | APDU_AR_DO.java | 97 public void interpret() throws ParserException { in interpret() 107 throw new ParserException("Not enough data for APDU_AR_DO!"); in interpret() 117 throw new ParserException("Invalid value of APDU-AR-DO : " + String.format("%02x", in interpret() 143 throw new ParserException("Invalid length of APDU-AR-DO!"); in interpret()
|
D | PERM_AR_DO.java | 49 public void interpret() throws ParserException { in interpret() 57 throw new ParserException("Not enough data for PERM-AR-DO!"); in interpret() 64 throw new ParserException("Invalid length of PERM-AR-DO!"); in interpret()
|
D | Response_RefreshTag_DO.java | 68 public void interpret() throws ParserException { in interpret() 73 throw new ParserException("Invalid length of RefreshTag DO!"); in interpret() 80 throw new ParserException("Not enough data for RefreshTag DO!"); in interpret()
|
D | Hash_REF_DO.java | 106 public void interpret() throws ParserException { in interpret() 116 throw new ParserException("Invalid value length for Hash-REF-DO!"); in interpret() 121 throw new ParserException("Not enough data for Hash-REF-DO!"); in interpret()
|
D | PKG_REF_DO.java | 74 public void interpret() throws ParserException { in interpret() 80 throw new ParserException("Invalid value length for PKG-REF-DO!"); in interpret() 84 throw new ParserException("Not enough data for PKG-REF-DO!"); in interpret()
|
D | AR_DO.java | 103 public void interpret() throws ParserException { in interpret() 113 throw new ParserException("Not enough data for AR_DO!"); in interpret() 137 throw new ParserException("No valid DO in AR-DO!"); in interpret()
|
D | Response_AR_DO.java | 69 public void interpret() throws ParserException { in interpret() 80 throw new ParserException("Not enough data for Response_AR_DO!"); in interpret()
|
D | Response_ALL_AR_DO.java | 71 public void interpret() throws ParserException { in interpret() 84 throw new ParserException("Not enough data for Response_AR_DO!"); in interpret()
|
D | Response_ARAC_AID_DO.java | 71 public void interpret() throws ParserException { in interpret() 84 throw new ParserException("Not enough data for Response_ARAC_AID_DO!"); in interpret()
|
D | Response_DO_Factory.java | 41 public static BerTlv createDO(byte[] data) throws ParserException { in createDO()
|
/packages/apps/SecureElement/src/com/android/se/security/ara/ |
D | AccessRuleApplet.java | 42 import com.android.se.security.gpac.ParserException; 82 } catch (ParserException e) { in readAllAccessRules() 149 } catch (ParserException e) { in readRefreshTag()
|
D | AraController.java | 50 import com.android.se.security.gpac.ParserException; 198 } catch (ParserException e) { in readAllAccessRules()
|
/packages/modules/Media/apex/framework/java/android/media/ |
D | MediaParser.java | 37 import com.google.android.exoplayer2.ParserException; 471 private ParsingException(ParserException cause) { in ParsingException() 1262 if (e instanceof ParserException) { in advance() 1263 throw new ParsingException((ParserException) e); in advance()
|