Home | History | Annotate | Download | only in gptfdisk

Lines Matching refs:found

289    int found = 0;
292 while ((theItem != NULL) && (!found)) {
295 found = 1;
300 if (!found) {
305 cout << "Exact type match not found for type code ";
309 } // if (!found)
316 int found = 0;
319 while ((theItem != NULL) && (!found)) {
320 if (theItem->GUIDType == *this) { // found it!
322 found = 1;
327 if (!found) {
329 } // if (!found)
337 int found = 0;
340 while ((theItem != NULL) && (!found)) {
341 if (theItem->GUIDType == *this) { // found it!
343 found = 1;
348 if (!found) {
350 } // if (!found)
362 int found = 0;
365 while ((theItem != NULL) && (!found)) {
366 if ((theItem->GUIDType == *this) && (theItem->display == 1)) { // found it!
368 found = 1;
373 if (!found) {
375 } // if (!found)
422 int found = 0;
424 while ((thisType != NULL) && (!found)) {
426 found = 1;
430 return found;