Home
last modified time | relevance | path

Searched refs:Node (Results 1 – 14 of 14) sorted by relevance

/hardware/google/pixel/power-libperfmgr/libperfmgr/
DNode.cc29 Node::Node(std::string name, std::string node_path, in Node() function in android::perfmgr::Node
39 bool Node::AddRequest(std::size_t value_index, const std::string& hint_type, in AddRequest()
51 bool Node::RemoveRequest(const std::string& hint_type) { in RemoveRequest()
60 const std::string& Node::GetName() const { in GetName()
64 const std::string& Node::GetPath() const { in GetPath()
68 bool Node::GetValueIndex(const std::string& value, std::size_t* index) const { in GetValueIndex()
80 std::size_t Node::GetDefaultIndex() const { in GetDefaultIndex()
84 bool Node::GetResetOnInit() const { in GetResetOnInit()
88 std::vector<std::string> Node::GetValues() const { in GetValues()
DPropertyNode.cc35 : Node(std::move(name), std::move(node_path), std::move(req_sorted), in PropertyNode()
DAndroid.bp54 "Node.cc",
DFileNode.cc37 : Node(std::move(name), std::move(node_path), std::move(req_sorted), in FileNode()
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
Dqueue.c37 typedef struct Node { struct
39 struct Node *next; argument
40 } Node; typedef
43 Node *head;
44 Node *tail;
79 Node *new_node = (Node *) malloc(sizeof(Node)); in push()
101 Node *temp; in pop()
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
Dqueue.c37 typedef struct Node struct
40 struct Node *next; argument
41 } Node; typedef
45 Node *head;
46 Node *tail;
81 Node *new_node = (Node *) malloc(sizeof(Node)); in push()
106 Node *temp; in pop()
/hardware/google/pixel/power-libperfmgr/libperfmgr/include/perfmgr/
DNode.h47 class Node {
49 virtual ~Node() {} in ~Node()
73 Node(std::string name, std::string node_path,
76 Node(const Node& other) = delete;
77 Node& operator=(Node const&) = delete;
DPropertyNode.h30 class PropertyNode : public Node {
41 PropertyNode(const Node& other) = delete;
42 PropertyNode& operator=(Node const&) = delete;
DFileNode.h32 class FileNode : public Node {
45 FileNode(const Node& other) = delete;
46 FileNode& operator=(Node const&) = delete;
DNodeLooperThread.h56 explicit NodeLooperThread(std::vector<std::unique_ptr<Node>> nodes) in NodeLooperThread()
89 std::vector<std::unique_ptr<Node>> nodes_; // parsed from Config
DHintManager.h58 enum class HintActionType { Node, DoHint, EndHint, MaskHint }; enumerator
129 static std::vector<std::unique_ptr<Node>> ParseNodes(
132 const std::string &json_doc, const std::vector<std::unique_ptr<Node>> &nodes);
/hardware/google/pixel/power-libperfmgr/libperfmgr/tests/
DHintManagerTest.cc75 "Node": "CPUCluster1MinFreq",
81 "Node": "ModeProperty",
87 "Node": "CPUCluster0MinFreq",
93 "Node": "ModeProperty",
99 "Node": "CPUCluster1MinFreq",
183 std::vector<std::unique_ptr<Node>> nodes_;
379 std::vector<std::unique_ptr<Node>> nodes = in TEST_F()
413 std::vector<std::unique_ptr<Node>> nodes = in TEST_F()
422 std::vector<std::unique_ptr<Node>> nodes = in TEST_F()
432 std::vector<std::unique_ptr<Node>> nodes = in TEST_F()
[all …]
DNodeLooperThreadTest.cc52 std::vector<std::unique_ptr<Node>> nodes_;
/hardware/google/pixel/power-libperfmgr/libperfmgr/tools/
DConfigVerifier.cc40 std::vector<std::unique_ptr<Node>> nodes = ParseNodes(json_doc); in VerifyNodes()