Lines Matching refs:Unlocker
25 * mechanism that may be used, the v8::Locker and v8::Unlocker classes must be
46 * destroying the v8::Locker object as above or by constructing a v8::Unlocker
52 * v8::Unlocker unlocker(isolate);
60 * The Unlocker object is intended for use in a long-running callback from V8,
65 * from code that holds the lock or from code that does not. The Unlocker is
67 * you cannot use an Unlocker in a thread that is not inside a Locker's scope.
83 * v8::Unlocker unlocker(isolate);
94 class V8_EXPORT Unlocker {
97 * Initialize Unlocker for a given Isolate.
99 V8_INLINE explicit Unlocker(Isolate* isolate) { Initialize(isolate); }
101 ~Unlocker();