static bool n_Apply_Lcom_mopub_volley_Request_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
            {
                global::MoPub.Volley.RequestQueue.IRequestFilter __this = global::Java.Lang.Object.GetObject <global::MoPub.Volley.RequestQueue.IRequestFilter> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
                global::MoPub.Volley.Request p0 = global::Java.Lang.Object.GetObject <global::MoPub.Volley.Request> (native_p0, JniHandleOwnership.DoNotTransfer);
                bool __ret = __this.Apply(p0);

                return(__ret);
            }
        public virtual unsafe void CancelAll(global::MoPub.Volley.RequestQueue.IRequestFilter p0)
        {
            if (id_cancelAll_Lcom_mopub_volley_RequestQueue_RequestFilter_ == IntPtr.Zero)
            {
                id_cancelAll_Lcom_mopub_volley_RequestQueue_RequestFilter_ = JNIEnv.GetMethodID(class_ref, "cancelAll", "(Lcom/mopub/volley/RequestQueue$RequestFilter;)V");
            }
            try {
                JValue *__args = stackalloc JValue [1];
                __args [0] = new JValue(p0);

                if (((object)this).GetType() == ThresholdType)
                {
                    JNIEnv.CallVoidMethod(((global::Java.Lang.Object) this).Handle, id_cancelAll_Lcom_mopub_volley_RequestQueue_RequestFilter_, __args);
                }
                else
                {
                    JNIEnv.CallNonvirtualVoidMethod(((global::Java.Lang.Object) this).Handle, ThresholdClass, JNIEnv.GetMethodID(ThresholdClass, "cancelAll", "(Lcom/mopub/volley/RequestQueue$RequestFilter;)V"), __args);
                }
            } finally {
            }
        }
 static void n_CancelAll_Lcom_mopub_volley_RequestQueue_RequestFilter_(IntPtr jnienv, IntPtr native__this, IntPtr native_p0)
 {
     global::MoPub.Volley.RequestQueue __this            = global::Java.Lang.Object.GetObject <global::MoPub.Volley.RequestQueue> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::MoPub.Volley.RequestQueue.IRequestFilter p0 = (global::MoPub.Volley.RequestQueue.IRequestFilter)global::Java.Lang.Object.GetObject <global::MoPub.Volley.RequestQueue.IRequestFilter> (native_p0, JniHandleOwnership.DoNotTransfer);
     __this.CancelAll(p0);
 }