Home
last modified time | relevance | path

Searched refs:windowHandles (Results 1 – 8 of 8) sorted by relevance

/frameworks/av/camera/ndk/ndk_vendor/impl/
Dutils.h120 areWindowNativeHandlesEqual(self.windowHandles, other.windowHandles);
151 return areWindowNativeHandlesLessThan(self.windowHandles, other.windowHandles);
DACameraDevice.cpp231 sessionConfig.outputStreams[index].windowHandles.resize(output.mSharedWindows.size() + 1); in isSessionConfigurationSupported()
232 sessionConfig.outputStreams[index].windowHandles[0] = output.mWindow; in isSessionConfigurationSupported()
302 outConfig.windowHandles.resize(output->mSharedWindows.size() + 1); in updateOutputConfigurationLocked()
303 outConfig.windowHandles[0] = output->mWindow; in updateOutputConfigurationLocked()
307 outConfig.windowHandles[i++] = anw; in updateOutputConfigurationLocked()
365 const auto& windowHandles = outConfig.mOutputConfiguration.windowHandles; in allocateCaptureRequestLocked() local
366 for (int surfaceId = 0; surfaceId < (int) windowHandles.size(); surfaceId++) { in allocateCaptureRequestLocked()
368 if (utils::isWindowNativeHandleEqual(windowHandles[surfaceId].getNativeHandle(), in allocateCaptureRequestLocked()
619 outConfigInsert.windowHandles.resize(outConfig.mSharedWindows.size() + 1); in configureStreamsLocked()
620 outConfigInsert.windowHandles[0] = anw; in configureStreamsLocked()
[all …]
/frameworks/av/services/camera/libcameraservice/hidl/
DConvert.cpp87 auto &windowHandles = hOutputConfiguration.windowHandles; in convertFromHidl() local
88 iGBPs.reserve(windowHandles.size()); in convertFromHidl()
89 for (auto &handle : windowHandles) { in convertFromHidl()
96 (windowHandles.size() > 1)); in convertFromHidl()
/frameworks/native/services/inputflinger/dispatcher/
DInputDispatcher.cpp495 const std::vector<sp<InputWindowHandle>> windowHandles = getWindowHandlesLocked(displayId); in findTouchedWindowAtLocked() local
496 for (const sp<InputWindowHandle>& windowHandle : windowHandles) { in findTouchedWindowAtLocked()
1540 const std::vector<sp<InputWindowHandle>> windowHandles = in findTouchedWindowTargetsLocked() local
1542 for (const sp<InputWindowHandle>& windowHandle : windowHandles) { in findTouchedWindowTargetsLocked()
1751 const std::vector<sp<InputWindowHandle>> windowHandles = getWindowHandlesLocked(displayId); in isWindowObscuredAtPointLocked() local
1752 for (const sp<InputWindowHandle>& otherHandle : windowHandles) { in isWindowObscuredAtPointLocked()
1768 const std::vector<sp<InputWindowHandle>> windowHandles = getWindowHandlesLocked(displayId); in isWindowObscuredLocked() local
1770 for (const sp<InputWindowHandle>& otherHandle : windowHandles) { in isWindowObscuredLocked()
3109 const std::vector<sp<InputWindowHandle>> windowHandles = it.second; in getWindowHandleLocked() local
3110 for (const sp<InputWindowHandle>& windowHandle : windowHandles) { in getWindowHandleLocked()
[all …]
/frameworks/hardware/interfaces/cameraservice/vts/functional/
DVtsHalCameraServiceV2_0TargetTest.cpp244 output.windowHandles.resize(nhs.size()); in createOutputConfiguration()
249 output.windowHandles[i] = nhs[i]; in createOutputConfiguration()
/frameworks/base/services/core/jni/
Dcom_android_server_input_InputManagerService.cpp771 std::vector<sp<InputWindowHandle> > windowHandles; in setInputWindows() local
784 windowHandles.push_back(windowHandle); in setInputWindows()
790 mInputManager->getDispatcher()->setInputWindows(windowHandles, displayId); in setInputWindows()
794 size_t numWindows = windowHandles.size(); in setInputWindows()
796 const sp<InputWindowHandle>& windowHandle = windowHandles[i]; in setInputWindows()
/frameworks/hardware/interfaces/cameraservice/device/2.0/
Dtypes.hal329 vec<handle> windowHandles;
/frameworks/base/services/core/java/com/android/server/input/
DInputManagerService.java221 private static native void nativeSetInputWindows(long ptr, InputWindowHandle[] windowHandles, in nativeSetInputWindows() argument