Home | History | Annotate | Download | only in gptfdisk

Lines Matching defs:GPTPart

2 // C++ Implementation: gptpart
29 #include "gptpart.h"
34 GPTPart::GPTPart(void) {
43 GPTPart::~GPTPart(void) {
47 uint16_t GPTPart::GetHexType(void) const {
49 } // GPTPart::GetHexType()
53 string GPTPart::GetTypeName(void) {
55 } // GPTPart::GetNameType()
60 UnicodeString GPTPart::GetUTypeName(void) {
62 } // GPTPart::GetNameType()
67 uint64_t GPTPart::GetLengthLBA(void) const {
73 } // GPTPart::GetLengthLBA()
77 UnicodeString GPTPart::GetDescription(void) {
79 } // GPTPart::GetDescription()
82 string GPTPart::GetDescription(void) {
135 } // GPTPart::GetDescription(), UTF-8 version
139 int GPTPart::IsUsed(void) {
141 } // GPTPart::IsUsed()
145 int GPTPart::IsSizedForMBR(void) {
154 } // GPTPart::IsSizedForMBR()
159 void GPTPart::SetType(PartType t) {
168 } // GPTPart::SetType()
173 void GPTPart::SetName(const string & theName) {
175 } // GPTPart::SetName()
179 void GPTPart::SetName(const UnicodeString & theName) {
181 cerr << "Bogus UTF-16 name found in GPTPart::SetName()! Name not changed!\n";
186 } // GPTPart::SetName()
194 void GPTPart::SetName(const string & theName) {
261 } // GPTPart::SetName(), UTF-8 version
266 void GPTPart::SetDefaultDescription(void) {
268 } // GPTPart::SetDefaultDescription()
270 GPTPart & GPTPart::operator=(const GPTPart & orig) {
285 bool GPTPart::operator<(const GPTPart &other) const {
290 } // GPTPart::operator<()
293 void GPTPart::ShowSummary(int partNum, uint32_t blockSize) {
361 } // GPTPart::ShowSummary()
365 void GPTPart::ShowDetails(uint32_t blockSize) {
389 } // GPTPart::ShowDetails()
392 void GPTPart::BlankPartition(void) {
399 } // GPTPart::BlankPartition
402 int GPTPart::DoTheyOverlap(const GPTPart & other) {
407 } // GPTPart::DoTheyOverlap()
411 void GPTPart::ReversePartBytes(void) {
419 } // GPTPart::ReverseBytes()
427 void GPTPart::ChangeType(void) {
456 } // GPTPart::ChangeType()