Symbol: BDiskDeviceList
headers/private/storage/DiskDevice.h
44
friend class BDiskDeviceList;
headers/private/storage/DiskDeviceList.h
21
class BDiskDeviceList : public BHandler {
headers/private/storage/DiskDeviceList.h
23
BDiskDeviceList(bool useOwnLocker = true);
headers/private/storage/DiskDeviceList.h
24
virtual ~BDiskDeviceList();
src/bin/mountvolume.cpp
434
BDiskDeviceList deviceList;
src/kits/storage/disk_device/DiskDeviceList.cpp
107
BDiskDeviceList::SetNextHandler(BHandler *handler)
src/kits/storage/disk_device/DiskDeviceList.cpp
110
AutoLocker<BDiskDeviceList> _(this);
src/kits/storage/disk_device/DiskDeviceList.cpp
133
BDiskDeviceList::Fetch()
src/kits/storage/disk_device/DiskDeviceList.cpp
136
AutoLocker<BDiskDeviceList> _(this);
src/kits/storage/disk_device/DiskDeviceList.cpp
170
BDiskDeviceList::Unset()
src/kits/storage/disk_device/DiskDeviceList.cpp
172
AutoLocker<BDiskDeviceList> _(this);
src/kits/storage/disk_device/DiskDeviceList.cpp
190
BDiskDeviceList::Lock()
src/kits/storage/disk_device/DiskDeviceList.cpp
205
BDiskDeviceList::Unlock()
src/kits/storage/disk_device/DiskDeviceList.cpp
220
BDiskDeviceList::CountDevices() const
src/kits/storage/disk_device/DiskDeviceList.cpp
235
BDiskDeviceList::DeviceAt(int32 index) const
src/kits/storage/disk_device/DiskDeviceList.cpp
25
BDiskDeviceList::BDiskDeviceList(bool useOwnLocker)
src/kits/storage/disk_device/DiskDeviceList.cpp
254
BDiskDeviceList::VisitEachDevice(BDiskDeviceVisitor *visitor)
src/kits/storage/disk_device/DiskDeviceList.cpp
279
BDiskDeviceList::VisitEachPartition(BDiskDeviceVisitor *visitor)
src/kits/storage/disk_device/DiskDeviceList.cpp
305
BDiskDeviceList::VisitEachMountedPartition(BDiskDeviceVisitor *visitor)
src/kits/storage/disk_device/DiskDeviceList.cpp
335
BDiskDeviceList::VisitEachMountablePartition(BDiskDeviceVisitor *visitor)
src/kits/storage/disk_device/DiskDeviceList.cpp
360
BDiskDeviceList::DeviceWithID(int32 id) const
src/kits/storage/disk_device/DiskDeviceList.cpp
363
return const_cast<BDiskDeviceList*>(this)->VisitEachDevice(&visitor);
src/kits/storage/disk_device/DiskDeviceList.cpp
37
BDiskDeviceList::~BDiskDeviceList()
src/kits/storage/disk_device/DiskDeviceList.cpp
376
BDiskDeviceList::PartitionWithID(int32 id) const
src/kits/storage/disk_device/DiskDeviceList.cpp
379
return const_cast<BDiskDeviceList*>(this)->VisitEachPartition(&visitor);
src/kits/storage/disk_device/DiskDeviceList.cpp
390
BDiskDeviceList::MountPointMoved(BPartition *partition)
src/kits/storage/disk_device/DiskDeviceList.cpp
403
BDiskDeviceList::PartitionMounted(BPartition *partition)
src/kits/storage/disk_device/DiskDeviceList.cpp
416
BDiskDeviceList::PartitionUnmounted(BPartition *partition)
src/kits/storage/disk_device/DiskDeviceList.cpp
429
BDiskDeviceList::PartitionInitialized(BPartition *partition)
src/kits/storage/disk_device/DiskDeviceList.cpp
442
BDiskDeviceList::PartitionResized(BPartition *partition)
src/kits/storage/disk_device/DiskDeviceList.cpp
455
BDiskDeviceList::PartitionMoved(BPartition *partition)
src/kits/storage/disk_device/DiskDeviceList.cpp
46
BDiskDeviceList::MessageReceived(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
468
BDiskDeviceList::PartitionCreated(BPartition *partition)
src/kits/storage/disk_device/DiskDeviceList.cpp
48
AutoLocker<BDiskDeviceList> _(this);
src/kits/storage/disk_device/DiskDeviceList.cpp
489
BDiskDeviceList::PartitionDeleted(BPartition *partition,
src/kits/storage/disk_device/DiskDeviceList.cpp
502
BDiskDeviceList::PartitionDefragmented(BPartition *partition)
src/kits/storage/disk_device/DiskDeviceList.cpp
515
BDiskDeviceList::PartitionRepaired(BPartition *partition)
src/kits/storage/disk_device/DiskDeviceList.cpp
532
BDiskDeviceList::PartitionChanged(BPartition *partition, uint32 event)
src/kits/storage/disk_device/DiskDeviceList.cpp
544
BDiskDeviceList::MediaChanged(BDiskDevice *device)
src/kits/storage/disk_device/DiskDeviceList.cpp
556
BDiskDeviceList::DeviceAdded(BDiskDevice *device)
src/kits/storage/disk_device/DiskDeviceList.cpp
571
BDiskDeviceList::DeviceRemoved(BDiskDevice *device)
src/kits/storage/disk_device/DiskDeviceList.cpp
584
BDiskDeviceList::_StartWatching()
src/kits/storage/disk_device/DiskDeviceList.cpp
601
BDiskDeviceList::_StopWatching()
src/kits/storage/disk_device/DiskDeviceList.cpp
614
BDiskDeviceList::_MountPointMoved(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
627
BDiskDeviceList::_PartitionMounted(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
640
BDiskDeviceList::_PartitionUnmounted(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
653
BDiskDeviceList::_PartitionInitialized(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
666
BDiskDeviceList::_PartitionResized(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
679
BDiskDeviceList::_PartitionMoved(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
692
BDiskDeviceList::_PartitionCreated(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
705
BDiskDeviceList::_PartitionDeleted(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
720
BDiskDeviceList::_PartitionDefragmented(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
733
BDiskDeviceList::_PartitionRepaired(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
746
BDiskDeviceList::_MediaChanged(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
757
BDiskDeviceList::_DeviceAdded(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
775
BDiskDeviceList::_DeviceRemoved(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
791
BDiskDeviceList::_FindDevice(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
807
BDiskDeviceList::_FindPartition(BMessage *message)
src/kits/storage/disk_device/DiskDeviceList.cpp
824
BDiskDeviceList::_UpdateDevice(BMessage *message)
src/kits/tracker/MountMenu.cpp
183
BDiskDeviceList devices;
src/servers/mount/AutoMounter.cpp
103
const BDiskDeviceList& fDevices;
src/servers/mount/AutoMounter.cpp
233
MountArchivedVisitor::MountArchivedVisitor(const BDiskDeviceList& devices,
src/servers/mount/AutoMounter.cpp
583
BDiskDeviceList devices;
src/servers/mount/AutoMounter.cpp
84
const BDiskDeviceList& devices,