Home
last modified time | relevance | path

Searched refs:getNativeWindow (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/core/jni/
Dandroid_hardware_camera2_legacy_LegacyCameraDevice.cpp379 static sp<ANativeWindow> getNativeWindow(JNIEnv* env, jobject surface) { in getNativeWindow() function
440 if ((anw = getNativeWindow(env, surface)) == NULL) { in LegacyCameraDevice_nativeDetectSurfaceType()
458 if ((anw = getNativeWindow(env, surface)) == NULL) { in LegacyCameraDevice_nativeDetectSurfaceDataspace()
488 if ((anw = getNativeWindow(env, surface)) == NULL) { in LegacyCameraDevice_nativeDetectSurfaceDimens()
516 if ((anw = getNativeWindow(env, surface)) == NULL) { in LegacyCameraDevice_nativeDetectSurfaceUsageFlags()
538 if ((anw = getNativeWindow(env, surface)) == NULL) { in LegacyCameraDevice_nativeDisconnectSurface()
607 if ((anw = getNativeWindow(env, surface)) == NULL) { in LegacyCameraDevice_nativeProduceFrame()
640 if ((anw = getNativeWindow(env, surface)) == NULL) { in LegacyCameraDevice_nativeSetSurfaceFormat()
657 if ((anw = getNativeWindow(env, surface)) == NULL) { in LegacyCameraDevice_nativeSetSurfaceDimens()
702 if ((anw = getNativeWindow(env, surface)) == NULL) { in LegacyCameraDevice_nativeSetSurfaceOrientation()
[all …]
/frameworks/wilhelm/tests/sandbox/
Dnativewindow.h7 extern ANativeWindow *getNativeWindow();
Dnativewindow.cpp85 ANativeWindow *getNativeWindow() in getNativeWindow() function
Dxaplay.c426 nativeWindow = getNativeWindow(); in main()
/frameworks/native/services/surfaceflinger/tests/unittests/mock/
DMockNativeWindowSurface.h33 MOCK_CONST_METHOD0(getNativeWindow, sp<ANativeWindow>());
/frameworks/native/opengl/libs/EGL/
DeglApi.cpp673 native_window_set_buffers_smpte2086_metadata(s->getNativeWindow(), &smpteMetadata); in sendSurfaceMetadata()
684 native_window_set_buffers_cta861_3_metadata(s->getNativeWindow(), &cta8613Metadata); in sendSurfaceMetadata()
1399 native_window_api_disconnect(s->getNativeWindow(), NATIVE_WINDOW_API_EGL); in eglSwapBuffersWithDamageKHR()
1421 … native_window_set_surface_damage(s->getNativeWindow(), androidRects.data(), androidRects.size()); in eglSwapBuffersWithDamageKHR()
1525 if (!s->getNativeWindow()) { in eglSurfaceAttrib()
1528 int err = native_window_set_auto_refresh(s->getNativeWindow(), value != 0); in eglSurfaceAttrib()
1533 if (!s->getNativeWindow()) { in eglSurfaceAttrib()
1536 int err = native_window_enable_frame_timestamps(s->getNativeWindow(), value != 0); in eglSurfaceAttrib()
2134 native_window_set_buffers_timestamp(s->getNativeWindow(), time); in eglPresentationTimeANDROID()
2236 if (!s->getNativeWindow()) { in eglGetNextFrameIdANDROID()
[all …]
Degl_object.h137 ANativeWindow* getNativeWindow() { return win; } in getNativeWindow() function
138 ANativeWindow* getNativeWindow() const { return win; } in getNativeWindow() function
/frameworks/rs/
DrsGrallocConsumer.h43 ANativeWindow* getNativeWindow();
DrsGrallocConsumer.cpp83 ANativeWindow* GrallocConsumer::getNativeWindow() { in getNativeWindow() function in android::renderscript::GrallocConsumer
DrsAllocation.cpp601 return mGrallocConsumer->getNativeWindow(); in getSurface()
/frameworks/native/services/surfaceflinger/
DSurfaceFlinger.h140 virtual sp<ANativeWindow> getNativeWindow() const = 0;
DSurfaceFlinger.cpp194 sp<ANativeWindow> getNativeWindow() const override { return surface; } in getNativeWindow() function in android::impl::NativeWindowSurface
2294 auto nativeWindow = nativeWindowSurface->getNativeWindow(); in setupNewDisplayDeviceInternal()
/frameworks/native/services/surfaceflinger/tests/unittests/
DDisplayTransactionTest.cpp267 EXPECT_CALL(*test->mNativeWindowSurface, getNativeWindow()) in setupNativeWindowSurfaceCreationCallExpectations()