Home
last modified time | relevance | path

Searched refs:theSpace (Results 1 – 2 of 2) sorted by relevance

/external/gptfdisk/
Dgptcurses.cc151 void GPTDataCurses::UnlinkSpace(Space *theSpace) { in UnlinkSpace() argument
152 if (theSpace != NULL) { in UnlinkSpace()
153 if (theSpace->prevSpace != NULL) in UnlinkSpace()
154 theSpace->prevSpace->nextSpace = theSpace->nextSpace; in UnlinkSpace()
155 if (theSpace->nextSpace != NULL) in UnlinkSpace()
156 theSpace->nextSpace->prevSpace = theSpace->prevSpace; in UnlinkSpace()
157 if (theSpace == firstSpace) in UnlinkSpace()
158 firstSpace = theSpace->nextSpace; in UnlinkSpace()
159 if (theSpace == lastSpace) in UnlinkSpace()
160 lastSpace = theSpace->prevSpace; in UnlinkSpace()
[all …]
Dgptcurses.h94 void UnlinkSpace(Space *theSpace);
95 void LinkToEnd(Space *theSpace);