Home | History | Annotate | Download | only in ext2fs

Lines Matching defs:partitions

42  * Array of all opened partitions
44 static PARTITION **partitions = NULL;
45 static unsigned short npart = 0; /* Number of mapped partitions */
105 * For partition numbers >5 Linux uses DOS extended partitions -
107 * extended partitions when scanning for a first Linux/ext2fs.
116 return NULL; /* We don't support extended partitions for now */
217 if(!strcmp(partitions[i]->dev, dev))
220 active = partitions[i];
335 newparts = (PARTITION**)realloc(partitions, sizeof(PARTITION) * npart);
340 partitions = newparts;
341 partitions[npart++] = active = part;