Searched refs:volume (Results 351 - 375 of 471) sorted by relevance

<<111213141516171819

/haiku/src/tests/system/kernel/file_corruption/fs/
H A DTransaction.h34 explicit Transaction(Volume* volume);
/haiku/headers/os/storage/
H A DQuery.h63 status_t SetVolume(const BVolume* volume);
/haiku/src/servers/package/
H A DPackageManager.h42 PackageManager(Root* root, Volume* volume);
/haiku/src/kits/midi/
H A DSoftSynth.h49 void SetVolume(double volume);
/haiku/src/system/boot/platform/atari_m68k/
H A Dcpu.cpp135 platform_load_ucode(BootVolume& volume) argument
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DJournal.cpp187 /*! The run_array's size equals the block size of the BFS volume, so we
364 Volume* volume = fJournal->GetVolume(); local
365 block_run run = volume->ToBlockRun(blockNumber);
401 Journal::Journal(Volume* volume) argument
403 fVolume(volume),
405 fLogSize(volume->Log().Length()),
446 within a the volume.
927 also write back all dirty blocks for this volume.
960 blocks for this volume (completing all open transactions).
1139 kprintf("usage: %s <ptr-to-volume>\
1143 Volume* volume = (Volume*)parse_expression(argv[1]); local
1171 Start(Volume* volume, off_t refBlock) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/fat/
H A Ddosfs.h106 fs_volume *volume; // fs_volume passed in to fs_mount member in struct:_nspace
144 recursive_lock vlock; // volume lock
/haiku/headers/os/drivers/
H A Ddisk_device_manager.h33 dev_t volume; // [sys] member in struct:partition_data
/haiku/src/kits/tracker/infowindow/
H A DGeneralInfoView.cpp432 // volume directly - this hack works for volumes that are
711 BVolume volume(fModel->NodeRef()->device);
712 freeBytes = volume.FreeBytes();
713 capacity = volume.Capacity();
718 BVolume volume; local
719 while (volumeRoster.GetNextVolume(&volume) == B_OK) {
720 if (volume.FreeBytes() > 0)
721 freeBytes += volume.FreeBytes();
722 if (volume.Capacity() > 0)
723 capacity += volume
[all...]
/haiku/src/preferences/filetypes/
H A DApplicationTypesWindow.cpp312 BVolume volume; local
313 while (volumeRoster.GetNextVolume(&volume) == B_OK) {
314 if (!volume.KnowsQuery())
322 query.SetVolume(&volume);
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DVirtualVolume.h26 virtual status_t AddChildVolume(Volume* volume);
27 virtual void RemoveChildVolume(Volume* volume);
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DDirectory.cpp218 Directory::Directory(Volume* volume, const struct stat& st) argument
219 : Node(volume, st),
H A DNode.cpp21 Node::Node(Volume* volume, const struct stat& st) argument
23 fVolume(volume),
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DLastModifiedIndex.cpp159 LastModifiedIndex::Init(Volume* volume) argument
161 status_t error = Index::Init(volume, "last_modified", B_INT32_TYPE, true,
H A DSizeIndex.cpp158 SizeIndex::Init(Volume* volume) argument
160 status_t error = Index::Init(volume, "size", B_INT64_TYPE, true,
/haiku/src/tests/add-ons/media/media-add-ons/mixer/
H A Dmain.cpp215 BTextControl* volume = new BTextControl("vol", "Gain:", "1", NULL);
216 outputs->AddChild(volume);
/haiku/src/add-ons/kernel/drivers/audio/ice1712/
H A Dice1712.cpp460 //Set the rampe volume to a faster one
740 uint8 volume = card->settings.playback[i].volume / -1.5; local
742 val = ICE1712_MUTE_VALUE << 0; //Mute left volume
743 val |= volume << 8;
745 val = ICE1712_MUTE_VALUE << 8; //Mute right volume
746 val |= volume << 0;
762 uint8 volume = card->settings.record[i].volume / -1.5; local
764 val = ICE1712_MUTE_VALUE << 0; //Mute left volume
[all...]
/haiku/src/apps/mediaplayer/
H A DController.h58 virtual void VolumeChanged(float volume);
166 void _NotifyVolumeChanged(float volume) const;
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DInodeAllocator.cpp32 InodeAllocator::InodeAllocator(Volume* volume) argument
34 fVolume(volume)
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DSizeIndex.cpp106 SizeIndex::SizeIndex(Volume *volume) argument
107 : Index(volume, "size", B_INT64_TYPE, true, sizeof(off_t)),
H A DLastModifiedIndex.cpp108 LastModifiedIndex::LastModifiedIndex(Volume *volume) argument
109 : Index(volume, "last_modified", B_INT32_TYPE, true, sizeof(time_t)),
H A DNameIndex.cpp101 NameIndex::NameIndex(Volume *volume) argument
102 : Index(volume, "name", B_STRING_TYPE, false),
122 // when the volume is unmounted, there shouldn't be any iterators left
H A DNode.cpp32 Node::Node(Volume *volume, uint8 type) argument
33 : fVolume(volume),
/haiku/src/apps/mail/
H A DMailApp.cpp465 // INDEX_SIGNATURE, INDEX_STATUS on the boot volume
467 BVolume volume; local
468 BVolumeRoster().GetBootVolume(&volume);
470 fs_create_index(volume.Device(), "META:group", B_STRING_TYPE, 0);
471 fs_create_index(volume.Device(), "META:email", B_STRING_TYPE, 0);
472 fs_create_index(volume.Device(), "MAIL:draft", B_INT32_TYPE, 0);
473 fs_create_index(volume.Device(), INDEX_SIGNATURE, B_STRING_TYPE, 0);
474 fs_create_index(volume.Device(), INDEX_STATUS, B_STRING_TYPE, 0);
475 fs_create_index(volume.Device(), B_MAIL_ATTR_FLAGS, B_INT32_TYPE, 0);
/haiku/src/add-ons/disk_systems/bfs/
H A DBFSAddOn.cpp235 BVolume volume(Partition()->VolumeID());
237 volume.GetRootDirectory(&directory);

Completed in 218 milliseconds

<<111213141516171819