Searched refs:Node (Results 1 – 14 of 14) sorted by relevance
/hardware/google/pixel/power-libperfmgr/libperfmgr/ |
D | Node.cc | 29 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()
|
D | PropertyNode.cc | 35 : Node(std::move(name), std::move(node_path), std::move(req_sorted), in PropertyNode()
|
D | Android.bp | 54 "Node.cc",
|
D | FileNode.cc | 37 : Node(std::move(name), std::move(node_path), std::move(req_sorted), in FileNode()
|
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/ |
D | queue.c | 37 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/ |
D | queue.c | 37 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/ |
D | Node.h | 47 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;
|
D | PropertyNode.h | 30 class PropertyNode : public Node { 41 PropertyNode(const Node& other) = delete; 42 PropertyNode& operator=(Node const&) = delete;
|
D | FileNode.h | 32 class FileNode : public Node { 45 FileNode(const Node& other) = delete; 46 FileNode& operator=(Node const&) = delete;
|
D | NodeLooperThread.h | 56 explicit NodeLooperThread(std::vector<std::unique_ptr<Node>> nodes) in NodeLooperThread() 89 std::vector<std::unique_ptr<Node>> nodes_; // parsed from Config
|
D | HintManager.h | 58 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/ |
D | HintManagerTest.cc | 75 "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 …]
|
D | NodeLooperThreadTest.cc | 52 std::vector<std::unique_ptr<Node>> nodes_;
|
/hardware/google/pixel/power-libperfmgr/libperfmgr/tools/ |
D | ConfigVerifier.cc | 40 std::vector<std::unique_ptr<Node>> nodes = ParseNodes(json_doc); in VerifyNodes()
|