Home | History | Annotate | Download | only in src

Lines Matching refs:DeviceTree

34 class DeviceTree {
36 explicit DeviceTree(string name);
37 ~DeviceTree();
40 DeviceTree *FindInSubTree(string name);
42 DeviceTree *FindOrAddDevice(string name);
46 DeviceTree *GetParent() { return parent_; }
58 DeviceTree *UnlockedFindInSubTree(string name);
60 std::map<string, DeviceTree*> subdevices_; // Map of sub-devices.
62 DeviceTree *parent_; // Pointer to parent device.
89 std::set<DeviceTree*> causes_; // Devices that can cause this type of error.
160 DeviceTree *system_tree_root_; // System device tree.