1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// WARNING:  This file was autogenerated by jni-bindgen.  Any changes to this file may be lost!!!


#[cfg(any(feature = "all", feature = "android-media-MediaCodec_CryptoException"))]
__jni_bindgen! {
    /// public final class [MediaCodec.CryptoException](https://developer.android.com/reference/android/media/MediaCodec.CryptoException.html)
    ///
    /// Required feature: "android-media-MediaCodec_CryptoException"
    public final class MediaCodec_CryptoException ("android/media/MediaCodec$CryptoException") extends crate::java::lang::RuntimeException {

        /// [CryptoException](https://developer.android.com/reference/android/media/MediaCodec.CryptoException.html#CryptoException(int,%20java.lang.String))
        ///
        /// Required features: "java-lang-String"
        #[cfg(any(feature = "all", all(feature = "java-lang-String")))]
        pub fn new<'env>(__jni_env: &'env __jni_bindgen::Env, arg0: i32, arg1: impl __jni_bindgen::std::convert::Into<__jni_bindgen::std::option::Option<&'env crate::java::lang::String>>) -> __jni_bindgen::std::result::Result<__jni_bindgen::Local<'env, crate::android::media::MediaCodec_CryptoException>, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/media/MediaCodec$CryptoException", java.flags == PUBLIC, .name == "<init>", .descriptor == "(ILjava/lang/String;)V"
            unsafe {
                let __jni_args = [__jni_bindgen::AsJValue::as_jvalue(&arg0), __jni_bindgen::AsJValue::as_jvalue(&arg1.into())];
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/media/MediaCodec$CryptoException\0", "<init>\0", "(ILjava/lang/String;)V\0");
                __jni_env.new_object_a(__jni_class, __jni_method, __jni_args.as_ptr())
            }
        }

        /// [getErrorCode](https://developer.android.com/reference/android/media/MediaCodec.CryptoException.html#getErrorCode())
        pub fn getErrorCode<'env>(&'env self) -> __jni_bindgen::std::result::Result<i32, __jni_bindgen::Local<'env, crate::java::lang::Throwable>> {
            // class.path == "android/media/MediaCodec$CryptoException", java.flags == PUBLIC, .name == "getErrorCode", .descriptor == "()I"
            unsafe {
                let __jni_args = [];
                let __jni_env = __jni_bindgen::Env::from_ptr(self.0.env);
                let (__jni_class, __jni_method) = __jni_env.require_class_method("android/media/MediaCodec$CryptoException\0", "getErrorCode\0", "()I\0");
                __jni_env.call_int_method_a(self.0.object, __jni_method, __jni_args.as_ptr())
            }
        }

        /// public static final [ERROR_INSUFFICIENT_OUTPUT_PROTECTION](https://developer.android.com/reference/android/media/MediaCodec.CryptoException.html#ERROR_INSUFFICIENT_OUTPUT_PROTECTION)
        pub const ERROR_INSUFFICIENT_OUTPUT_PROTECTION : i32 = 4;

        /// public static final [ERROR_KEY_EXPIRED](https://developer.android.com/reference/android/media/MediaCodec.CryptoException.html#ERROR_KEY_EXPIRED)
        pub const ERROR_KEY_EXPIRED : i32 = 2;

        /// public static final [ERROR_NO_KEY](https://developer.android.com/reference/android/media/MediaCodec.CryptoException.html#ERROR_NO_KEY)
        pub const ERROR_NO_KEY : i32 = 1;

        /// public static final [ERROR_RESOURCE_BUSY](https://developer.android.com/reference/android/media/MediaCodec.CryptoException.html#ERROR_RESOURCE_BUSY)
        pub const ERROR_RESOURCE_BUSY : i32 = 3;

        /// public static final [ERROR_SESSION_NOT_OPENED](https://developer.android.com/reference/android/media/MediaCodec.CryptoException.html#ERROR_SESSION_NOT_OPENED)
        pub const ERROR_SESSION_NOT_OPENED : i32 = 5;

        /// public static final [ERROR_UNSUPPORTED_OPERATION](https://developer.android.com/reference/android/media/MediaCodec.CryptoException.html#ERROR_UNSUPPORTED_OPERATION)
        pub const ERROR_UNSUPPORTED_OPERATION : i32 = 6;
    }
}