private CefTaskRunner(cef_task_runner_t *ptr) { if (ptr == null) { throw new ArgumentNullException("ptr"); } _self = ptr; }
internal static CefTaskRunner FromNativeOrNull(cef_task_runner_t *ptr) { if (ptr == null) { return(null); } return(new CefTaskRunner(ptr)); }
public void Dispose() { if (_self != null) { Release(); _self = null; } GC.SuppressFinalize(this); }
public static int get_refct(cef_task_runner_t *self) { get_refct_delegate d; var p = self->_base._get_refct; if (p == _p2) { d = _d2; } else { d = (get_refct_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(get_refct_delegate)); if (_p2 == IntPtr.Zero) { _d2 = d; _p2 = p; } } return(d(self)); }
public static int add_ref(cef_task_runner_t *self) { add_ref_delegate d; var p = self->_base._add_ref; if (p == _p0) { d = _d0; } else { d = (add_ref_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(add_ref_delegate)); if (_p0 == IntPtr.Zero) { _d0 = d; _p0 = p; } } return(d(self)); }
public static int post_delayed_task(cef_task_runner_t *self, cef_task_t *task, long delay_ms) { post_delayed_task_delegate d; var p = self->_post_delayed_task; if (p == _p7) { d = _d7; } else { d = (post_delayed_task_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(post_delayed_task_delegate)); if (_p7 == IntPtr.Zero) { _d7 = d; _p7 = p; } } return(d(self, task, delay_ms)); }
public static int post_task(cef_task_runner_t *self, cef_task_t *task) { post_task_delegate d; var p = self->_post_task; if (p == _p6) { d = _d6; } else { d = (post_task_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(post_task_delegate)); if (_p6 == IntPtr.Zero) { _d6 = d; _p6 = p; } } return(d(self, task)); }
public static int belongs_to_thread(cef_task_runner_t *self, CefThreadId threadId) { belongs_to_thread_delegate d; var p = self->_belongs_to_thread; if (p == _p5) { d = _d5; } else { d = (belongs_to_thread_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(belongs_to_thread_delegate)); if (_p5 == IntPtr.Zero) { _d5 = d; _p5 = p; } } return(d(self, threadId)); }
public static int belongs_to_current_thread(cef_task_runner_t *self) { belongs_to_current_thread_delegate d; var p = self->_belongs_to_current_thread; if (p == _p4) { d = _d4; } else { d = (belongs_to_current_thread_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(belongs_to_current_thread_delegate)); if (_p4 == IntPtr.Zero) { _d4 = d; _p4 = p; } } return(d(self)); }
public static int is_same(cef_task_runner_t *self, cef_task_runner_t *that) { is_same_delegate d; var p = self->_is_same; if (p == _p3) { d = _d3; } else { d = (is_same_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(is_same_delegate)); if (_p3 == IntPtr.Zero) { _d3 = d; _p3 = p; } } return(d(self, that)); }
public static int release(cef_task_runner_t *self) { release_delegate d; var p = self->_base._release; if (p == _p1) { d = _d1; } else { d = (release_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(release_delegate)); if (_p1 == IntPtr.Zero) { _d1 = d; _p1 = p; } } return(d(self)); }
public static int has_at_least_one_ref(cef_task_runner_t *self) { has_at_least_one_ref_delegate d; var p = self->_base._has_at_least_one_ref; if (p == _p3) { d = _d3; } else { d = (has_at_least_one_ref_delegate)Marshal.GetDelegateForFunctionPointer(p, typeof(has_at_least_one_ref_delegate)); if (_p3 == IntPtr.Zero) { _d3 = d; _p3 = p; } } return(d(self)); }
internal static CefTaskRunner FromNative(cef_task_runner_t *ptr) { return(new CefTaskRunner(ptr)); }
/// <summary> /// Returns true if this object is pointing to the same task runner as |that| /// object. /// </summary> public int IsSame(cef_task_runner_t *that) { throw new NotImplementedException(); // TODO: CefTaskRunner.IsSame }
private CefTaskRunner(cef_task_runner_t* ptr) { if (ptr == null) throw new ArgumentNullException("ptr"); _self = ptr; }
public CefTaskRunner(cef_task_runner_t *instance) : base((cef_base_ref_counted_t *)instance) { }
public unsafe extern int IsSame(cef_task_runner_t *that);