OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:startSector
(Results
1 - 5
of
5
) sorted by null
/external/gptfdisk/
bsd.h
78
int ReadBSDData(const string & deviceFilename, uint64_t
startSector
, uint64_t endSector);
79
int ReadBSDData(DiskIO *myDisk, uint64_t
startSector
, uint64_t endSector);
bsd.cc
48
int BSDData::ReadBSDData(const string & device, uint64_t
startSector
, uint64_t endSector) {
54
allOK = ReadBSDData(&myDisk,
startSector
, endSector);
68
int BSDData::ReadBSDData(DiskIO *theDisk, uint64_t
startSector
, uint64_t endSector) {
79
labelFirstLBA =
startSector
;
87
allOK = theDisk->Seek(
startSector
);
168
partitions[i].firstLBA += (uint32_t)
startSector
;
174
} // BSDData::ReadBSDData(DiskIO* theDisk, uint64_t
startSector
)
gptcl.cc
66
uint64_t low, high,
startSector
, endSector, sSize;
295
startSector
= IeeeToInt(GetString(newPartInfo, 2), sSize, low, high, low);
296
endSector = IeeeToInt(GetString(newPartInfo, 3), sSize,
startSector
, high, high);
297
if (CreatePartition(newPartNum,
startSector
, endSector)) {
301
<<
startSector
<< " to " << endSector << "\n";
308
startSector
= FindFirstInLargest();
309
Align(&
startSector
);
310
endSector = FindLastInFree(
startSector
);
313
if (CreatePartition(largestPartNum - 1,
startSector
, endSector)) {
317
<<
startSector
<< " to " << endSector << "\n"
[
all
...]
gpt.cc
[
all
...]
gpt.h
146
uint32_t CreatePartition(uint32_t partNum, uint64_t
startSector
, uint64_t endSector);
Completed in 361 milliseconds