OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GPTData
(Results
1 - 9
of
9
) sorted by null
/external/gptfdisk/
gpt.cc
62
*
GPTData
class and related structures *
67
GPTData
::
GPTData
(void) {
89
} //
GPTData
default constructor
92
GPTData
::
GPTData
(string filename) {
115
} //
GPTData
(string filename) constructor
118
GPTData
::~
GPTData
(void) {
120
} //
GPTData
destructo
[
all
...]
gpttext.h
2
Implementation of
GPTData
class derivative with basic text-mode interaction
28
class GPTDataTextUI : public
GPTData
{
36
// const GPTPart & operator[](uint32_t partNum) {return
GPTData
::operator[](partNum);}
gptcl.h
2
Implementation of
GPTData
class derivative with popt-based command
31
class GPTDataCL : public
GPTData
{
gpt.h
31
*
GPTData
class and related structures *
62
class
GPTData
{
93
GPTData
(void);
94
GPTData
(string deviceFilename);
95
virtual ~
GPTData
(void);
96
GPTData
& operator=(const
GPTData
& orig);
206
}; // class
GPTData
gptcurses.h
2
* Implementation of
GPTData
class derivative with curses-based text-mode
76
class GPTDataCurses : public
GPTData
{
sgdisk.cc
35
GPTData
gptData
;
62
gptData
.JustLooking();
63
if (!
gptData
.LoadPartitions((string) device)) {
68
res << "DISK gpt " <<
gptData
.GetDiskGUID() << endl;
69
numParts =
gptData
.GetNumParts();
71
partData =
gptData
[i];
gpttext.cc
21
GPTData
class */
43
GPTDataTextUI::GPTDataTextUI(void) :
GPTData
() {
46
GPTDataTextUI::GPTDataTextUI(string filename) :
GPTData
(filename) {
67
which =
GPTData
::UseWhichPartitions();
132
numDone =
GPTData
::XFormDisklabel(partNum);
135
} //
GPTData
::XFormDisklabel(void)
236
firstFreePart =
GPTData
::CreatePartition(partNum, firstBlock, lastBlock);
256
GPTData
::DeletePartition(partNum - 1);
344
didIt =
GPTData
::SwapPartitions(partNum1, partNum2);
765
GPTData
secondDevice
[
all
...]
gptcurses.cc
2
* Implementation of
GPTData
class derivative with curses-based text-mode
309
if (!
GPTData
::DeletePartition(partNum))
408
GPTData
::SetAlignment(alignment);
412
// relies on the underlying
GPTData
::Verify() function to report on problems
418
GPTData
::Verify();
758
if (
GPTData
::Verify() > 0)
gptcl.cc
2
Implementation of
GPTData
class derivative with popt-based command
63
GPTData
secondDevice;
Completed in 727 milliseconds