/frameworks/native/services/surfaceflinger/ |
D | EventControlThread.cpp | 35 pthread_setname_np(mThread.native_handle(), "EventControlThread"); in EventControlThread() 37 pid_t tid = pthread_gettid_np(mThread.native_handle()); in EventControlThread()
|
D | EventThread.cpp | 62 pthread_setname_np(mThread.native_handle(), threadName); in EventThread() 64 pid_t tid = pthread_gettid_np(mThread.native_handle()); in EventThread() 70 if (pthread_setschedparam(mThread.native_handle(), SCHED_FIFO, ¶m) != 0) { in EventThread()
|
D | BufferLayerConsumer.h | 236 const native_handle* graphicBufferHandle() { in graphicBufferHandle()
|
/frameworks/native/libs/sensor/include/sensor/ |
D | ISensorServer.h | 28 struct native_handle; 29 typedef struct native_handle native_handle_t;
|
D | SensorManager.h | 41 struct native_handle; 42 typedef struct native_handle native_handle_t;
|
/frameworks/av/media/libmedia/ |
D | IOMX.cpp | 331 buffer_id *buffer, void **buffer_data, sp<NativeHandle> *native_handle) { in allocateSecureBuffer() argument 342 *native_handle = NULL; in allocateSecureBuffer() 349 *native_handle = NativeHandle::create( in allocateSecureBuffer() 352 *native_handle = NULL; in allocateSecureBuffer() 517 void **buffer_data, sp<NativeHandle> *native_handle) { in allocateSecureBuffer() argument 519 port_index, size, buffer, buffer_data, native_handle); in allocateSecureBuffer() 865 sp<NativeHandle> native_handle; in onTransact() local 867 port_index, size, &buffer, &buffer_data, &native_handle); in onTransact() 874 … reply->writeNativeHandle(native_handle == NULL ? NULL : native_handle->handle()); in onTransact()
|
/frameworks/native/libs/vr/libdvr/include/dvr/ |
D | dvr_buffer.h | 15 struct native_handle;
|
D | dvr_api.h | 71 struct native_handle; 143 typedef const struct native_handle* (*DvrWriteBufferGetNativeHandlePtr)( 159 typedef const struct native_handle* (*DvrReadBufferGetNativeHandlePtr)( 166 typedef const struct native_handle* (*DvrBufferGetNativeHandlePtr)(
|
/frameworks/native/libs/vr/libbufferhub/include/private/dvr/ |
D | buffer_hub_client.h | 78 return LocalHandle(dup(native_handle()->data[0])); in GetBlobFd() 103 native_handle_t* native_handle() const { in native_handle() function
|
/frameworks/av/media/libmedia/omx/1.0/ |
D | WOmxNode.cpp | 142 void **buffer_data, sp<NativeHandle> *native_handle) { in allocateSecureBuffer() argument 148 [&fnStatus, buffer, native_handle]( in allocateSecureBuffer() 154 *native_handle = outNativeHandle.getNativeHandle() == nullptr ? in allocateSecureBuffer()
|
/frameworks/av/media/libstagefright/omx/1.0/ |
D | WOmxNode.cpp | 145 void **buffer_data, sp<NativeHandle> *native_handle) { in allocateSecureBuffer() argument 151 [&fnStatus, buffer, native_handle]( in allocateSecureBuffer() 157 *native_handle = outNativeHandle.getNativeHandle() == nullptr ? in allocateSecureBuffer()
|
/frameworks/native/libs/vr/libbufferhub/ |
D | buffer_hub_client.cpp | 240 size_t numFds = static_cast<size_t>(native_handle()->numFds); in GetBlobFds() 242 std::copy(native_handle()->data, native_handle()->data + *fds_count, fds); in GetBlobFds()
|
/frameworks/native/services/sensorservice/ |
D | SensorDirectConnection.cpp | 50 native_handle_delete(const_cast<struct native_handle*>(mMem.handle)); in destroy()
|
D | SensorService.h | 198 uint32_t size, int32_t type, int32_t format, const native_handle *resource);
|
/frameworks/av/media/libmedia/include/media/ |
D | IOMX.h | 136 void **buffer_data, sp<NativeHandle> *native_handle) = 0;
|
/frameworks/native/libs/gui/include/gui/ |
D | GLConsumer.h | 316 const native_handle* graphicBufferHandle() { in graphicBufferHandle()
|
/frameworks/av/include/media/ |
D | IOMX.h | 136 void **buffer_data, sp<NativeHandle> *native_handle) = 0;
|
/frameworks/av/media/libmedia/include/media/omx/1.0/ |
D | WOmxNode.h | 89 void **buffer_data, sp<NativeHandle> *native_handle) override;
|
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/1.0/ |
D | WOmxNode.h | 90 void **buffer_data, sp<NativeHandle> *native_handle) override;
|
/frameworks/av/media/libstagefright/omx/ |
D | OMXNodeInstance.cpp | 1463 nativeHandle == NULL ? NULL : const_cast<native_handle*>(nativeHandle->handle()); in updateNativeHandleInMeta_l() 1532 void **buffer_data, sp<NativeHandle> *native_handle) { in allocateSecureBuffer() argument 1533 if (buffer == NULL || buffer_data == NULL || native_handle == NULL) { in allocateSecureBuffer() 1578 *native_handle = NativeHandle::create( in allocateSecureBuffer() 1582 *native_handle = NULL; in allocateSecureBuffer() 1593 *native_handle == NULL ? NULL : (*native_handle)->handle())); in allocateSecureBuffer()
|
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/ |
D | OMXNodeInstance.h | 78 void **buffer_data, sp<NativeHandle> *native_handle);
|
/frameworks/native/libs/binder/tests/ |
D | binderSafeInterfaceTest.cpp | 419 native_handle* rawHandle = native_handle_create(1 /*numFds*/, 1 /*numInts*/); in increment() 701 native_handle* handle = native_handle_create(1 /*numFds*/, 1 /*numInts*/); in TEST_F()
|
/frameworks/native/libs/binder/ |
D | Parcel.cpp | 1130 status_t Parcel::writeNativeHandle(const native_handle* handle) in writeNativeHandle() 1132 if (!handle || handle->version != sizeof(native_handle)) in writeNativeHandle() 2180 native_handle* Parcel::readNativeHandle() const in readNativeHandle() 2189 native_handle* h = native_handle_create(numFds, numInts); in readNativeHandle()
|
/frameworks/native/libs/binder/include/binder/ |
D | Parcel.h | 192 status_t writeNativeHandle(const native_handle* handle); 352 native_handle* readNativeHandle() const;
|
/frameworks/native/libs/ui/ |
D | GraphicBuffer.cpp | 436 native_handle* h = native_handle_create( in unflatten()
|