Lines Matching refs:temp
230 char temp[40];
254 space->origPart->GetDescription().extract(0, 39, temp, 39);
255 printw(temp);
327 char temp[NAME_SIZE + 1];
344 partitions[partNum].GetDescription().extract(0, NAME_SIZE , temp, NAME_SIZE );
345 printw("Partition name: '%s'\n", temp);
354 char temp[NAME_SIZE + 1];
361 partitions[partNum].GetDescription().extract(0, NAME_SIZE , temp, NAME_SIZE );
362 printw("Current partition name is '%s'\n", temp);
368 getnstr(temp, NAME_SIZE );
369 partitions[partNum].SetName((string) temp);
376 char temp[80] = "L\0";
386 getnstr(temp, 79);
387 if ((temp[0] == 'L') || (temp[0] == 'l')) {
390 if (temp[0] == '\0')
392 tempType = temp;
395 } while ((temp[0] == 'L') || (temp[0] == 'l') || (partitions[partNum].GetType() == (GUIDData) "0x0000"));