Home | History | Annotate | Download | only in include

Lines Matching refs:Unlocker

3983  * given time.  The Locker/Unlocker API must be used to synchronize.
5178 * mechanism that may be used, the v8::Locker and v8::Unlocker classes must be
5199 * destroying the v8::Locker object as above or by constructing a v8::Unlocker
5205 * v8::Unlocker unlocker(isolate);
5213 * The Unlocker object is intended for use in a long-running callback from V8,
5218 * from code that holds the lock or from code that does not. The Unlocker is
5220 * you can not use an Unlocker in a thread that is not inside a Locker's scope.
5222 * An unlocker will unlock several lockers if it has to and reinstate the
5236 * v8::Unlocker unlocker(isolate);
5247 class V8_EXPORT Unlocker {
5250 * Initialize Unlocker for a given Isolate.
5252 V8_INLINE(explicit Unlocker(Isolate* isolate)) { Initialize(isolate); }
5255 V8_DEPRECATED(Unlocker());
5257 ~Unlocker();