/aosp12/frameworks/base/core/java/android/security/net/config/ |
H A D | XmlConfigSource.java | 87 | ParserException e) { in ensureInitialized() 95 throws IOException, XmlPullParserException, ParserException { in parsePin() 102 throw new ParserException(parser, "Missing pin digest"); in parsePin() 109 throw new ParserException(parser, "Invalid pin digest", e); in parsePin() 124 throws IOException, XmlPullParserException, ParserException { in parsePinSet() 159 throw new ParserException(parser, "Domain name missing"); in parseDomain() 253 throw new ParserException(parser, in parseConfigEntry() 260 throw new ParserException(parser, in parseConfigEntry() 268 throw new ParserException(parser, in parseConfigEntry() 278 throw new ParserException(parser, in parseConfigEntry() [all …]
|
/aosp12/packages/apps/SecureElement/src/com/android/se/security/gpac/ |
H A D | BerTlv.java | 76 throws ParserException { in decode() 79 throw new ParserException("No data given!"); in decode() 94 throw new ParserException( in decode() 120 throw new ParserException("Not enough data provided!"); in decode() 123 throw new ParserException( in decode() 134 throw new ParserException("Invalid TLV length encoding!"); in decode() 137 throw new ParserException("Not enough data provided!"); in decode() 150 throw new ParserException("Invalid TLV length encoding!"); in decode() 153 throw new ParserException("Not enough data provided!"); in decode() 156 throw new ParserException("Unsupported TLV length encoding!"); in decode() [all …]
|
H A 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
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A 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()
|
H A D | Response_DO_Factory.java | 41 public static BerTlv createDO(byte[] data) throws ParserException { in createDO()
|
/aosp12/packages/apps/SecureElement/src/com/android/se/security/ara/ |
H A D | AccessRuleApplet.java | 42 import com.android.se.security.gpac.ParserException; 82 } catch (ParserException e) { in readAllAccessRules() 149 } catch (ParserException e) { in readRefreshTag()
|
H A D | AraController.java | 50 import com.android.se.security.gpac.ParserException; 198 } catch (ParserException e) { in readAllAccessRules()
|
/aosp12/frameworks/base/apex/media/framework/java/android/media/ |
H A D | MediaParser.java | 37 import com.google.android.exoplayer2.ParserException; 470 private ParsingException(ParserException cause) { in ParsingException() 1261 if (e instanceof ParserException) { in advance() 1262 throw new ParsingException((ParserException) e); in advance()
|
/aosp12/frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/ |
H A D | XmlConfigTests.java | 390 MoreAsserts.assertAssignableFrom(XmlConfigSource.ParserException.class, in testBadConfig()
|
/aosp12/frameworks/opt/setupwizard/tools/docs/ |
H A D | jsilver.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/clearsilver/
org/ ... |
/aosp12/frameworks/base/boot/ |
H A D | preloaded-classes | 6163 android.security.net.config.XmlConfigSource$ParserException
|
/aosp12/frameworks/base/config/ |
H A D | preloaded-classes | 6161 android.security.net.config.XmlConfigSource$ParserException
|
/aosp12/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 51981 Landroid/security/net/config/XmlConfigSource$ParserException;-><init>(Lorg/xmlpull/v1/XmlPullParser… 51982 Landroid/security/net/config/XmlConfigSource$ParserException;-><init>(Lorg/xmlpull/v1/XmlPullParser…
|