//------------------------------------------------------------------------------
|
// <auto-generated>
|
// This code was generated by a tool.
|
//
|
// Changes to this file may cause incorrect behavior and will be lost if
|
// the code is regenerated.
|
// </auto-generated>
|
//------------------------------------------------------------------------------
|
|
#nullable restore
|
using System;
|
using System.Collections.Generic;
|
using Android.Runtime;
|
using Java.Interop;
|
|
namespace Com.Tencent.Tinker.Lib.Patch {
|
|
// Metadata.xml XPath class reference: path="/api/package[@name='com.tencent.tinker.lib.patch']/class[@name='AbstractPatch']"
|
[global::Android.Runtime.Register ("com/tencent/tinker/lib/patch/AbstractPatch", DoNotGenerateAcw=true)]
|
public abstract partial class AbstractPatch : global::Java.Lang.Object {
|
static readonly JniPeerMembers _members = new XAPeerMembers ("com/tencent/tinker/lib/patch/AbstractPatch", typeof (AbstractPatch));
|
|
internal static IntPtr class_ref {
|
get { return _members.JniPeerType.PeerReference.Handle; }
|
}
|
|
[global::System.Diagnostics.DebuggerBrowsable (global::System.Diagnostics.DebuggerBrowsableState.Never)]
|
[global::System.ComponentModel.EditorBrowsable (global::System.ComponentModel.EditorBrowsableState.Never)]
|
public override global::Java.Interop.JniPeerMembers JniPeerMembers {
|
get { return _members; }
|
}
|
|
[global::System.Diagnostics.DebuggerBrowsable (global::System.Diagnostics.DebuggerBrowsableState.Never)]
|
[global::System.ComponentModel.EditorBrowsable (global::System.ComponentModel.EditorBrowsableState.Never)]
|
protected override IntPtr ThresholdClass {
|
get { return _members.JniPeerType.PeerReference.Handle; }
|
}
|
|
[global::System.Diagnostics.DebuggerBrowsable (global::System.Diagnostics.DebuggerBrowsableState.Never)]
|
[global::System.ComponentModel.EditorBrowsable (global::System.ComponentModel.EditorBrowsableState.Never)]
|
protected override global::System.Type ThresholdType {
|
get { return _members.ManagedPeerType; }
|
}
|
|
protected AbstractPatch (IntPtr javaReference, JniHandleOwnership transfer) : base (javaReference, transfer)
|
{
|
}
|
|
// Metadata.xml XPath constructor reference: path="/api/package[@name='com.tencent.tinker.lib.patch']/class[@name='AbstractPatch']/constructor[@name='AbstractPatch' and count(parameter)=0]"
|
[Register (".ctor", "()V", "")]
|
public unsafe AbstractPatch () : base (IntPtr.Zero, JniHandleOwnership.DoNotTransfer)
|
{
|
const string __id = "()V";
|
|
if (((global::Java.Lang.Object) this).Handle != IntPtr.Zero)
|
return;
|
|
try {
|
var __r = _members.InstanceMethods.StartCreateInstance (__id, ((object) this).GetType (), null);
|
SetHandle (__r.Handle, JniHandleOwnership.TransferLocalRef);
|
_members.InstanceMethods.FinishCreateInstance (__id, this, null);
|
} finally {
|
}
|
}
|
|
static Delegate cb_tryPatch_Landroid_content_Context_Ljava_lang_String_Lcom_tencent_tinker_lib_service_PatchResult_;
|
#pragma warning disable 0169
|
static Delegate GetTryPatch_Landroid_content_Context_Ljava_lang_String_Lcom_tencent_tinker_lib_service_PatchResult_Handler ()
|
{
|
if (cb_tryPatch_Landroid_content_Context_Ljava_lang_String_Lcom_tencent_tinker_lib_service_PatchResult_ == null)
|
cb_tryPatch_Landroid_content_Context_Ljava_lang_String_Lcom_tencent_tinker_lib_service_PatchResult_ = JNINativeWrapper.CreateDelegate (new _JniMarshal_PPLLL_Z (n_TryPatch_Landroid_content_Context_Ljava_lang_String_Lcom_tencent_tinker_lib_service_PatchResult_));
|
return cb_tryPatch_Landroid_content_Context_Ljava_lang_String_Lcom_tencent_tinker_lib_service_PatchResult_;
|
}
|
|
static bool n_TryPatch_Landroid_content_Context_Ljava_lang_String_Lcom_tencent_tinker_lib_service_PatchResult_ (IntPtr jnienv, IntPtr native__this, IntPtr native_p0, IntPtr native_p1, IntPtr native_p2)
|
{
|
var __this = global::Java.Lang.Object.GetObject<global::Com.Tencent.Tinker.Lib.Patch.AbstractPatch> (jnienv, native__this, JniHandleOwnership.DoNotTransfer);
|
var p0 = global::Java.Lang.Object.GetObject<global::Android.Content.Context> (native_p0, JniHandleOwnership.DoNotTransfer);
|
var p1 = JNIEnv.GetString (native_p1, JniHandleOwnership.DoNotTransfer);
|
var p2 = global::Java.Lang.Object.GetObject<global::Com.Tencent.Tinker.Lib.Service.PatchResult> (native_p2, JniHandleOwnership.DoNotTransfer);
|
bool __ret = __this.TryPatch (p0, p1, p2);
|
return __ret;
|
}
|
#pragma warning restore 0169
|
|
// Metadata.xml XPath method reference: path="/api/package[@name='com.tencent.tinker.lib.patch']/class[@name='AbstractPatch']/method[@name='tryPatch' and count(parameter)=3 and parameter[1][@type='android.content.Context'] and parameter[2][@type='java.lang.String'] and parameter[3][@type='com.tencent.tinker.lib.service.PatchResult']]"
|
[Register ("tryPatch", "(Landroid/content/Context;Ljava/lang/String;Lcom/tencent/tinker/lib/service/PatchResult;)Z", "GetTryPatch_Landroid_content_Context_Ljava_lang_String_Lcom_tencent_tinker_lib_service_PatchResult_Handler")]
|
public abstract bool TryPatch (global::Android.Content.Context p0, string p1, global::Com.Tencent.Tinker.Lib.Service.PatchResult p2);
|
|
}
|
|
[global::Android.Runtime.Register ("com/tencent/tinker/lib/patch/AbstractPatch", DoNotGenerateAcw=true)]
|
internal partial class AbstractPatchInvoker : AbstractPatch {
|
public AbstractPatchInvoker (IntPtr handle, JniHandleOwnership transfer) : base (handle, transfer)
|
{
|
}
|
|
static readonly JniPeerMembers _members = new XAPeerMembers ("com/tencent/tinker/lib/patch/AbstractPatch", typeof (AbstractPatchInvoker));
|
|
[global::System.Diagnostics.DebuggerBrowsable (global::System.Diagnostics.DebuggerBrowsableState.Never)]
|
[global::System.ComponentModel.EditorBrowsable (global::System.ComponentModel.EditorBrowsableState.Never)]
|
public override global::Java.Interop.JniPeerMembers JniPeerMembers {
|
get { return _members; }
|
}
|
|
[global::System.Diagnostics.DebuggerBrowsable (global::System.Diagnostics.DebuggerBrowsableState.Never)]
|
[global::System.ComponentModel.EditorBrowsable (global::System.ComponentModel.EditorBrowsableState.Never)]
|
protected override global::System.Type ThresholdType {
|
get { return _members.ManagedPeerType; }
|
}
|
|
// Metadata.xml XPath method reference: path="/api/package[@name='com.tencent.tinker.lib.patch']/class[@name='AbstractPatch']/method[@name='tryPatch' and count(parameter)=3 and parameter[1][@type='android.content.Context'] and parameter[2][@type='java.lang.String'] and parameter[3][@type='com.tencent.tinker.lib.service.PatchResult']]"
|
[Register ("tryPatch", "(Landroid/content/Context;Ljava/lang/String;Lcom/tencent/tinker/lib/service/PatchResult;)Z", "GetTryPatch_Landroid_content_Context_Ljava_lang_String_Lcom_tencent_tinker_lib_service_PatchResult_Handler")]
|
public override unsafe bool TryPatch (global::Android.Content.Context p0, string p1, global::Com.Tencent.Tinker.Lib.Service.PatchResult p2)
|
{
|
const string __id = "tryPatch.(Landroid/content/Context;Ljava/lang/String;Lcom/tencent/tinker/lib/service/PatchResult;)Z";
|
IntPtr native_p1 = JNIEnv.NewString ((string)p1);
|
try {
|
JniArgumentValue* __args = stackalloc JniArgumentValue [3];
|
__args [0] = new JniArgumentValue ((p0 == null) ? IntPtr.Zero : ((global::Java.Lang.Object) p0).Handle);
|
__args [1] = new JniArgumentValue (native_p1);
|
__args [2] = new JniArgumentValue ((p2 == null) ? IntPtr.Zero : ((global::Java.Lang.Object) p2).Handle);
|
var __rm = _members.InstanceMethods.InvokeAbstractBooleanMethod (__id, this, __args);
|
return __rm;
|
} finally {
|
JNIEnv.DeleteLocalRef (native_p1);
|
global::System.GC.KeepAlive (p0);
|
global::System.GC.KeepAlive (p2);
|
}
|
}
|
|
}
|
}
|