Searched refs:volume (Results 401 - 425 of 471) sorted by relevance

<<111213141516171819

/haiku/src/apps/text_search/
H A DModel.cpp305 directory_which which, BVolume* volume) const
311 status_t status = find_directory(which, &path, true, volume);
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DDirectory.cpp16 Directory::Directory(Volume *volume) argument
17 : Node(volume, NODE_TYPE_DIRECTORY),
H A DDataContainer.cpp45 DataContainer::DataContainer(Volume *volume) argument
46 : fVolume(volume),
H A DAttributeIndexImpl.cpp196 AttributeIndexImpl::AttributeIndexImpl(Volume *volume, const char *name, argument
198 : AttributeIndex(volume, name, type, (keyLength > 0), keyLength),
/haiku/src/kits/tracker/
H A DFilePanelPriv.cpp236 BVolume volume; local
239 volumeRoster.GetBootVolume(&volume);
240 volume.GetRootDirectory(&root);
428 BVolume volume; local
429 volumeRoster.GetBootVolume(&volume);
432 volume.GetRootDirectory(&root);
1108 // clicked on a pose, show file or volume context menu
1803 BVolume volume(device);
1804 if (volume.InitCheck() != B_OK)
1808 && (!volume
[all...]
H A DUtilities.cpp986 EmbedUniqueVolumeInfo(BMessage* message, const BVolume* volume) argument
992 if (volume->GetRootDirectory(&rootDirectory) == B_OK
994 && fs_stat_dev(volume->Device(), &info) == 0) {
996 message->AddInt64("capacity", volume->Capacity());
1005 MatchArchivedVolume(BVolume* volume, const BMessage* message, int32 index) argument
1031 // New style volume identifiers: We have a couple of characteristics,
1032 // and compute a score from them. The volume with the greatest score
1034 // pick the first volume, in case there is more than one with the
1063 // volume name
1080 return volume
[all...]
H A DModel.cpp450 // promote from directory to volume
669 // promote from volume to file system root
685 BVolume volume(NodeRef()->device);
686 if (volume.InitCheck() == B_OK && volume.GetName(name) == B_OK) {
694 PRINT(("get volume name failed for %s\n", fEntryRef.name));
878 // watch mount point for boot volume
1354 PRINT(("volume, name %s\n", fVolumeName ? fVolumeName : ""));
1409 PRINT(("volume\n"));
1465 BVolume volume(NodeRe
[all...]
H A DOpenWithWindow.cpp1114 // if app names match, sort by volume name
1129 // app names and volume names match
1146 // relations, app names and volume names all match
1201 // sort list by name and volume name first to fill out labels
1227 // check if volume name repeats
1228 BVolume volume(model->NodeRef()->device);
1232 if (volume.InitCheck() == B_OK && nextVol.InitCheck() == B_OK
1233 && volume.GetName(volumeName) == B_OK
1255 // name repeats, check if same volume
1257 // different volume, prin
[all...]
H A DUtilities.h93 // Periodically updated poses (ones with a volume space bar) register
394 void EmbedUniqueVolumeInfo(BMessage* message, const BVolume* volume);
395 status_t MatchArchivedVolume(BVolume* volume, const BMessage* message,
H A DPoseView.cpp370 // turn on volume node monitor, metamime monitor, etc.
760 BVolume volume(TargetModel()->NodeRef()->device);
761 if (volume.InitCheck() != B_OK)
765 && (volume.IsReadOnly() || !volume.KnowsAttr())) {
1580 BVolume volume; local
1599 while (roster.GetNextVolume(&volume) == B_OK) {
1600 if (!volume.IsPersistent())
1603 if (volume.IsShared() && !mountShared)
1606 CreateVolumePose(&volume, watchIndividuall
1648 BVolume volume; local
1693 CreateVolumePose(BVolume* volume, bool watchIndividually) argument
1737 BVolume volume; local
8867 BVolume volume; local
[all...]
/haiku/src/apps/packageinstaller/
H A DPackageItem.cpp195 printf("InitPath - volume: %s + %s\n", path, fPath.String());
201 BVolume volume(dev_for_path(path));
202 ret = volume.InitCheck();
205 ret = volume.GetRootDirectory(&temp);
263 BVolume volume(dev_for_path(destination->Path()));
264 if (volume.KnowsAttr()) {
/haiku/src/tests/add-ons/kernel/file_systems/random_file_actions/
H A Drandom_file_actions.cpp488 dev_t volume = fs_mount_volume(mountPoint, image, NULL, 0, NULL); local
489 if (volume < 0)
490 error("mounting failed: %s", strerror(volume));
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DBlockAllocator.cpp46 BlockAllocator::BlockAllocator(Volume* volume) argument
48 fVolume(volume),
49 fTotalBlocks(volume->TotalBlocks()),
H A DFile.cpp63 File::File(Volume* volume, uint64 blockIndex, const checksumfs_node& nodeData) argument
65 Node(volume, blockIndex, nodeData),
72 File::File(Volume* volume, mode_t mode) argument
74 Node(volume, mode),
/haiku/src/add-ons/mail_daemon/inbound_protocols/pop3/
H A DPOP3.cpp503 BVolume volume; local
505 while (volumes.GetNextVolume(&volume) == B_OK) {
509 fido.SetVolume(&volume);
/haiku/src/kits/tracker/infowindow/
H A DHeaderView.cpp597 // volume model, enable/disable the Unmount item
600 BVolume volume; local
601 volume.SetTo(fModel->NodeRef()->device);
602 if (volume == boot)
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DExtentStream.cpp31 ExtentStream::ExtentStream(Volume* volume, Inode* inode, argument
34 fVolume(volume),
37 fFirstBlock(volume->FirstDataBlock()),
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.cpp434 Volume* volume = fTree->fStream->GetVolume(); local
436 Volume* volume = &fTree->fStream->GetVolume();
439 int32 blockOffset = (offset - fileOffset) / volume->BlockSize();
440 fBlockNumber = volume->ToBlock(run) + blockOffset;
445 block = (uint8*)block_cache_get_writable(volume->BlockCache(),
449 block = (uint8*)block_cache_get(volume->BlockCache(), fBlockNumber);
454 fBlock = (uint8*)malloc(volume->BlockSize());
459 if (read_pos(volume->Device(), fBlockNumber << volume->BlockShift(),
460 fBlock, volume
[all...]
/haiku/src/preferences/virtualmemory/
H A DSettingsWindow.cpp74 VolumeMenuItem::VolumeMenuItem(BVolume volume, BMessage* message) argument
77 fVolume(volume)
157 B_TRANSLATE("The volume specified in the settings file "
158 "could not be found. You can use the boot volume or quit."),
159 B_TRANSLATE("Use boot volume"), B_TRANSLATE("Quit")))->Go();
179 BPopUpMenu* menu = new BPopUpMenu("volume menu");
180 fVolumeMenuField = new BMenuField("volume menu field",
181 B_TRANSLATE("Use volume:"), menu);
238 // Validate the volume specified in settings file
243 B_TRANSLATE("The swap volume specifie
[all...]
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DVolume.cpp83 Volume::Volume(fs_volume* volume) argument
85 fFSVolume(volume),
90 mutex_init(&fLock, "btrfs volume");
314 // generate a more or less descriptive volume name
/haiku/src/bin/desklink/
H A DMediaReplicant.cpp155 // don't beep on volume change
157 // which volume parameter to act on (Mixer/Phys.Output)
634 float volume = 0.0;
635 fMixerControl->Connect(fVolumeWhich, &volume, &errorString);
/haiku/src/system/boot/loader/file_systems/fat/
H A DStream.cpp33 Stream::Stream(Volume &volume, uint32 chain, off_t size, const char *name) argument
35 fVolume(volume),
/haiku/src/apps/people/
H A DPersonWindow.cpp263 BVolume volume(device);
266 &volume);
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DVolume.h27 // TODO: Add the parent node ID and maybe get rid of parent volume.
44 virtual void RemoveChildVolume(Volume* volume) = 0;
/haiku/src/add-ons/kernel/file_systems/udf/
H A DIcb.h82 Icb(Volume *volume, long_address address);

Completed in 319 milliseconds

<<111213141516171819