Searched defs:unlock (Results 1 - 25 of 30) sorted by relevance

12

/frameworks/rs/
H A DrsMutex.cpp48 bool Mutex::unlock() { function in class:android::renderscript::Mutex
/frameworks/av/include/media/stagefright/foundation/
H A DMutexed.h53 * // if you need to temporarily unlock the mutex, you can use unlock/relock mutex locally
56 * data.unlock();
64 * // data is now accessible again. Note: it may have changed since unlock().
91 * Upon creation, the mutex is locked. You can use lock()/unlock() methods to
92 * temporarily lock/unlock the mutex. Using any references to the underlying
97 * unlock() or lock() from different threads; they must be called from the thread
131 inline void unlock();
181 mLock.unlock();
186 inline void Mutexed<T>::Locked::unlock() { function in class:android::Mutexed::Locked
[all...]
/frameworks/av/media/libstagefright/foundation/include/foundation/
H A DMutexed.h53 * // if you need to temporarily unlock the mutex, you can use unlock/relock mutex locally
56 * data.unlock();
64 * // data is now accessible again. Note: it may have changed since unlock().
91 * Upon creation, the mutex is locked. You can use lock()/unlock() methods to
92 * temporarily lock/unlock the mutex. Using any references to the underlying
97 * unlock() or lock() from different threads; they must be called from the thread
131 inline void unlock();
181 mLock.unlock();
186 inline void Mutexed<T>::Locked::unlock() { function in class:android::Mutexed::Locked
[all...]
/frameworks/av/media/libstagefright/include/foundation/
H A DMutexed.h53 * // if you need to temporarily unlock the mutex, you can use unlock/relock mutex locally
56 * data.unlock();
64 * // data is now accessible again. Note: it may have changed since unlock().
91 * Upon creation, the mutex is locked. You can use lock()/unlock() methods to
92 * temporarily lock/unlock the mutex. Using any references to the underlying
97 * unlock() or lock() from different threads; they must be called from the thread
131 inline void unlock();
181 mLock.unlock();
186 inline void Mutexed<T>::Locked::unlock() { function in class:android::Mutexed::Locked
[all...]
/frameworks/base/libs/hwui/
H A DResourceCache.cpp56 void ResourceCache::unlock() { function in class:android::uirenderer::ResourceCache
57 mLock.unlock();
/frameworks/compile/libbcc/lib/
H A DFileBase.cpp206 void FileBase::unlock() { function in class:FileBase
224 unlock();
/frameworks/native/libs/ui/
H A DGralloc2.cpp160 int Mapper::unlock(buffer_handle_t bufferHandle) const function in class:android::Gralloc2::Mapper
166 auto ret = mMapper->unlock(buffer,
180 ALOGD("failed to dup unlock release fence");
191 ALOGE("unlock(%p) failed with %d", buffer, error);
H A DGraphicBufferMapper.cpp94 status_t GraphicBufferMapper::unlock(buffer_handle_t handle) function in class:android::GraphicBufferMapper
175 *fenceFd = mMapper->unlock(handle);
H A DGraphicBuffer.cpp263 status_t GraphicBuffer::unlock() function in class:android::GraphicBuffer
265 status_t res = getBufferMapper().unlock(handle);
/frameworks/base/keystore/java/android/security/
H A DCredentials.java180 public void unlock(Context context) { method in class:Credentials
H A DKeyStore.java266 * Attempt to unlock the keystore for {@code user} with the password {@code password}.
276 public boolean unlock(int userId, String password) { method in class:KeyStore
278 mError = mBinder.unlock(userId, password);
286 public boolean unlock(String password) { method in class:KeyStore
287 return unlock(UserHandle.getUserId(Process.myUid()), password);
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarTest.java390 UnlockMethodCache unlock, KeyguardIndicationController key,
395 mUnlockMethodCache = unlock;
389 TestableStatusBar(StatusBarKeyguardViewManager man, UnlockMethodCache unlock, KeyguardIndicationController key, NotificationStackScrollLayout stack, HeadsUpManager hum, NotificationData nd, PowerManager pm, SystemServicesProxy ssp, NotificationPanelView panelView, IStatusBarService barService) argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFrame.java40 * {@link #unlock()}. Note, that a Frame must be unlocked before you push it into an output queue.
155 public void unlock() { method in class:Frame
156 if (!mBackingStore.unlock()) {
157 throw new RuntimeException("Attempting to unlock frame that is not locked!");
H A DBackingStore.java97 public boolean unlock() { method in class:BackingStore
105 mLockedBacking.unlock();
359 public void unlock() { method in class:BackingStore.Backing
438 backing.unlock();
442 backing.unlock();
527 backing.unlock();
620 backing.unlock();
741 backing.unlock();
769 public void unlock() { method in class:BackingStore.ByteBufferBacking
870 backing.unlock();
880 public void unlock() { method in class:BackingStore.AllocationBacking
[all...]
H A DCameraStreamer.java228 targetFrame.unlock();
353 targetFrame.unlock();
629 targetFrame.unlock();
839 * a waiting thread by calling unlock (i.e. signal), provided that unlock
841 * from rogue usage of unlock.
865 mLock.unlock();
869 public void unlock(Object context) { method in class:CameraStreamer.CameraRunnable.ExternalCameraLock
880 mLock.unlock();
972 mExternalCameraLock.unlock(contex
[all...]
/frameworks/native/services/surfaceflinger/tests/
H A DTransaction_test.cpp36 uint8_t r, uint8_t g, uint8_t b, bool unlock=true) {
51 if (unlock) {
35 fillSurfaceRGBA8(const sp<SurfaceControl>& sc, uint8_t r, uint8_t g, uint8_t b, bool unlock=true) argument
/frameworks/av/camera/
H A DCamera.cpp152 status_t Camera::unlock() function in class:android::Camera
156 return c->unlock();
H A DICamera.cpp304 virtual status_t unlock() function in class:android::hardware::BpCamera
486 reply->writeInt32(unlock());
H A DCameraMetadata.cpp83 status_t CameraMetadata::unlock(const camera_metadata_t *buffer) const { function in class:android::CameraMetadata
85 ALOGE("%s: Can't unlock a non-locked CameraMetadata!", __FUNCTION__);
89 ALOGE("%s: Can't unlock CameraMetadata with wrong pointer!",
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.h187 // lock/unlock are used by the callback before accessing the payload of this object
189 void unlock() const { mLock.unlock(); } function in class:android::MediaPlayerService::AudioOutput::CallbackData
205 mLock.unlock();
/frameworks/av/services/audioflinger/
H A DEffects.h124 void unlock() { mLock.unlock(); } function in class:EffectModule
283 void unlock() { function in class:EffectChain
284 mLock.unlock();
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java925 public void unlock() { method in class:SlidingDrawer
932 * @see #unlock()
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp418 mBinderSerializationLock.unlock();
489 status_t Camera2Client::unlock() { function in class:android::Camera2Client
500 ALOGD("Not allowed to unlock camera during recording.");
H A DCameraClient.cpp178 status_t CameraClient::unlock() { function in class:android::CameraClient
180 LOG1("unlock (pid %d)", callingPid);
187 ALOGE("Not allowed to unlock camera during recording.");
792 mLock.unlock();
911 client->mLock.unlock();
954 mLock.unlock();
966 mLock.unlock();
984 mLock.unlock();
1007 mLock.unlock();
1011 mLock.unlock();
[all...]
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraAgent.java436 * @see android.hardware.Camera#unlock()
438 public void unlock() { method in class:CameraAgent.CameraProxy
451 }, bundle.mWaitLock, CAMERA_OPERATION_TIMEOUT_MS, "camera unlock");
491 // unlock the sizes when stopPreview() is invoked (see related FIXME on

Completed in 685 milliseconds

12