Symbol: HIDCollection
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
102
HIDCollection *child = fChildren[i];
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
113
HIDCollection *
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
114
HIDCollection::ChildAtFlat(uint8 type, uint32 index)
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
121
HIDCollection::AddItem(HIDReportItem *item)
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
131
HIDCollection::ItemAt(uint32 index)
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
142
HIDCollection::CountItemsFlat()
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
147
HIDCollection *child = fChildren[i];
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
157
HIDCollection::ItemAtFlat(uint32 index)
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
164
HIDCollection::PrintToStream(uint32 indentLevel)
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
21
HIDCollection::HIDCollection(HIDCollection *parent, uint8 type,
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
210
HIDCollection *child = fChildren[i];
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
217
HIDCollection *
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
218
HIDCollection::_ChildAtFlat(uint8 type, uint32 &index)
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
228
HIDCollection *child = fChildren[i];
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
232
HIDCollection *result = child->_ChildAtFlat(type, index);
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
242
HIDCollection::_ItemAtFlat(uint32 &index)
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
251
HIDCollection *child = fChildren[i];
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
265
HIDCollection::BuildReportList(uint8 reportType,
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
293
HIDCollection *child = fChildren[i];
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
47
HIDCollection::~HIDCollection()
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
55
HIDCollection::UsagePage()
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
64
HIDCollection::UsageID()
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
73
HIDCollection::AddChild(HIDCollection *child)
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
83
HIDCollection *
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
84
HIDCollection::ChildAt(uint32 index)
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.cpp
95
HIDCollection::CountChildrenFlat(uint8 type)
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.h
15
class HIDCollection {
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.h
17
HIDCollection(HIDCollection *parent,
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.h
19
~HIDCollection();
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.h
26
HIDCollection * Parent() { return fParent; };
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.h
28
status_t AddChild(HIDCollection *child);
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.h
30
HIDCollection * ChildAt(uint32 index);
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.h
33
HIDCollection * ChildAtFlat(uint8 type, uint32 index);
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.h
49
HIDCollection * _ChildAtFlat(uint8 type, uint32 &index);
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.h
52
HIDCollection * fParent;
src/add-ons/kernel/drivers/input/hid_shared/HIDCollection.h
58
Vector<HIDCollection *> fChildren;
src/add-ons/kernel/drivers/input/hid_shared/HIDParser.cpp
120
HIDCollection *newCollection
src/add-ons/kernel/drivers/input/hid_shared/HIDParser.cpp
121
= new(std::nothrow) HIDCollection(collection,
src/add-ons/kernel/drivers/input/hid_shared/HIDParser.cpp
56
fRootCollection = new(std::nothrow) HIDCollection(NULL, COLLECTION_LOGICAL,
src/add-ons/kernel/drivers/input/hid_shared/HIDParser.cpp
63
HIDCollection *collection = fRootCollection;
src/add-ons/kernel/drivers/input/hid_shared/HIDParser.h
12
class HIDCollection;
src/add-ons/kernel/drivers/input/hid_shared/HIDParser.h
35
HIDCollection * RootCollection() { return fRootCollection; };
src/add-ons/kernel/drivers/input/hid_shared/HIDParser.h
50
HIDCollection * fRootCollection;
src/add-ons/kernel/drivers/input/hid_shared/HIDReport.cpp
45
HIDCollection *collection)
src/add-ons/kernel/drivers/input/hid_shared/HIDReport.h
21
class HIDCollection;
src/add-ons/kernel/drivers/input/hid_shared/HIDReport.h
40
HIDCollection *collection);
src/add-ons/kernel/drivers/input/hid_shared/JoystickProtocolHandler.cpp
131
HIDCollection &collection, ProtocolHandler *&handlerList)
src/add-ons/kernel/drivers/input/hid_shared/JoystickProtocolHandler.h
17
class HIDCollection;
src/add-ons/kernel/drivers/input/hid_shared/JoystickProtocolHandler.h
27
HIDCollection &collection,
src/add-ons/kernel/drivers/input/hid_shared/KeyboardProtocolHandler.cpp
194
HIDCollection &collection, ProtocolHandler *&handlerList)
src/add-ons/kernel/drivers/input/hid_shared/KeyboardProtocolHandler.h
15
class HIDCollection;
src/add-ons/kernel/drivers/input/hid_shared/KeyboardProtocolHandler.h
30
HIDCollection &collection,
src/add-ons/kernel/drivers/input/hid_shared/MouseProtocolHandler.cpp
69
MouseProtocolHandler::AddHandlers(HIDDevice &device, HIDCollection &collection,
src/add-ons/kernel/drivers/input/hid_shared/MouseProtocolHandler.h
14
class HIDCollection;
src/add-ons/kernel/drivers/input/hid_shared/MouseProtocolHandler.h
30
HIDCollection &collection,
src/add-ons/kernel/drivers/input/hid_shared/ProtocolHandler.cpp
72
HIDCollection *rootCollection = parser.RootCollection();
src/add-ons/kernel/drivers/input/hid_shared/ProtocolHandler.cpp
82
HIDCollection *collection = rootCollection->ChildAtFlat(
src/add-ons/kernel/drivers/input/hid_shared/TabletProtocolHandler.cpp
100
TabletProtocolHandler::AddHandlers(HIDDevice &device, HIDCollection &collection,
src/add-ons/kernel/drivers/input/hid_shared/TabletProtocolHandler.h
16
class HIDCollection;
src/add-ons/kernel/drivers/input/hid_shared/TabletProtocolHandler.h
35
HIDCollection &collection,
src/add-ons/kernel/drivers/input/hyperv_hid/HIDDevice.cpp
309
HIDCollection* rootCollection = fParser.RootCollection();
src/add-ons/kernel/drivers/input/hyperv_hid/HIDDevice.cpp
313
HIDCollection* mouseCollection = NULL;
src/add-ons/kernel/drivers/input/hyperv_hid/HIDDevice.cpp
315
HIDCollection* collection = rootCollection->ChildAtFlat(COLLECTION_APPLICATION, i);