OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rawHandle
(Results
1 - 12
of
12
) sorted by null
/hardware/interfaces/graphics/mapper/2.0/vts/functional/
VtsHalGraphicsMapperTestUtils.h
65
const native_handle_t* importBuffer(const hidl_handle&
rawHandle
);
80
const native_handle_t* cloneBuffer(const hidl_handle&
rawHandle
);
VtsHalGraphicsMapperTestUtils.cpp
69
const native_handle_t* Gralloc::cloneBuffer(const hidl_handle&
rawHandle
) {
71
native_handle_clone(
rawHandle
.getNativeHandle());
146
const native_handle_t* Gralloc::importBuffer(const hidl_handle&
rawHandle
) {
149
rawHandle
, [&](const auto& tmpError, const auto& tmpBuffer) {
151
<<
rawHandle
.getNativeHandle();
VtsHalGraphicsMapperV2_0TargetTest.cpp
167
const native_handle_t*
rawHandle
;
169
rawHandle
= mGralloc->allocate(mDummyDescriptorInfo, false));
173
rawHandle
, [&](const auto& tmpError, const auto& buffer) {
184
ASSERT_NO_FATAL_FAILURE(mGralloc->freeBuffer(
rawHandle
));
/frameworks/native/libs/ui/
GraphicBufferMapper.cpp
50
status_t GraphicBufferMapper::importBuffer(buffer_handle_t
rawHandle
,
56
hardware::hidl_handle(
rawHandle
), outHandle);
59
rawHandle
, error);
Gralloc2.cpp
61
Error Mapper::importBuffer(const hardware::hidl_handle&
rawHandle
,
65
auto ret = mMapper->importBuffer(
rawHandle
,
/external/deqp/framework/platform/android/
tcuAndroidWindow.cpp
147
void WindowRegistry::destroyWindow (ANativeWindow*
rawHandle
)
153
if (window->getNativeWindow() ==
rawHandle
)
/hardware/interfaces/graphics/mapper/2.0/
IMapper.hal
106
* @param
rawHandle
is the raw buffer handle to import.
116
importBuffer(handle
rawHandle
) generates (Error error, pointer buffer);
/frameworks/native/include/ui/
GraphicBufferMapper.h
49
// needed.
rawHandle
is owned by the caller.
50
status_t importBuffer(buffer_handle_t
rawHandle
,
Gralloc2.h
52
Error importBuffer(const hardware::hidl_handle&
rawHandle
,
/hardware/interfaces/graphics/mapper/2.0/default/
GrallocMapper.h
38
Return<void> importBuffer(const hidl_handle&
rawHandle
,
GrallocMapper.cpp
126
Return<void> GrallocMapper::importBuffer(const hidl_handle&
rawHandle
,
129
//
rawHandle
has been imported
131
if (!
rawHandle
.getNativeHandle()) {
137
native_handle_clone(
rawHandle
.getNativeHandle());
/frameworks/native/libs/binder/tests/
binderSafeInterfaceTest.cpp
419
native_handle*
rawHandle
= native_handle_create(1 /*numFds*/, 1 /*numInts*/);
420
if (
rawHandle
== nullptr) return NO_MEMORY;
423
rawHandle
->data[0] = dup(a->handle()->data[0]);
426
rawHandle
->data[1] = a->handle()->data[1] + 1;
430
*aPlusOne = NativeHandle::create(
rawHandle
, true);
[
all
...]
Completed in 621 milliseconds