Home
last modified time | relevance | path

Searched refs:rawHandle (Results 1 – 10 of 10) sorted by relevance

/frameworks/native/libs/ui/
DGraphicBufferMapper.cpp66 status_t GraphicBufferMapper::importBuffer(buffer_handle_t rawHandle, in importBuffer() argument
74 status_t error = mMapper->importBuffer(hardware::hidl_handle(rawHandle), &bufferHandle); in importBuffer()
76 ALOGW("importBuffer(%p) failed: %d", rawHandle, error); in importBuffer()
83 ALOGE("validateBufferSize(%p) failed: %d", rawHandle, error); in importBuffer()
DGralloc2.cpp155 status_t Gralloc2Mapper::importBuffer(const hardware::hidl_handle& rawHandle, in importBuffer() argument
158 auto ret = mMapper->importBuffer(rawHandle, in importBuffer()
DGralloc3.cpp132 status_t Gralloc3Mapper::importBuffer(const hardware::hidl_handle& rawHandle, in importBuffer() argument
135 auto ret = mMapper->importBuffer(rawHandle, [&](const auto& tmpError, const auto& tmpBuffer) { in importBuffer()
/frameworks/native/libs/ui/include/ui/
DGralloc.h43 virtual status_t importBuffer(const hardware::hidl_handle& rawHandle,
DGralloc3.h42 status_t importBuffer(const hardware::hidl_handle& rawHandle,
DGraphicBufferMapper.h53 status_t importBuffer(buffer_handle_t rawHandle,
DGralloc2.h43 status_t importBuffer(const hardware::hidl_handle& rawHandle,
/frameworks/native/libs/ui/include_vndk/ui/
DGraphicBufferMapper.h53 status_t importBuffer(buffer_handle_t rawHandle,
DGralloc2.h43 status_t importBuffer(const hardware::hidl_handle& rawHandle,
/frameworks/native/libs/binder/tests/
DbinderSafeInterfaceTest.cpp426 native_handle* rawHandle = native_handle_create(1 /*numFds*/, 1 /*numInts*/); in increment() local
427 if (rawHandle == nullptr) return NO_MEMORY; in increment()
430 rawHandle->data[0] = dup(a->handle()->data[0]); in increment()
433 rawHandle->data[1] = a->handle()->data[1] + 1; in increment()
437 *aPlusOne = NativeHandle::create(rawHandle, true); in increment()