Lines Matching full:unlocker
6358 * thread at any given time. The Locker/Unlocker API must be used to
8286 * mechanism that may be used, the v8::Locker and v8::Unlocker classes must be
8307 * destroying the v8::Locker object as above or by constructing a v8::Unlocker
8313 * v8::Unlocker unlocker(isolate);
8321 * The Unlocker object is intended for use in a long-running callback from V8,
8326 * from code that holds the lock or from code that does not. The Unlocker is
8328 * you can not use an Unlocker in a thread that is not inside a Locker's scope.
8330 * An unlocker will unlock several lockers if it has to and reinstate the
8344 * v8::Unlocker unlocker(isolate);
8355 class V8_EXPORT Unlocker {
8358 * Initialize Unlocker for a given Isolate.
8360 V8_INLINE explicit Unlocker(Isolate* isolate) { Initialize(isolate); }
8362 ~Unlocker();