Home
last modified time | relevance | path

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

/frameworks/native/libs/ui/
DGraphicBufferMapper.cpp54 status_t GraphicBufferMapper::importBuffer(buffer_handle_t rawHandle, in importBuffer() argument
63 hardware::hidl_handle(rawHandle), &bufferHandle); in importBuffer()
65 ALOGW("importBuffer(%p) failed: %d", rawHandle, error); in importBuffer()
78 ALOGE("validateBufferSize(%p) failed: %d", rawHandle, error); in importBuffer()
DGralloc2.cpp136 Error Mapper::importBuffer(const hardware::hidl_handle& rawHandle, in importBuffer() argument
140 auto ret = mMapper->importBuffer(rawHandle, in importBuffer()
/frameworks/native/libs/ui/include_vndk/ui/
DGraphicBufferMapper.h52 status_t importBuffer(buffer_handle_t rawHandle,
DGralloc2.h55 Error importBuffer(const hardware::hidl_handle& rawHandle,
/frameworks/native/libs/ui/include/ui/
DGraphicBufferMapper.h52 status_t importBuffer(buffer_handle_t rawHandle,
DGralloc2.h55 Error importBuffer(const hardware::hidl_handle& rawHandle,
/frameworks/native/libs/binder/tests/
DbinderSafeInterfaceTest.cpp419 native_handle* rawHandle = native_handle_create(1 /*numFds*/, 1 /*numInts*/); in increment() local
420 if (rawHandle == nullptr) return NO_MEMORY; in increment()
423 rawHandle->data[0] = dup(a->handle()->data[0]); in increment()
426 rawHandle->data[1] = a->handle()->data[1] + 1; in increment()
430 *aPlusOne = NativeHandle::create(rawHandle, true); in increment()