public unsafe void Settings(bool p0, global::Okhttp3.Internal.Http2.Settings p1)
            {
                if (id_settings_ZLokhttp3_internal_http2_Settings_ == IntPtr.Zero)
                {
                    id_settings_ZLokhttp3_internal_http2_Settings_ = JNIEnv.GetMethodID(class_ref, "settings", "(ZLokhttp3/internal/http2/Settings;)V");
                }
                JValue *__args = stackalloc JValue [2];

                __args [0] = new JValue(p0);
                __args [1] = new JValue((p1 == null) ? IntPtr.Zero : ((global::Java.Lang.Object)p1).Handle);
                JNIEnv.CallVoidMethod(((global::Java.Lang.Object) this).Handle, id_settings_ZLokhttp3_internal_http2_Settings_, __args);
            }
 static void n_Settings_ZLokhttp3_internal_http2_Settings_(IntPtr jnienv, IntPtr native__this, bool p0, IntPtr native_p1)
 {
     global::Okhttp3.Internal.Http2.Http2Reader.IHandler __this = global::Java.Lang.Object.GetObject <global::Okhttp3.Internal.Http2.Http2Reader.IHandler> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
     global::Okhttp3.Internal.Http2.Settings             p1     = global::Java.Lang.Object.GetObject <global::Okhttp3.Internal.Http2.Settings> (native_p1, JniHandleOwnership.DoNotTransfer);
     __this.Settings(p0, p1);
 }