Home | History | Annotate | Download | only in ext2fs

Lines Matching defs:partitions

46  * Array of all opened partitions
48 static PARTITION **partitions = NULL;
49 static unsigned short npart = 0; /* Number of mapped partitions */
110 * For partition numbers >5 Linux uses DOS extended partitions -
112 * extended partitions when scanning for a first Linux/ext2fs.
121 return NULL; /* We don't support extended partitions for now */
222 if(!strcmp(partitions[i]->dev, dev))
225 active = partitions[i];
340 newparts = (PARTITION**)realloc(partitions, sizeof(PARTITION) * npart);
345 partitions = newparts;
346 partitions[npart++] = active = part;