Searched refs:volume (Results 376 - 400 of 471) sorted by relevance

<<111213141516171819

/haiku/src/bin/
H A Ddf.cpp35 BVolume volume(device);
37 if (volume.GetRootDirectory(&root) == B_OK) {
H A Durlwrapper.cpp499 dev_t volume; local
502 volume = fs_mount_volume(prettyPath.String(), NULL, "nfs4", flags,
504 if (volume < B_OK) {
505 fprintf(stderr, "fs_mount_volume: %s\n", strerror(volume));
/haiku/src/apps/diskusage/
H A DPieView.cpp128 PieView::PieView(BVolume* volume) argument
133 fVolume(volume),
317 // There is a current volume.
350 PieView::_ShowVolume(BVolume* volume) argument
352 if (volume != NULL) {
354 fScanner = new Scanner(volume, this);
454 // NULL represents the entire volume. Show used and free space in
456 // volume's root directory.
467 // Show total volume capacity.
503 // Show the name of the volume o
[all...]
/haiku/src/system/boot/loader/file_systems/tarfs/
H A Dtarfs.cpp832 TarFS::Volume* volume = new(nothrow) TarFS::Volume; local
833 if (volume == NULL)
836 if (volume->Init(partition) < B_OK) {
838 delete volume;
842 *_root = volume->Root();
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DNode.cpp267 Volume* volume = fInode->GetVolume(); local
273 uint32 blockNoFromAddress = BLOCKNO_FROM_ADDRESS(fOffset, volume);
283 blockNoFromAddress = BLOCKNO_FROM_ADDRESS(fOffset, volume);
403 Volume* volume = fInode->GetVolume(); local
416 uint32 dataBlockNumber = BLOCKNO_FROM_ADDRESS(address * 8, volume);
H A DLeafDirectory.cpp238 Volume* volume = fInode->GetVolume(); local
244 uint32 blockNoFromAddress = BLOCKNO_FROM_ADDRESS(fOffset, volume);
253 blockNoFromAddress = BLOCKNO_FROM_ADDRESS(fOffset, volume);
346 Volume* volume = fInode->GetVolume(); local
359 uint32 dataBlockNumber = BLOCKNO_FROM_ADDRESS(address * 8, volume);
/haiku/src/servers/mount/
H A DAutoMounter.cpp341 BVolume volume; local
342 partition->GetVolume(&volume);
344 if (fs_stat_dev(volume.Device(), &fsInfo) == 0) {
478 // volume is mounted on. Find this by using the
611 B_TRANSLATE("Error mounting volume:\n\n%s"), strerror(status));
630 "Note: If an application is currently writing to the volume, "
764 BVolume volume(device);
765 status_t status = volume.InitCheck();
769 status = volume.GetName(name);
776 status = volume
[all...]
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DHTree.cpp51 HTree::HTree(Volume* volume, Inode* directory) argument
57 fBlockSize = volume->BlockSize();
60 ext2_super_block superBlock = volume->SuperBlock();
H A DBitmapBlock.cpp25 BitmapBlock::BitmapBlock(Volume* volume, uint32 numBits) argument
27 CachedBlock(volume),
28 fVolume(volume),
H A DHTree.h114 HTree(Volume* volume, Inode* directory);
H A DDataStream.cpp25 DataStream::DataStream(Volume* volume, ext2_data_stream* stream, argument
28 kBlockSize(volume->BlockSize()),
35 fVolume(volume),
37 fFirstBlock(volume->FirstDataBlock()),
H A DVolume.h28 Volume(fs_volume* volume);
/haiku/src/kits/tracker/
H A DFindPanel.cpp455 // write some useful info to help locate the volume to query
473 BVolume volume(dev);
474 EmbedUniqueVolumeInfo(&message, &volume);
756 // add popup for volume list
1115 // volume changed
1137 // a specific volume selected, unmark "all disks"
1919 // ToDo: add calls to this to rebuild the menu when a volume gets mounted
1928 BVolume volume; local
1930 while (roster.GetNextVolume(&volume) == B_OK) {
1931 if (volume
2001 BVolume volume; local
[all...]
/haiku/headers/private/storage/
H A DDiskDeviceRoster.h119 status_t FindPartitionByVolume(const BVolume& volume,
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DVolumeManager.h91 Volume** volume = NULL);
/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A DSettings.h48 const driver_parameter *volume);
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DVolume.h104 Volume(fs_volume* volume);
/haiku/src/add-ons/kernel/drivers/audio/ice1712/
H A Dice1712.h90 float volume; member in struct:ice1712Volume
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DExtentAllocator.h140 ExtentAllocator(Volume* volume);
/haiku/src/servers/package/
H A DCommitTransactionHandler.h34 CommitTransactionHandler(Volume* volume,
H A DVolume.h218 virtual void VolumeNodeMonitorEventOccurred(Volume* volume)
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackage.h41 Package(::Volume* volume,
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DTransaction.cpp34 Transaction::Transaction(Volume* volume) argument
36 fVolume(volume),
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DAttributeIndex.cpp271 AttributeIndex::Init(Volume* volume, const char* name, uint32 type, argument
274 status_t error = Index::Init(volume, name, type, keyLength > 0, keyLength);
282 // index for each one explicitly. When removing the node, the volume would
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DIndex.cpp20 Index::Index(Volume* volume) argument
22 fVolume(volume),

Completed in 148 milliseconds

<<111213141516171819