Searched refs:volume (Results 176 - 200 of 471) sorted by relevance

1234567891011>>

/haiku/src/system/boot/loader/
H A DRootFileSystem.cpp133 RootFileSystem::AddVolume(Directory *volume, Partition *partition) argument
139 volume->Acquire();
141 entry->root = volume;
168 RootFileSystem::GetPartitionFor(Directory *volume, Partition **_partition) argument
174 if (entry->root == volume) {
/haiku/src/add-ons/kernel/file_systems/ramfs/
H A DIndexDirectory.cpp16 IndexDirectory::IndexDirectory(Volume *volume) argument
17 : fVolume(volume),
23 fNameIndex = new(nothrow) NameIndex(volume);
24 fLastModifiedIndex = new(nothrow) LastModifiedIndex(volume);
25 fSizeIndex = new(nothrow) SizeIndex(volume);
/haiku/src/add-ons/kernel/file_systems/ufs2/
H A Dkernel_interface.cpp85 Volume* volume = new(std::nothrow) Volume(_volume); local
86 if (volume == NULL)
89 _volume->private_volume = volume;
92 status_t status = volume->Mount(device, flags);
94 ERROR("Failed mounting the volume. Error: %s\n", strerror(status));
95 delete volume;
105 Volume* volume = (Volume *)_volume->private_volume; local
107 status_t status = volume->Unmount();
108 delete volume;
117 Volume* volume local
140 Volume* volume = (Volume*)_volume->private_volume; local
206 Volume* volume = (Volume*)_volume->private_volume; local
388 Volume* volume = (Volume*)_volume->private_volume; local
[all...]
/haiku/src/add-ons/kernel/file_systems/cdda/
H A Dkernel_interface.cpp175 Inode(Volume* volume, Inode* parent,
509 fill_stat_buffer(Volume* volume, Inode* inode, Attribute* attribute, argument
512 stat.st_dev = volume->FSVolume()->id;
747 // determine volume title
884 /*! Opens the file that contains the volume and inode titles as well as all
1163 Inode::Inode(Volume* volume, Inode* parent, const char* name, uint64 start, argument
1170 fID = volume->GetNextNodeID();
1460 // determine volume title
1486 Volume* volume = new(std::nothrow) Volume(fsVolume); local
1487 if (volume
1510 Volume* volume = (Volume*)_volume->private_volume; local
1522 Volume* volume = (Volume*)_volume->private_volume; local
1547 Volume* volume = (Volume*)_volume->private_volume; local
1572 Volume* volume = (Volume*)_volume->private_volume; local
1600 Volume* volume = (Volume*)_volume->private_volume; local
1615 Volume* volume = (Volume*)_volume->private_volume; local
1689 Volume* volume = (Volume*)_volume->private_volume; local
1781 Volume* volume = (Volume*)_volume->private_volume; local
1834 Volume* volume = (Volume*)_volume->private_volume; local
1861 Volume* volume = (Volume*)_volume->private_volume; local
1937 Volume* volume = (Volume*)_volume->private_volume; local
1974 Volume* volume = (Volume*)_volume->private_volume; local
1999 Volume* volume = (Volume*)_volume->private_volume; local
2014 Volume* volume = (Volume*)_volume->private_volume; local
2029 Volume* volume = (Volume*)_volume->private_volume; local
2056 Volume *volume = (Volume*)_volume->private_volume; local
2092 Volume* volume = (Volume*)_volume->private_volume; local
2128 Volume* volume = (Volume*)_volume->private_volume; local
2145 Volume* volume = (Volume*)_volume->private_volume; local
2170 Volume* volume = (Volume*)_volume->private_volume; local
[all...]
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DInode.h34 Inode(Volume* volume, ino_t id);
35 Inode(Volume* volume, Transaction& transaction,
340 NodeGetter(Volume* volume) argument
342 CachedBlock(volume)
373 Vnode(Volume* volume, ino_t id) argument
377 SetTo(volume, id);
380 Vnode(Volume* volume, block_run run) argument
384 SetTo(volume, run);
413 status_t SetTo(Volume* volume, ino_t id) argument
417 return fStatus = get_vnode(volume
420 SetTo(Volume* volume, block_run run) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DRootVolume.cpp127 // TODO: Allow editing the volume name.
184 // get the server volume
229 // create a server volume
239 // add the volume to the volume manager
247 // add the volume to us
262 // get the volume
277 // get the volume
294 Volume* volume = GetChildVolume(name); local
295 if (!volume)
318 ServerVolume* volume = dynamic_cast<ServerVolume*>(node->GetVolume()); local
[all...]
H A DServerQueryIterator.h13 ServerQueryIterator(Volume* volume);
/haiku/src/add-ons/kernel/file_systems/exfat/
H A DInode.h33 Inode(Volume* volume, cluster_t cluster,
35 Inode(Volume* volume, ino_t ino);
95 Inode(Volume* volume);
131 Vnode(Volume* volume, ino_t id) argument
135 SetTo(volume, id);
164 status_t SetTo(Volume* volume, ino_t id) argument
168 return fStatus = get_vnode(volume->FSVolume(), id, (void**)&fInode);
/haiku/src/add-ons/kernel/file_systems/iso9660/
H A Diso9660.h26 // Size of primary volume descriptor for ISO9660
59 // Size of volume date and time data
88 struct iso9660_volume* volume; member in struct:iso9660_inode
115 uint32 volSeqNum; // Volume sequence number of volume
161 // This is the global volume iso9660_volume struct.
164 fs_volume *volume; // volume passed fo fs_mount member in struct:iso9660_volume
181 // JOLIET extension: joliet_level for this volume
184 // All this stuff comes straight from ISO primary volume
196 uint16 volSeqNum[2]; // Ordinal number of volume i
[all...]
/haiku/src/apps/diskprobe/
H A DFileWindow.cpp43 // use the volume name for root directories
44 BVolume volume(stat.st_dev);
45 if (volume.InitCheck() == B_OK) {
47 if (volume.GetName(name) == B_OK)
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DKernelDebug.cpp35 Volume* volume = fs->fVolumes.ElementAt(i); local
36 kprintf(" volume %p: %" B_PRId32 "\n", volume,
37 volume->GetID());
/haiku/src/apps/mail/
H A DMailSupport.cpp126 BVolume volume; local
127 BVolumeRoster().GetBootVolume(&volume);
130 query.SetVolume(&volume);
/haiku/src/servers/registrar/mime/
H A DMimeUpdateThread.cpp167 BVolume volume; local
168 status_t err = volume.SetTo(device);
170 result = volume.KnowsAttr();
/haiku/src/add-ons/kernel/file_systems/udf/
H A DCachedBlock.h26 CachedBlock(Volume *volume);
53 CachedBlock::CachedBlock(Volume *volume) argument
57 fVolume(volume)
H A DIcb.cpp103 Icb::Icb(Volume *volume, long_address address) argument
105 fVolume(volume),
106 fData(volume),
115 TRACE(("Icb::Icb: volume = %p, address(block = %" B_PRIu32 ", partition = "
116 "%d, length = %" B_PRIu32 ")\n", volume, address.block(),
119 if (volume == NULL) {
376 Volume *volume = GetVolume(); local
429 = pos - off_t((pos >> volume->BlockShift()) << volume->BlockShift());
431 size_t readLength = volume
[all...]
H A DMetadataPartition.h27 MetadataPartition(Volume *volume, uint16 partition, Partition &parentPartition,
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DExtent.h22 #define BLOCKNO_FROM_ADDRESS(n, volume) \
23 ((n) >> (volume->BlockLog() + volume->DirBlockLog()))
/haiku/src/system/boot/loader/file_systems/fat/
H A DFile.cpp23 File::File(Volume &volume, off_t dirEntryOffset, uint32 cluster, off_t size, argument
26 fVolume(volume),
27 fStream(volume, cluster, size, name),
/haiku/src/add-ons/index_server/
H A DIndexServerAddOn.cpp39 AnalyserSettings::AnalyserSettings(const BString& name, const BVolume& volume) argument
42 fVolume(volume)
192 FileAnalyser::FileAnalyser(const BString& name, const BVolume& volume) argument
194 fVolume(volume),
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBlockAllocator.h25 BlockAllocator(Volume* volume);
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DDirectory.h14 Directory(Volume* volume,
/haiku/src/apps/diskusage/
H A DSnapshot.h46 VolumeSnapshot(const BVolume* volume);
/haiku/src/tests/system/kernel/file_corruption/fs/
H A DNode.cpp28 Node::Node(Volume* volume, uint64 blockIndex, const checksumfs_node& nodeData) argument
30 fVolume(volume),
41 Node::Node(Volume* volume, mode_t mode) argument
43 fVolume(volume),
/haiku/src/add-ons/kernel/file_systems/packagefs/indices/
H A DLastModifiedIndex.h18 status_t Init(Volume* volume);
H A DSizeIndex.h18 status_t Init(Volume* volume);

Completed in 123 milliseconds

1234567891011>>