Home
last modified time | relevance | path

Searched refs:childrenOnly (Results 1 – 11 of 11) sorted by relevance

/frameworks/native/services/surfaceflinger/
DRenderAreaBuilder.h65 bool childrenOnly, ftl::Flags<RenderArea::Options> options) in LayerRenderAreaBuilder()
68 childrenOnly(childrenOnly) {} in LayerRenderAreaBuilder()
84 bool childrenOnly; member
89 if (!childrenOnly) { in setLayerSnapshot()
DSurfaceFlinger.cpp8137 if (args.childrenOnly) { in captureLayers()
8144 args.childrenOnly, parentCrop); in captureLayers()
8157 reqSize, dataspace, parent, args.childrenOnly, in captureLayers()
9518 bool childrenOnly, in getLayerSnapshotsForScreenshots() argument
9520 return [&, rootLayerId, uid, excludeLayerIds = std::move(excludeLayerIds), childrenOnly, in getLayerSnapshotsForScreenshots()
9522 auto root = mLayerHierarchyBuilder.getPartialHierarchy(rootLayerId, childrenOnly); in getLayerSnapshotsForScreenshots()
DSurfaceFlinger.h1497 bool childrenOnly, const std::optional<FloatRect>& optionalParentCrop);
/frameworks/native/services/surfaceflinger/tests/
DLayerState_test.cpp70 args.childrenOnly = false; in TEST()
87 ASSERT_EQ(args.childrenOnly, args2.childrenOnly); in TEST()
DScreenCapture_test.cpp337 captureArgs.childrenOnly = true; in TEST_F()
363 captureArgs.childrenOnly = true; in TEST_F()
403 captureArgs.childrenOnly = true; in TEST_F()
524 args.childrenOnly = false; in TEST_F()
720 args.childrenOnly = false; in TEST_F()
887 captureArgs.childrenOnly = false; in TEST_F()
1061 captureArgs.childrenOnly = true; in TEST_F()
1088 captureArgs.childrenOnly = true; in verify()
/frameworks/base/core/jni/
Dandroid_window_ScreenCapture.cpp60 jfieldID childrenOnly; member
225 captureArgs.childrenOnly = in nativeCaptureLayers()
226 env->GetBooleanField(layerCaptureArgsObject, gLayerCaptureArgsClassInfo.childrenOnly); in nativeCaptureLayers()
329 gLayerCaptureArgsClassInfo.childrenOnly = in register_android_window_ScreenCapture()
/frameworks/native/libs/gui/include/gui/
DLayerCaptureArgs.h28 bool childrenOnly{false};
/frameworks/native/services/surfaceflinger/FrontEnd/
DLayerHierarchy.h187 LayerHierarchy(const LayerHierarchy& hierarchy, bool childrenOnly);
210 LayerHierarchy getPartialHierarchy(uint32_t, bool childrenOnly) const;
DLayerHierarchy.cpp50 LayerHierarchy::LayerHierarchy(const LayerHierarchy& hierarchy, bool childrenOnly) { in LayerHierarchy() argument
51 mLayer = (childrenOnly) ? nullptr : hierarchy.mLayer; in LayerHierarchy()
469 bool childrenOnly) const { in getPartialHierarchy()
473 LayerHierarchy hierarchy(*it->second, childrenOnly); in getPartialHierarchy()
/frameworks/base/core/java/android/window/
DScreenCapture.java660 public Builder setChildrenOnly(boolean childrenOnly) { in setChildrenOnly() argument
661 mChildrenOnly = childrenOnly; in setChildrenOnly()
/frameworks/native/libs/gui/
DLayerState.cpp937 SAFE_PARCEL(output->writeBool, childrenOnly); in writeToParcel()
946 SAFE_PARCEL(input->readBool, &childrenOnly); in readFromParcel()