TDiskPartitioner
From Ultibo.org
Return to Unit Filesystem
Description
To be documented
Class definitions
[Expand]
TDiskPartitioner = class(TObject)
Function declarations
[Expand]
constructor TDiskPartitioner.Create(ADriver:TFileSysDriver; ARecognizer:TRecognizer);
Description: To be documented
[Expand]
function TDiskPartitioner.CheckLogical(ADevice:TDiskDevice; AParent:TDiskPartition; APartitionId:Byte):Boolean;
Description: Check if the Partition is of a Logical type
[Expand]
function TDiskPartitioner.CheckExtended(ADevice:TDiskDevice; AParent:TDiskPartition; APartitionId:Byte):Boolean;
Description: Check if the Partition is of an Extended type
[Expand]
function TDiskPartitioner.GetLogicalChild(ADevice:TDiskDevice; APartition:TDiskPartition; ALock:Boolean; AState:LongWord):TDiskPartition;
Description: Get the logical Child for an extended partition based on Parent
[Expand]
function TDiskPartitioner.GetExtendedSibling(ADevice:TDiskDevice; AParent:TDiskPartition; ALock:Boolean; AState:LongWord):TDiskPartition;
Description: Get the next Sibling for an extended partition based on Parent
[Expand]
function TDiskPartitioner.GetExtendedParent(ADevice:TDiskDevice; AParent:TDiskPartition; AStart:LongWord; ALock:Boolean; AState:LongWord):TDiskPartition;
Description: Get the actual Parent for an extended partition based on Start sector
[Expand]
function TDiskPartitioner.GetEndCHS(ADevice:TDiskDevice; AStart,ACount:LongWord; var ACylinder,AHead,ASector:Word):Boolean;
Description: Get the End CHS values or dummy values if larger than 8GB
[Expand]
function TDiskPartitioner.GetStartCHS(ADevice:TDiskDevice; AStart,ACount:LongWord; var ACylinder,AHead,ASector:Word):Boolean;
Description: Get the Start CHS values or dummy values if larger than 8GB
[Expand]
function TDiskPartitioner.GetSectorCount(ADevice:TDiskDevice; AStart,ACount:LongWord):LongWord;
Description: Determine the actual sector Count given an actual Start sector and nominal sector Count
[Expand]
function TDiskPartitioner.GetStartSector(ADevice:TDiskDevice; AExtended,ALogical:Boolean; AStart:LongWord; var ACount:LongWord):LongWord;
Description: Determine the actual Start sector given a nominal Start sector
[Expand]
function TDiskPartitioner.GetSectorOffset(ADevice:TDiskDevice; AParent:TDiskPartition; AExtended:Boolean; AStart:LongWord):LongWord;
Description: Determine the actual sector Offset given an actual Start sector
[Expand]
function TDiskPartitioner.GetPartitionId(ADevice:TDiskDevice; AParent:TDiskPartition; AStart,ACount:LongWord; APartitionId:Byte):Byte;
Description: Determine the actual partition Type given a Start, Count and nominal Type
[Expand]
function TDiskPartitioner.InitPartition(ADevice:TDiskDevice; AParent:TDiskPartition; AStart,ACount:LongWord; APartitionId:Byte):Boolean;
Description: Perform any initialization of a new partition such as filling the boot sector etc
[Expand]
function TDiskPartitioner.CreatePartitionRecord(ADevice:TDiskDevice; ARecord:PPartitionRecord):Boolean;
Description: Check for a valid Partition record (or Master Boot Record)
[Expand]
function TDiskPartitioner.CreatePartitionEntry(ADevice:TDiskDevice; AStart,ACount,AOffset:LongWord; APartitionId:Byte; AActive:Boolean; var AEntry:TPartitionEntry):Boolean;
Description: Fill the Partitition entry with the supplied values
[Expand]
function TDiskPartitioner.FillSectors(ADevice:TDiskDevice; APartition:TDiskPartition; ASector,ACount:LongWord; AValue:Byte):Boolean;
Description: Fill specified number of sectors with the supplied value
[Expand]
function TDiskPartitioner.ReadSectors(ADevice:TDiskDevice; APartition:TDiskPartition; ASector,ACount:LongWord; var ABuffer):Boolean;
Description: Read Sectors from the Device or Partition using Cache
[Expand]
function TDiskPartitioner.WriteSectors(ADevice:TDiskDevice; APartition:TDiskPartition; ASector,ACount:LongWord; const ABuffer):Boolean;
Description: Write Sectors to the Device or Partition using Cache
[Expand]
function TDiskPartitioner.AcceptPartition(ADevice:TDiskDevice; APartition,AParent:TDiskPartition; APartitionId:Byte):Boolean;
Description: Check if the Partition can be accepted for Create, Delete, Modify, Activate
[Expand]
function TDiskPartitioner.CreatePartition(ADevice:TDiskDevice; AParent:TDiskPartition; APartitionId:Byte; ACount:LongWord; AActive:Boolean):Boolean;
Description: Create a new Partition on the specified Device with the specified Parent (Optional)
[Expand]
function TDiskPartitioner.DeletePartition(APartition:TDiskPartition):Boolean;
Description: Delete the specified Partition from the specified Device
[Expand]
function TDiskPartitioner.ModifyPartition(APartition:TDiskPartition; APartitionId:Byte; AOverride:Boolean):Boolean;
Description: Modify the type of the specified Partition
[Expand]
function TDiskPartitioner.ActivatePartition(APartition:TDiskPartition; AActive:Boolean):Boolean;
Description: Make the specified Partition active and all siblings inactive
Return to Unit Reference