Searched refs:fDeviceList (Results 1 - 10 of 10) sorted by relevance

/haiku-fatelf/src/preferences/bluetooth/
H A DRemoteDevicesView.cpp66 fDeviceList = new BListView("DeviceList", B_SINGLE_SELECTION_LIST);
68 fScrollView = new BScrollView("ScrollView", fDeviceList, 0, false, true);
92 fDeviceList->SetSelectionMessage(NULL);
105 fDeviceList->SetTarget(this);
114 fDeviceList->Select(0);
131 printf("kMsgRemoveDevice: %ld\n", fDeviceList->CurrentSelection(0));
132 fDeviceList->RemoveItem(fDeviceList->CurrentSelection(0));
138 fDeviceList->AddItem(device);
139 fDeviceList
[all...]
H A DRemoteDevicesView.h48 BListView* fDeviceList; member in class:RemoteDevicesView
/haiku-fatelf/src/add-ons/kernel/drivers/input/usb_hid/
H A DDeviceList.cpp20 : fDeviceList(NULL),
31 device_list_entry *current = fDeviceList;
57 if (fDeviceList == NULL)
58 fDeviceList = entry;
60 device_list_entry *current = fDeviceList;
83 device_list_entry *current = fDeviceList;
88 fDeviceList = current->next;
112 device_list_entry *current = fDeviceList;
133 device_list_entry *current = fDeviceList;
148 device_list_entry *current = fDeviceList;
[all...]
H A DDeviceList.h30 device_list_entry * fDeviceList; member in class:DeviceList
/haiku-fatelf/src/add-ons/media/media-add-ons/firewire_dv/
H A DFireWireDVAddOn.cpp62 if (!fDeviceList.CountItems()) {
74 return fDeviceList.CountItems();
82 device_info* dev = fDeviceList.ItemAt(n);
95 device_info* dev = fDeviceList.ItemAt(info->internal_id);
160 fDeviceList.AddItem(dev);
178 dev->flavor.internal_id = fDeviceList.CountItems() - 1;
193 while ((dev = fDeviceList.RemoveItemAt(0L))) {
H A DFireWireDVAddOn.h46 BObjectList<device_info> fDeviceList; member in class:FireWireDVAddOn
/haiku-fatelf/src/add-ons/media/media-add-ons/dvb/
H A DDVBMediaAddon.cpp71 if (!fDeviceList.CountItems()) {
82 return fDeviceList.CountItems();
89 device_info *dev = (device_info *)fDeviceList.ItemAt(n);
102 device_info *dev = (device_info *)fDeviceList.ItemAt(info->internal_id);
135 device_info *dev = (device_info *)fDeviceList.ItemAt(index);
141 *outHasMore = fDeviceList.ItemAt(index + 1) ? true : false;
212 fDeviceList.AddItem(dev);
235 dev->flavor.internal_id = fDeviceList.CountItems() - 1;
250 while ((dev = (device_info *)fDeviceList.RemoveItem((int32)0))) {
H A DDVBMediaAddon.h56 BList fDeviceList; member in class:DVBMediaAddon
/haiku-fatelf/src/servers/input/
H A DAddOnManager.cpp301 while (device_info* info = fDeviceList.RemoveItemAt(0)) {
403 for (int32 i = fDeviceList.CountItems(); i-- > 0;) {
404 device_info* info = fDeviceList.ItemAt(i);
407 delete fDeviceList.RemoveItemAt(i);
460 for (int32 i = fDeviceList.CountItems(); i-- > 0;) {
461 device_info* info = fDeviceList.ItemAt(i);
480 if (!fDeviceList.AddItem(info)) {
825 for (int32 i = 0; i < fDeviceList.CountItems(); i++) {
826 device_info* info = fDeviceList.ItemAt(i);
H A DAddOnManager.h117 BObjectList<device_info> fDeviceList; member in class:AddOnManager

Completed in 73 milliseconds