Searched refs:volume (Results 426 - 450 of 471) sorted by relevance

<<111213141516171819

/haiku/src/add-ons/kernel/file_systems/bfs/
H A DVolume.h34 Volume(fs_volume* volume);
H A DVolume.cpp120 Volume::Volume(fs_volume* volume) argument
122 fVolume(volume),
131 mutex_init(&fLock, "bfs volume");
230 FATAL(("Replaying log failed, data may be corrupted, volume "
233 // TODO: if this is the boot volume, Bootscript will assume this
260 INFORM(("bfs: volume doesn't have indices!\n"));
576 // determine log size depending on the size of the volume
H A DCheckVisitor.cpp32 CheckVisitor::CheckVisitor(Volume* volume) argument
34 FileSystemVisitor(volume),
52 // Lock the volume's journal and block allocator
186 // We can't fix errors on this volume
H A Dbfs.h236 status_t InitCheck(Volume* volume) const;
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DVolume.h94 Volume(fs_volume* volume);
H A DVolume.cpp46 // default volume name
124 \brief Represents a volume.
128 Volume::Volume(fs_volume* volume) argument
130 fVolume(volume),
144 rw_lock_init(&fLocker, "ramfs volume");
/haiku/headers/private/storage/
H A DPartition.h67 status_t GetVolume(BVolume* volume) const;
/haiku/src/kits/tracker/
H A DPose.h107 bool UpdateVolumeSpaceBar(BVolume* volume);
H A DContainerWindow.cpp2088 BVolume volume; local
2089 volume.SetTo(model->NodeRef()->device);
2090 if (volume != boot) {
2292 BVolume volume; local
2306 while (volumeRoster.GetNextVolume(&volume) == B_OK) {
2307 if (!volume.IsReadOnly() && volume.IsPersistent())
2363 // add volume this item lives on
2364 if (volume.SetTo(device) == B_OK
2365 && volume
2646 BVolume volume; local
[all...]
H A DFSUtils.h204 _IMPEXP_TRACKER status_t FSGetTrashDir(BDirectory* trashDir, dev_t volume);
/haiku/src/system/kernel/disk_device_manager/
H A DKPartition.cpp81 fPartitionData.volume = -1;
735 if (fPartitionData.volume == volumeID)
738 fPartitionData.volume = volumeID;
754 message.AddInt32("volume", volumeID);
763 return fPartitionData.volume;
1201 // volume
1295 data->volume = VolumeID();
1349 OUT("%s volume: %" B_PRIdDEV "\n", prefix, VolumeID());
/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Demuxki.c379 chan->volume.current = 0x0000; /* no volume */
380 chan->volume.target = 0xffff;
381 chan->volume.envelope.current_state = 0x8000; /* 0 msec delay */
382 chan->volume.envelope.hold_time = 0x7f; /* 0 msec */
383 chan->volume.envelope.attack_time = 0x7f; /* 5.5msec */
384 chan->volume.envelope.sustain_level = 0x7f; /* full */
385 chan->volume.envelope.decay_time = 0x7f; /* 22msec */
583 (chan->volume.envelope.hold_time << 8) |
584 chan->volume
[all...]
H A Demuxki.h172 uint8 hold_time; /* 127-n == n*(volume ? 88.2 :
174 uint8 attack_time; /* 0 = infinite, 1 = (volume ? 11 :
230 emuxki_chanparms_volume volume; member in struct:_emuxki_channel
/haiku/src/apps/diskprobe/
H A DProbeView.cpp1362 BVolume volume; local
1365 directory.GetVolume(&volume);
1367 fEditor.File().GetVolume(&volume);
1369 if (!fEditor.IsAttribute() && volume.InitCheck() == B_OK
1370 && (volume.KnowsMime() || volume.KnowsAttr())) {
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DMSP3430.cpp70 MSP3430_DSP_VOL_MAIN = 0x0000, // loudspeaker volume
71 MSP3430_DSP_VOL_AUX = 0x0006, // headphone volume
72 MSP3430_DSP_AVC = 0x0029, // automatic volume correction
101 MSP3430_DSP_VOL_SCART1 = 0x0007, // SCART1 volume
102 MSP3430_DSP_VOL_SCART2 = 0x0040, // SCART2 volume
106 MSP3430_DSP_BEEPER = 0x0014 // Beeper volume and frequency
405 // set volume between -114 dB and 12 dB with 1 dB step size
422 // enable/disable automatic volume correction
602 // set volume SCART1/2 output channel -114..12 dB
692 void CMSP3430::SetBeeper(int volume, MSP3430_beeper_frequenc
[all...]
/haiku/src/kits/app/
H A DRoster.cpp149 BVolume volume; local
151 && volume.SetTo(ref->device) == B_OK
152 && find_directory(B_TRASH_DIRECTORY, &trashPath, false, &volume)
308 /*! Finds an app by signature on any mounted volume.
332 BVolume volume; local
333 while (volumeRoster.GetNextVolume(&volume) == B_OK) {
334 if (!volume.KnowsQuery())
338 if (fs_stat_index(volume.Device(), "BEOS:APP_SIG", &info) != 0) {
339 // This volume doesn't seem to have the index we're looking for;
346 query.SetVolume(&volume);
[all...]
/haiku/src/kits/media/
H A DSoundPlayer.cpp461 item->volume = withVolume;
488 item->volume = newVolume;
916 TRACE("BSoundPlayer::_GetVolumeSlider couldn't find volume control");
/haiku/src/add-ons/kernel/file_systems/packagefs/package/
H A DPackage.cpp514 Package::Package(::Volume* volume, PackagesDirectory* directory, dev_t deviceID, argument
517 fVolume(volume),
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DExtentAllocator.cpp513 ExtentAllocator::ExtentAllocator(Volume* volume) argument
515 fVolume(volume),
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DVolume.cpp66 Volume::Volume(fs_volume* volume) argument
68 fFSVolume(volume),
76 mutex_init(&fLock, "ext2 volume");
172 FATAL("Volume::Mount(): can't mount R/W, volume not clean\n");
175 FATAL("Volume::Mount(): warning: volume not clean\n");
479 volume is unmounted; therefore we don't use the block cache.
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DDirectory.cpp1508 Directory::Directory(Volume* volume, uint64 blockIndex,
1511 Node(volume, blockIndex, nodeData)
1516 Directory::Directory(Volume* volume, mode_t mode)
1518 Node(volume, mode)
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DShareVolume.h55 virtual void RemoveChildVolume(Volume* volume);
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dvolume.c2 * volume.c - NTFS volume handling code. Originated from the Linux-NTFS project.
63 #include "volume.h"
98 "Windows fully (no hibernation or fast restarting), or mount the volume\n"
111 "Mount is denied because the NTFS volume is already exclusively opened.\n"
112 "The volume may be already mounted, or another software may use it which\n"
127 * ntfs_volume_alloc - Create an NTFS volume object and initialise it
165 * __ntfs_volume_release - Destroy an NTFS volume object
245 * ntfs_mft_load - load the $MFT and setup the ntfs volume with it
246 * @vol: ntfs volume whos
1834 ntfs_mount_error(const char *volume, const char *mntpoint, int err) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/
H A Dkernel_emu.cpp450 // get the volume
451 Volume* volume = FileSystem::GetInstance()->VolumeWithID(nsid); local
452 if (volume == NULL)
457 status_t error = volume->GetVNodeType(data, &type);
/haiku/src/apps/expander/
H A DExpanderWindow.cpp194 BVolume volume; local
231 if (entry.GetVolume(&volume) != B_OK || volume.IsReadOnly()) {

Completed in 216 milliseconds

<<111213141516171819