Home | History | Annotate | Download | only in include

Lines Matching refs:Unlocker

4341  * thread at any given time.  The Locker/Unlocker API must be used to
5584 * mechanism that may be used, the v8::Locker and v8::Unlocker classes must be
5605 * destroying the v8::Locker object as above or by constructing a v8::Unlocker
5611 * v8::Unlocker unlocker(isolate);
5619 * The Unlocker
5624 * from code that holds the lock or from code that does not. The Unlocker is
5626 * you can not use an Unlocker in a thread that is not inside a Locker's scope.
5628 * An unlocker will unlock several lockers if it has to and reinstate the
5642 * v8::Unlocker unlocker(isolate);
5653 class V8_EXPORT Unlocker {
5656 * Initialize Unlocker for a given Isolate.
5658 V8_INLINE explicit Unlocker(Isolate* isolate) { Initialize(isolate); }
5660 ~Unlocker();