Home
last modified time | relevance | path

Searched refs:isLocked (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Common/
DMutexLock.hpp76 if(!isLocked()) in attemptLock()
156 bool isLocked() in isLocked() function in sw::BackoffLock
/third_party/skia/tests/
DYUVCacheTest.cpp29 bool isLocked = (data->data() != nullptr); in check_data() local
30 REPORTER_ASSERT(reporter, isLocked == (lockedState == kLocked)); in check_data()
DMaskCacheTest.cpp27 bool isLocked = (data->data() != nullptr); in check_data() local
28 REPORTER_ASSERT(reporter, isLocked == (lockedState == kLocked)); in check_data()
DSkResourceCacheTest.cpp36 bool isLocked = (data->data() != nullptr); in check_data() local
37 REPORTER_ASSERT(reporter, isLocked == (lockedState == kLocked)); in check_data()
/third_party/node/deps/undici/src/lib/api/
Dreadable.js202 function isLocked (self) { function
209 return util.isDisturbed(self) || isLocked(self)
/third_party/jsframework/runtime/main/extend/systemplugin/napi/
Dohos_screenLock.js32 isLocked: function (...args) { method
/third_party/node/deps/v8/tools/system-analyzer/view/timeline/
Dtimeline-track-base.mjs38 this.isLocked = false;
363 this.isLocked = !this.isLocked;
384 if (this.isLocked && this._focusedEntry) {
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DSurface.cpp250 if (isLocked()) in makeCurrent()
707 bool Surface::isLocked() const in isLocked() function in egl::Surface
DSurface.h152 bool isLocked() const;
DvalidationEGL.cpp4630 if (eglSurface->isLocked()) in ValidateSwapBuffers()
4680 if (surface->isLocked()) in ValidateSwapBuffersWithDamageKHR()
4758 if (surface->isLocked()) in ValidateBindTexImage()
6226 if (surface->isLocked()) in ValidateLockSurfaceKHR()
6321 if (!surface->isLocked()) in ValidateQuerySurface64KHR()
6343 if (!surface->isLocked()) in ValidateUnlockSurfaceKHR()
/third_party/node/src/
Djs_native_api_v8.cc4529 bool* isLocked) { in OH_JSVM_IsLocked() argument
4531 CHECK_ARG(env, isLocked); in OH_JSVM_IsLocked()
4533 *isLocked = v8::Locker::IsLocked(env->isolate); in OH_JSVM_IsLocked()
4541 bool isLocked = v8::Locker::IsLocked(env->isolate); in OH_JSVM_AcquireLock() local
4542 if (!isLocked) { in OH_JSVM_AcquireLock()
4552 bool isLocked = v8::Locker::IsLocked(env->isolate); in OH_JSVM_ReleaseLock() local
4553 if (isLocked && env->locker != nullptr) { in OH_JSVM_ReleaseLock()
Djsvm.h2291 bool* isLocked);