Searched refs:volume (Results 301 - 325 of 471) sorted by relevance

<<111213141516171819

/haiku/src/kits/storage/disk_device/
H A DMutablePartition.cpp171 return fData->volume;
179 if (fData->volume != volumeID) {
180 fData->volume = volumeID;
374 child->fData->volume = -1;
570 fData->volume = partitionData->volume;
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DInode.cpp39 Inode::Inode(Volume* volume, ino_t id) argument
41 fVolume(volume),
73 Inode::Inode(Volume* volume) argument
75 fVolume(volume),
217 // you never have write access to a read-only volume
497 Volume* volume = transaction.GetVolume(); local
507 if (get_vnode_removed(volume->FSVolume(), parent->ID(), &removed)
513 HTree htree(volume, parent);
534 Vnode vnode(volume, entryID);
597 status = volume
[all...]
H A DBitmapBlock.h17 BitmapBlock(Volume* volume, uint32 numBits);
/haiku/src/kits/tracker/
H A DNavMenu.cpp420 // if ref is the root item then build list of volume root dirs
445 BVolume volume; local
448 while (volRoster.GetNextVolume(&volume) == B_OK) {
449 if (volume.IsReadOnly() || !volume.IsPersistent())
454 if (FSGetTrashDir(&trashDir, volume.Device()) == B_OK) {
487 BVolume volume; local
488 while (roster.GetNextVolume(&volume) == B_OK) {
491 if (!volume.IsPersistent()
492 || volume
675 BVolume volume; local
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareNode.h50 ShareNode(Volume* volume, vnode_id id,
147 ShareDir(Volume* volume, vnode_id id,
H A DVirtualDir.cpp155 VirtualDir::VirtualDir(Volume* volume, vnode_id nodeID) argument
156 : Node(volume, nodeID),
H A DVirtualDir.h61 VirtualDir(Volume* volume, vnode_id nodeID);
/haiku/src/kits/midi/
H A DMidiSynth.cpp68 BMidiSynth::SetVolume(double volume) argument
70 be_synth->fSynth->SetVolume(volume);
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DNode.h31 Node(Volume* volume, uint64 blockIndex,
33 Node(Volume* volume, mode_t mode);
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DNameIndex.cpp129 // when the volume is unmounted, there shouldn't be any iterators left
135 NameIndex::Init(Volume* volume) argument
137 status_t error = Index::Init(volume, "name", B_STRING_TYPE, false);
H A DIndex.h33 status_t Init(Volume* volume, const char* name,
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DClientVolume.h127 NodeHandleUnlocker(ClientVolume* volume, NodeHandle* nodeHandle) argument
128 : fVolume(volume),
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.h86 Volume** volume);
89 void VolumeUnmounted(Volume* volume);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DFileSystemVisitor.cpp19 FileSystemVisitor::FileSystemVisitor(Volume* volume) argument
21 fVolume(volume),
H A DDebug.h99 const bplustree_header *header = NULL, Volume *volume = NULL);
H A DBlockAllocator.h26 BlockAllocator(Volume* volume);
/haiku/src/system/boot/loader/
H A Dload_driver_settings.cpp87 load_driver_settings(stage2_args* /*args*/, Directory* volume) argument
89 int fd = open_from(volume, "home/config/settings/kernel/drivers", O_RDONLY);
/haiku/src/system/boot/loader/file_systems/fat/
H A DDirectory.cpp303 Directory::Directory(Volume &volume, off_t dirEntryOffset, uint32 cluster, argument
306 fVolume(volume),
307 fStream(volume, cluster, UINT32_MAX, name),
528 Directory::UpdateDirEntry(Volume& volume, off_t dirEntryOffset, argument
534 CachedBlock cachedBlock(volume);
535 off_t block = volume.ToBlock(dirEntryOffset);
542 + dirEntryOffset % volume.BlockSize());
544 entry->SetCluster(firstCluster, volume.FatBits());
/haiku/headers/os/storage/
H A DFindDirectory.h13 /* Per volume directories */
173 status_t find_directory(directory_which which, dev_t volume, bool createIt,
208 bool createIt = false, BVolume* volume = NULL);
/haiku/src/apps/drivesetup/
H A DDiskView.cpp79 BVolume volume; local
80 partition->GetVolume(&volume);
84 fBoot = volume == boot;
85 fReadOnly = volume.IsReadOnly();
86 fShared = volume.IsShared();
91 fUsed = 100.0 / ((float)volume.Capacity()
92 / (volume.Capacity() - volume.FreeBytes()));
/haiku/headers/private/fs_shell/
H A Dfssh_disk_device_manager.h30 fssh_dev_t volume; // [sys] member in struct:fssh_partition_data
/haiku/headers/os/midi/
H A DMidiSynth.h21 void SetVolume(double volume);
/haiku/src/bin/desklink/
H A DVolumeControl.cpp72 if (archive->FindInt32("volume which", &volumeWhich) != B_OK)
105 return into->AddInt32("volume which", fMixerControl->VolumeWhich());
161 us will also cause a volume update.
270 // Even though the volume bar is horizontal, we use the more common
398 float volume = 0.0; local
399 fMixerControl->Connect(fMixerControl->VolumeWhich(), &volume, &errorString);
418 fOriginalValue = (int32)volume;
419 SetValue((int32)volume);
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DVolume.h28 Volume(fs_volume* volume);
/haiku/src/kits/storage/
H A DQuery.cpp186 // Assigns a volume to the BQuery object.
188 BQuery::SetVolume(const BVolume* volume) argument
190 if (volume == NULL)
195 if (volume->InitCheck() == B_OK)
196 fDevice = volume->Device();
290 // Gets the device ID identifying the volume of the BQuery object.

Completed in 183 milliseconds

<<111213141516171819