/system/core/libutils/include/utils/ |
NativeHandle.h | 27 class NativeHandle : public LightRefBase<NativeHandle> { 32 // If handle is NULL, no NativeHandle will be created. 33 static sp<NativeHandle> create(native_handle_t* handle, bool ownsHandle); 41 friend class LightRefBase<NativeHandle>; 43 NativeHandle(native_handle_t* handle, bool ownsHandle); 44 ~NativeHandle(); 50 NativeHandle(const NativeHandle&); 51 NativeHandle& operator=(const NativeHandle&) [all...] |
/system/core/libutils/ |
NativeHandle.cpp | 17 #include <utils/NativeHandle.h> 22 sp<NativeHandle> NativeHandle::create(native_handle_t* handle, bool ownsHandle) { 23 return handle ? new NativeHandle(handle, ownsHandle) : NULL; 26 NativeHandle::NativeHandle(native_handle_t* handle, bool ownsHandle) 31 NativeHandle::~NativeHandle() {
|
/external/libchrome/base/synchronization/ |
lock_impl.h | 27 using NativeHandle = SRWLOCK; 29 using NativeHandle = pthread_mutex_t; 49 NativeHandle* native_handle() { return &native_handle_; } 52 NativeHandle native_handle_;
|
read_write_lock.h | 49 using NativeHandle = SRWLOCK; 51 using NativeHandle = Lock; 53 using NativeHandle = pthread_rwlock_t; 56 NativeHandle native_handle_;
|
/external/v8/src/base/platform/ |
condition-variable.h | 64 typedef pthread_cond_t NativeHandle; 67 class NativeHandle final { 69 NativeHandle() : waitlist_(NULL), freelist_(NULL) {} 70 ~NativeHandle(); 83 DISALLOW_COPY_AND_ASSIGN(NativeHandle); 87 NativeHandle& native_handle() { 90 const NativeHandle& native_handle() const { 95 NativeHandle native_handle_;
|
mutex.h | 58 typedef pthread_mutex_t NativeHandle; 60 typedef CRITICAL_SECTION NativeHandle; 63 NativeHandle& native_handle() { 66 const NativeHandle& native_handle() const { 71 NativeHandle native_handle_; 156 typedef Mutex::NativeHandle NativeHandle; 158 NativeHandle& native_handle() { 161 const NativeHandle& native_handle() const { 166 NativeHandle native_handle_ [all...] |
semaphore.h | 53 typedef semaphore_t NativeHandle; 55 typedef sem_t NativeHandle; 57 typedef HANDLE NativeHandle; 60 NativeHandle& native_handle() { 63 const NativeHandle& native_handle() const { 68 NativeHandle native_handle_;
|
condition-variable.cc | 148 ConditionVariable::NativeHandle::~NativeHandle() { 159 ConditionVariable::Event* ConditionVariable::NativeHandle::Pre() { 187 void ConditionVariable::NativeHandle::Post(Event* event, bool result) {
|
/frameworks/av/media/libstagefright/include/ |
SecureBuffer.h | 26 class NativeHandle; 38 SecureBuffer(const sp<AMessage> &format, const sp<NativeHandle> &handle, size_t size); 49 const sp<NativeHandle> mHandle;
|
OMXNodeInstance.h | 77 void **buffer_data, sp<NativeHandle> *native_handle); 215 IOMX::buffer_id buffer, const sp<NativeHandle> &nativeHandle, 265 OMX_U32 portIndex, const sp<NativeHandle> &nativeHandle,
|
CodecBase.h | 35 #include <utils/NativeHandle.h>
|
/frameworks/av/media/libstagefright/ |
BufferImpl.cpp | 25 #include <utils/NativeHandle.h> 48 const sp<AMessage> &format, const sp<NativeHandle> &handle, size_t size)
|
/frameworks/av/media/libmedia/include/media/ |
OMXBuffer.h | 51 class NativeHandle; 82 OMXBuffer(const sp<NativeHandle> &handle); 134 sp<NativeHandle> mNativeHandle;
|
IOMX.h | 43 class NativeHandle; 135 void **buffer_data, sp<NativeHandle> *native_handle) = 0;
|
/frameworks/av/media/libmedia/ |
OMXBuffer.cpp | 26 #include <utils/NativeHandle.h> 59 OMXBuffer::OMXBuffer(const sp<NativeHandle> &handle) 160 sp<NativeHandle> handle = NativeHandle::create(
|
/frameworks/native/include/gui/ |
IGraphicBufferConsumer.h | 37 class NativeHandle; 260 virtual status_t getSidebandStream(sp<NativeHandle>* outStream) const = 0;
|
BufferQueueCore.h | 27 #include <utils/NativeHandle.h> 274 sp<NativeHandle> mSidebandStream;
|
BufferQueueConsumer.h | 144 status_t getSidebandStream(sp<NativeHandle>* outStream) const override;
|
BufferQueueProducer.h | 151 virtual status_t setSidebandStream(const sp<NativeHandle>& stream);
|
IGraphicBufferProducer.h | 42 class NativeHandle; 507 virtual status_t setSidebandStream(const sp<NativeHandle>& stream) = 0;
|
/frameworks/native/services/surfaceflinger/ |
MonitoredProducer.h | 25 class NativeHandle; 57 virtual status_t setSidebandStream(const sp<NativeHandle>& stream);
|
SurfaceFlingerConsumer.h | 79 sp<NativeHandle> getSidebandStream() const;
|
SurfaceFlingerConsumer.cpp | 29 #include <utils/NativeHandle.h> 141 sp<NativeHandle> SurfaceFlingerConsumer::getSidebandStream() const { 142 sp<NativeHandle> stream;
|
/frameworks/native/libs/binder/tests/ |
binderSafeInterfaceTest.cpp | 32 #include <utils/NativeHandle.h> 251 virtual status_t increment(const sp<NativeHandle>& a, sp<NativeHandle>* aPlusOne) const = 0; 308 status_t increment(const sp<NativeHandle>& a, sp<NativeHandle>* aPlusOne) const override { 311 status_t (ISafeInterfaceTest::*)(const sp<NativeHandle>&, sp<NativeHandle>*) const; 417 status_t increment(const sp<NativeHandle>& a, sp<NativeHandle>* aPlusOne) const override { 428 // This cannot fail, as it is just the sp<NativeHandle> taking responsibility for closin [all...] |
/frameworks/native/include/gui/bufferqueue/1.0/ |
H2BGraphicBufferProducer.h | 84 status_t setSidebandStream(const sp<NativeHandle>& stream) override;
|