Home | History | Annotate | Download | only in gptfdisk

Lines Matching refs:theName

171 // Set the name for a partition to theName, using a C++-style string as
173 void GPTPart::SetName(const string & theName) {
174 SetName((UnicodeString) theName.c_str());
177 // Set the name for a partition to theName, using a Unicode string as
179 void GPTPart::SetName(const UnicodeString & theName) {
180 if (theName.isBogus()) {
184 theName.extractBetween(0, NAME_SIZE, (UChar*) name);
190 // Set the name for a partition to theName. Note that theName is a
194 void GPTPart::SetName(const string & theName) {
196 size_t len = theName.length() ;
200 uint8_t cp = theName[ i ++ ] ;
207 // invalid byte, theName is broken
224 // missing continuation byte, theName is broken
227 cp = theName[ i ++ ] ;
229 // invalid continuation byte, theName is broken