Home
last modified time | relevance | path

Searched refs:RELEASE (Results 1 – 23 of 23) sorted by relevance

/hardware/google/aemu/base/include/aemu/base/synchronization/
DConditionVariable.h47 void signalAndUnlock(StaticLock* lock) REQUIRES(lock) RELEASE(lock);
48 void signalAndUnlock(AutoLock* lock) REQUIRES(lock->mLock) RELEASE(lock->mLock);
50 void broadcastAndUnlock(StaticLock* lock) REQUIRES(lock) RELEASE(lock);
51 void broadcastAndUnlock(AutoLock* lock) REQUIRES(lock->mLock) RELEASE(lock->mLock);
191 inline void ConditionVariable::signalAndUnlock(StaticLock* lock) REQUIRES(lock) RELEASE(lock) { in signalAndUnlock()
195 inline void ConditionVariable::signalAndUnlock(AutoLock* lock) REQUIRES(lock->mLock) RELEASE(lock->… in signalAndUnlock()
199 inline void ConditionVariable::broadcastAndUnlock(StaticLock* lock) REQUIRES(lock) RELEASE(lock) { in broadcastAndUnlock()
203 inline void ConditionVariable::broadcastAndUnlock(AutoLock* lock) REQUIRES(lock->mLock) RELEASE(loc… in broadcastAndUnlock()
DLock.h68 void unlock() RELEASE() { in unlock()
152 void unlock() RELEASE(mLock) { in unlock()
160 ~AutoLock() RELEASE() { in RELEASE() function
267 void endWrite() RELEASE(mWriteLock) { in endWrite()
DMessageChannel.h67 void afterWrite(bool success) REQUIRES(mLock) RELEASE(mLock);
90 void afterRead(bool success) REQUIRES(mLock) RELEASE(mLock);
/hardware/google/gfxstream/guest/android-emu/aemu/base/fit/
DThreadSafety.h59 #ifndef RELEASE
60 #define RELEASE(...) THREAD_ANNOTATION_ATTRIBUTE__(__release_capability__(__VA_ARGS__)) macro
DThreadChecker.h72 void unlock() RELEASE() {} in unlock()
/hardware/google/aemu/base/include/aemu/base/
DThreadAnnotations.h52 #define RELEASE(...) \ macro
113 ~ScopedLockAssertion() RELEASE() {} in RELEASE() function
/hardware/interfaces/drm/aidl/android/hardware/drm/
DKeyType.aidl37 RELEASE, enumConstant
DKeyRequestType.aidl38 RELEASE, enumConstant
/hardware/interfaces/drm/aidl/aidl_api/android.hardware.drm/current/android/hardware/drm/
DKeyType.aidl39 RELEASE = 2, enumConstant
DKeyRequestType.aidl39 RELEASE = 2, enumConstant
/hardware/interfaces/drm/aidl/aidl_api/android.hardware.drm/1/android/hardware/drm/
DKeyType.aidl39 RELEASE = 2, enumConstant
DKeyRequestType.aidl39 RELEASE = 2, enumConstant
/hardware/google/graphics/common/libhwjpeg/include/
DFileLock.h12 int unlock() RELEASE();
/hardware/google/graphics/common/libhwc2.1/libdrmresource/include/
Dworker.h36 void Unlock() RELEASE(mutex_) { in Unlock()
/hardware/interfaces/drm/1.2/
DIDrmPlugin.hal64 * is RELEASE, followed by provideKeyResponse. This allows the
86 * getKeyRequest with KeyType RELEASE but the key response has not
114 * keyType is RELEASE, scope must be set to the keySetId of the keys
120 * request. initData must be empty when keyType is RELEASE.
139 * request. The type must be one of INITIAL, RENEWAL, RELEASE, NONE or
142 * keys in a license. RELEASE corresponds to a keyType of RELEASE,
/hardware/interfaces/drm/1.1/
DIDrmPlugin.hal78 * to. When the keyType is RELEASE, scope should be set to the
85 * when keyType is RELEASE.
102 * request. The type may be one of INITIAL, RENEWAL, RELEASE,
105 * refresh the keys in a license. RELEASE corresponds to a
106 * keyType of RELEASE, which indicates keys are being released.
/hardware/interfaces/drm/1.0/default/
DDrmPlugin.cpp58 case KeyType::RELEASE: in getKeyRequest()
93 requestType = KeyRequestType::RELEASE; in getKeyRequest()
/hardware/interfaces/drm/1.0/
Dtypes.hal160 RELEASE,
183 RELEASE,
DIDrmPlugin.hal64 * When the keyType is RELEASE, scope should be set to the keySetId
70 * initData may be empty when keyType is RELEASE.
87 * request. The type may be one of INITIAL, RENEWAL or RELEASE. An
89 * subsequent key request used to refresh the keys in a license. RELEASE
90 * corresponds to a keyType of RELEASE, which indicates keys are being
/hardware/interfaces/drm/1.2/vts/functional/
Ddrm_hal_common.cpp271 if (type == KeyType::RELEASE) { in getKeyRequest()
272 EXPECT_EQ(KeyRequestType::RELEASE, requestType); in getKeyRequest()
Ddrm_hal_test.cpp218 hidl_vec<uint8_t> keyRequest = getKeyRequest(keySetId, content, KeyType::RELEASE); in TEST_P()
/hardware/interfaces/drm/aidl/vts/
Ddrm_hal_common.cpp370 if (type == KeyType::RELEASE) { in getKeyRequest()
371 EXPECT_EQ(KeyRequestType::RELEASE, result.requestType); in getKeyRequest()
Ddrm_hal_test.cpp232 vector<uint8_t> keyRequest = getKeyRequest(keySetId, content, KeyType::RELEASE); in TEST_P()