Home
last modified time | relevance | path

Searched defs:SectionNode (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/bcc/tests/cc/
H A Dcatch.hpp8601 struct SectionNode : SharedImpl<> { struct
8602 explicit SectionNode( SectionStats const& _stats ) : stats( _stats ) {} in SectionNode() argument
8605 bool operator == ( SectionNode const& other ) const { in operator ==()
8608 bool operator == ( Ptr<SectionNode> const& other ) const { in operator ==()
8612 SectionStats stats;
8613 typedef std::vector<Ptr<SectionNode> > ChildSections;
8614 typedef std::vector<AssertionStats> Assertions;
8615 ChildSections childSections;
8616 Assertions assertions;
8617 std::string stdOut;
[all …]
/aosp_15_r20/system/update_engine/scripts/update_payload/
H A Dchecker.py201 class SectionNode(Node): class in _PayloadReport