/aosp14/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/certificate/ |
H A D | SigXml.java | 87 Element rootNode = CertUtils.getXmlRootNode(bytes); in parse() local 89 parseIntermediateCerts(rootNode), parseSignerCert(rootNode), in parse() 90 parseFileSignature(rootNode)); in parse() 93 private static List<X509Certificate> parseIntermediateCerts(Element rootNode) in parseIntermediateCerts() argument 98 rootNode, in parseIntermediateCerts() 108 private static X509Certificate parseSignerCert(Element rootNode) throws CertParsingException { in parseSignerCert() argument 111 CertUtils.MUST_EXIST_EXACTLY_ONE, rootNode, SIGNER_CERT_NODE_TAG); in parseSignerCert() 115 private static byte[] parseFileSignature(Element rootNode) throws CertParsingException { in parseFileSignature() argument 118 CertUtils.MUST_EXIST_EXACTLY_ONE, rootNode, SIGNATURE_NODE_TAG); in parseFileSignature()
|
H A D | CertXml.java | 108 Element rootNode = CertUtils.getXmlRootNode(bytes); in parse() local 110 parseSerial(rootNode), in parse() 111 parseIntermediateCerts(rootNode), in parse() 112 parseEndpointCerts(rootNode)); in parse() 115 private static long parseSerial(Element rootNode) throws CertParsingException { in parseSerial() argument 119 rootNode, in parseSerial() 125 private static List<X509Certificate> parseIntermediateCerts(Element rootNode) in parseIntermediateCerts() argument 130 rootNode, in parseIntermediateCerts() 140 private static List<X509Certificate> parseEndpointCerts(Element rootNode) in parseEndpointCerts() argument 145 rootNode, in parseEndpointCerts()
|
H A D | CertUtils.java | 161 static List<String> getXmlNodeContents(@MustExist int mustExist, Element rootNode, in getXmlNodeContents() argument 171 Element parent = rootNode; in getXmlNodeContents()
|
/aosp14/frameworks/base/cmds/uiautomator/library/core-src/com/android/uiautomator/core/ |
H A D | QueryController.java | 150 AccessibilityNodeInfo rootNode = getRootNode(); in findAccessibilityNodeInfo() local 151 if (rootNode == null) { in findAccessibilityNodeInfo() 158 return translateCompoundSelector(uiSelector, rootNode, isCounting); in findAccessibilityNodeInfo() 170 AccessibilityNodeInfo rootNode = null; in getRootNode() local 172 rootNode = mUiAutomatorBridge.getRootInActiveWindow(); in getRootNode() 173 if (rootNode != null) { in getRootNode() 174 return rootNode; in getRootNode() 181 return rootNode; in getRootNode() 505 AccessibilityNodeInfo rootNode = getRootNode(); in getCurrentPackageName() local 506 if (rootNode == null) in getCurrentPackageName() [all …]
|
/aosp14/frameworks/base/libs/hwui/tests/unit/ |
H A D | RenderNodeTests.cpp | 274 auto rootNode = TestUtils::createNode(0, 0, 200, 400, nullptr); in RENDERTHREAD_TEST() local 277 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory, 0, 0)); in RENDERTHREAD_TEST() 307 auto rootNode = in RENDERTHREAD_TEST() local 313 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory, 0, 0)); in RENDERTHREAD_TEST() 322 rootNode->mutateStagingProperties().mutateLayerProperties().setType(LayerType::RenderLayer); in RENDERTHREAD_TEST() 324 TestUtils::syncHierarchyPropertiesAndDisplayList(rootNode); in RENDERTHREAD_TEST() 325 rootNode->prepareTree(info); in RENDERTHREAD_TEST() 329 EXPECT_TRUE(rootNode->getDisplayList().hasVectorDrawables()); in RENDERTHREAD_TEST() 331 EXPECT_EQ(rootNode.get(), info.layerUpdateQueue->entries().at(0).renderNode.get()); in RENDERTHREAD_TEST()
|
H A D | CanvasContextTests.cpp | 36 auto rootNode = TestUtils::createNode(0, 0, 200, 400, nullptr); in RENDERTHREAD_TEST() local 39 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory, 0, 0)); in RENDERTHREAD_TEST()
|
H A D | RenderNodeDrawableTests.cpp | 45 auto rootNode = in TEST() local 54 RenderNodeDrawable drawable(rootNode.get(), &canvas); in TEST() 56 ASSERT_EQ(drawable.getRenderNode(), rootNode.get()); in TEST() 149 auto rootNode = TestUtils::createSkiaNode( in TEST() local 158 rootNode->setLayerSurface(surfaceLayer); in TEST() 160 RenderNodeDrawable drawable1(rootNode.get(), &canvas, false); in TEST() 164 RenderNodeDrawable drawable2(rootNode.get(), &canvas, true); in TEST() 168 RenderNodeDrawable drawable3(rootNode.get(), &canvas, false); in TEST() 172 rootNode->setLayerSurface(sk_sp<SkSurface>()); in TEST() 195 auto rootNode = TestUtils::createSkiaNode( in TEST() local [all …]
|
H A D | SkiaDisplayListTests.cpp | 142 auto rootNode = TestUtils::createNode(0, 0, 200, 400, nullptr); in RENDERTHREAD_SKIA_PIPELINE_TEST() local 145 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory, 0, 0)); in RENDERTHREAD_SKIA_PIPELINE_TEST() 201 auto rootNode = TestUtils::createNode(0, 0, 200, 400, nullptr); in RENDERTHREAD_SKIA_PIPELINE_TEST() local 204 CanvasContext::create(renderThread, false, rootNode.get(), &contextFactory, 0, 0)); in RENDERTHREAD_SKIA_PIPELINE_TEST()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/ |
H A D | ShadeViewDiffer.kt | 41 private val rootNode = ShadeNode(rootController) regex 42 private val nodes = mutableMapOf(rootController to rootNode) 52 if (spec.controller != rootNode.controller) { 57 detachChildren(rootNode, specMap) 58 attachChildren(rootNode, specMap)
|
/aosp14/frameworks/base/graphics/java/android/graphics/ |
H A D | HardwareBufferRenderer.java | 80 RenderNode rootNode = RenderNode.adopt(nCreateRootRenderNode()); in HardwareBufferRenderer() local 81 rootNode.setClipToBounds(false); in HardwareBufferRenderer() 82 mProxy = nCreateHardwareBufferRenderer(buffer, rootNode.mNativeRenderNode); in HardwareBufferRenderer() 85 mRootNode = rootNode; in HardwareBufferRenderer()
|
/aosp14/frameworks/base/libs/hwui/ |
H A D | RootRenderNode.h | 80 explicit ContextFactoryImpl(RootRenderNode* rootNode) : mRootNode(rootNode) {} in ContextFactoryImpl() argument
|
H A D | RootRenderNode.cpp | 249 AnimationContextBridge(renderthread::TimeLord& clock, RootRenderNode* rootNode) in AnimationContextBridge() argument 250 : AnimationContext(clock), mRootNode(rootNode) {} in AnimationContextBridge()
|
H A D | VectorDrawable.h | 504 explicit Tree(Group* rootNode) : mRootNode(rootNode) { in Tree() argument 509 Tree(const Tree* copy, Group* rootNode) : Tree(rootNode) { in Tree() argument
|
/aosp14/frameworks/base/apct-tests/perftests/autofill/src/android/view/autofill/ |
H A D | AutofillTestHelper.java | 54 final ViewNode rootNode = windowNode.getRootViewNode(); in findNodeByResourceId() local 55 final ViewNode node = findNodeByResourceId(rootNode, id); in findNodeByResourceId()
|
/aosp14/frameworks/base/libs/hwui/tests/macrobench/ |
H A D | TestSceneRunner.cpp | 119 sp<RenderNode> rootNode = TestUtils::createNode( in doRun() local 126 std::unique_ptr<RenderProxy> proxy(new RenderProxy(false, rootNode.get(), &factory)); in doRun()
|
/aosp14/frameworks/base/libs/hwui/renderthread/ |
H A D | RenderProxy.h | 73 RenderProxy(bool opaque, RenderNode* rootNode, IContextFactory* contextFactory);
|