コード例 #1
0
 public static extern JsErrorCode JsGetRuntime(JsContextRef context, out JsRuntimeHandle runtime);
コード例 #2
0
 public static extern JsErrorCode JsTraceExternalReference(JsRuntimeHandle runtimeHandle, JsValueRef value);
コード例 #3
0
 public static extern JsErrorCode JsAllocRawData(JsRuntimeHandle runtimeHandle, ulong sizeInBytes, bool zeroed, out JsRef buffer);
コード例 #4
0
 public static extern JsErrorCode JsSetRuntimeBeforeSweepCallback(JsRuntimeHandle runtimeHandle, IntPtr callbackState, JsBeforeSweepCallback beforeSweepCallback);
コード例 #5
0
 public static extern JsErrorCode JsSetRuntimeDomWrapperTracingCallbacks(JsRuntimeHandle runtimeHandle, JsRef wrapperTracingState, JsDOMWrapperTracingCallback wrapperTracingCallback, JsDOMWrapperTracingDoneCallback wrapperTracingDoneCallback,
                                                                         JsDOMWrapperTracingEnterFinalPauseCallback enterFinalPauseCallback);
コード例 #6
0
 public static extern JsErrorCode JsSetRuntimeMemoryAllocationCallback(JsRuntimeHandle runtime, IntPtr callbackState, JsMemoryAllocationCallback allocationCallback);
コード例 #7
0
 public static extern JsErrorCode JsCreateContext(JsRuntimeHandle runtime, out JsContextRef newContext);
コード例 #8
0
 public static extern JsErrorCode JsIsRuntimeExecutionDisabled(JsRuntimeHandle runtime, out bool isDisabled);
コード例 #9
0
 public static extern JsErrorCode JsSetRuntimeMemoryLimit(JsRuntimeHandle runtime, ulong memoryLimit);
コード例 #10
0
 public static extern JsErrorCode JsEnableRuntimeExecution(JsRuntimeHandle runtime);
コード例 #11
0
 public static extern JsErrorCode JsGetRuntimeMemoryUsage(JsRuntimeHandle runtime, out ulong memoryUsage);
コード例 #12
0
 public static extern JsErrorCode JsDisposeRuntime(JsRuntimeHandle runtime);
コード例 #13
0
 public static extern JsErrorCode JsCollectGarbage(JsRuntimeHandle runtime);
コード例 #14
0
 public static extern JsErrorCode JsCreateRuntime(JsRuntimeAttributes attributes, JsThreadServiceCallback threadService, out JsRuntimeHandle runtime);