Home
last modified time | relevance | path

Searched refs:windowBuffer (Results 1 - 10 of 10) sorted by relevance

/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webcore/
H A Dark_native_image_adapter_wrapper.cpp91 void** windowBuffer, in AcquireNativeWindowBuffer()
94 return ctocpp_->AcquireNativeWindowBuffer(windowBuffer, acquireFenceFd); in AcquireNativeWindowBuffer()
98 void* windowBuffer, in GetNativeBuffer()
101 return ctocpp_->GetNativeBuffer(windowBuffer, nativeBuffer); in GetNativeBuffer()
104 int32_t ArkNativeImageAdapterWrapper::ReleaseNativeWindowBuffer(void* windowBuffer, int fenceFd) in ReleaseNativeWindowBuffer() argument
106 return ctocpp_->ReleaseNativeWindowBuffer(windowBuffer, fenceFd); in ReleaseNativeWindowBuffer()
110 void* windowBuffer, in GetNativeWindowBufferSize()
114 return ctocpp_->GetNativeWindowBufferSize(windowBuffer, width, height); in GetNativeWindowBufferSize()
90 AcquireNativeWindowBuffer( void** windowBuffer, int* acquireFenceFd) AcquireNativeWindowBuffer() argument
97 GetNativeBuffer( void* windowBuffer, void** nativeBuffer) GetNativeBuffer() argument
109 GetNativeWindowBufferSize( void* windowBuffer, uint32_t* width, uint32_t* height) GetNativeWindowBufferSize() argument
H A Dark_native_image_adapter_wrapper.h54 void** windowBuffer,
58 void* windowBuffer,
61 int32_t ReleaseNativeWindowBuffer(void* windowBuffer, int fenceFd) override;
64 void* windowBuffer,
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/bridge/webview/
H A Dark_native_image_adapter_impl.cpp89 void** windowBuffer, in AcquireNativeWindowBuffer()
92 return real_->AcquireNativeWindowBuffer(windowBuffer, acquireFenceFd); in AcquireNativeWindowBuffer()
96 void* windowBuffer, in GetNativeBuffer()
99 return real_->GetNativeBuffer(windowBuffer, nativeBuffer); in GetNativeBuffer()
102 int32_t ArkNativeImageAdapterImpl::ReleaseNativeWindowBuffer(void* windowBuffer, int fenceFd) in ReleaseNativeWindowBuffer() argument
104 return real_->ReleaseNativeWindowBuffer(windowBuffer, fenceFd); in ReleaseNativeWindowBuffer()
108 void* windowBuffer, in GetNativeWindowBufferSize()
112 return real_->GetNativeWindowBufferSize(windowBuffer, width, height); in GetNativeWindowBufferSize()
88 AcquireNativeWindowBuffer( void** windowBuffer, int* acquireFenceFd) AcquireNativeWindowBuffer() argument
95 GetNativeBuffer( void* windowBuffer, void** nativeBuffer) GetNativeBuffer() argument
107 GetNativeWindowBufferSize( void* windowBuffer, uint32_t* width, uint32_t* height) GetNativeWindowBufferSize() argument
H A Dark_native_image_adapter_impl.h54 void** windowBuffer,
58 void* windowBuffer,
61 int32_t ReleaseNativeWindowBuffer(void* windowBuffer, int fenceFd) override;
64 void* windowBuffer,
/base/web/webview/ohos_adapter/graphic_adapter/src/
H A Dnative_image_adapter_impl.cpp125 void** windowBuffer, in AcquireNativeWindowBuffer()
139 *windowBuffer = buffer; in AcquireNativeWindowBuffer()
144 void* windowBuffer, in GetNativeBuffer()
148 int32_t ret = OH_NativeBuffer_FromNativeWindowBuffer(static_cast<OHNativeWindowBuffer*>(windowBuffer), &buffer); in GetNativeBuffer()
158 int32_t NativeImageAdapterImpl::ReleaseNativeWindowBuffer(void* windowBuffer, int fenceFd) in ReleaseNativeWindowBuffer() argument
164 static_cast<OHNativeWindowBuffer*>(windowBuffer), fenceFd); in ReleaseNativeWindowBuffer()
167 void NativeImageAdapterImpl::GetNativeWindowBufferSize(void* windowBuffer, uint32_t* width, uint32_t* height) in GetNativeWindowBufferSize() argument
169 if (windowBuffer == nullptr || width == nullptr || height == nullptr) { in GetNativeWindowBufferSize()
172 BufferHandle *handle = OH_NativeWindow_GetBufferHandleFromNative(static_cast<OHNativeWindowBuffer*>(windowBuffer)); in GetNativeWindowBufferSize()
124 AcquireNativeWindowBuffer( void** windowBuffer, int* acquireFenceFd) AcquireNativeWindowBuffer() argument
143 GetNativeBuffer( void* windowBuffer, void** nativeBuffer) GetNativeBuffer() argument
/base/web/webview/ohos_adapter/graphic_adapter/include/
H A Dnative_image_adapter_impl.h54 void** windowBuffer,
58 void* windowBuffer,
61 int32_t ReleaseNativeWindowBuffer(void* windowBuffer, int fenceFd) override;
64 void* windowBuffer,
/base/web/webview/test/unittest/ohos_adapter/graphic_adapter_test/
H A Dnative_image_adapter_impl_test.cpp208 void* windowBuffer = nullptr; in HWTEST_F() local
210 int32_t ret = imagerAdapter->AcquireNativeWindowBuffer(&windowBuffer, &fenceId); in HWTEST_F()
215 ret = imagerAdapter->AcquireNativeWindowBuffer(&windowBuffer, &fenceId); in HWTEST_F()
230 void* windowBuffer = nullptr; in HWTEST_F() local
232 imagerAdapter->GetNativeBuffer(windowBuffer, &nativeBuffer); in HWTEST_F()
246 void* windowBuffer = nullptr; in HWTEST_F() local
248 int32_t ret = imagerAdapter->ReleaseNativeWindowBuffer(windowBuffer, fenceId); in HWTEST_F()
253 imagerAdapter->ReleaseNativeWindowBuffer(windowBuffer, fenceId); in HWTEST_F()
267 void* windowBuffer = nullptr; in HWTEST_F() local
270 imagerAdapter->GetNativeWindowBufferSize(windowBuffer, in HWTEST_F()
[all...]
/base/web/webview/ohos_interface/ohos_glue/ohos_adapter/include/
H A Dark_graphic_adapter.h228 * @Output windowBuffer: Indicates the pointer to an <b>OHNativeWindowBuffer</b> point.
235 void** windowBuffer,
240 * @Input windowBuffer: Indicates the pointer to a <b>OHNativeWindowBuffer</b> instance.
247 void* windowBuffer,
252 * @Input windowBuffer: Indicates the pointer to an <b>OHNativeWindowBuffer</b> instance.
258 virtual int32_t ReleaseNativeWindowBuffer(void* windowBuffer, int fenceFd) = 0;
262 * @Input windowBuffer: Indicates the pointer to an <b>OHNativeWindowBuffer</b> instance.
269 void* windowBuffer,
/base/web/webview/ohos_interface/include/ohos_adapter/
H A Dgraphic_adapter.h283 void** windowBuffer,
287 void* windowBuffer,
290 virtual int32_t ReleaseNativeWindowBuffer(void* windowBuffer, int fenceFd) = 0;
293 void* windowBuffer,
/base/web/webview/test/unittest/ohos_adapter/ohos_image_adapter/
H A Dohos_image_decoder_adapter_test.cpp409 void* windowBuffer = imageDecoderAdapterImpl.GetNativeWindowBuffer(); in HWTEST_F() local
410 EXPECT_EQ(windowBuffer, nullptr); in HWTEST_F()
415 windowBuffer = imageDecoderAdapterImpl.GetNativeWindowBuffer(); in HWTEST_F()
416 EXPECT_NE(windowBuffer, nullptr); in HWTEST_F()
420 windowBuffer = imageDecoderAdapterImpl.GetNativeWindowBuffer(); in HWTEST_F()
421 EXPECT_NE(windowBuffer, nullptr); in HWTEST_F()

Completed in 4 milliseconds