Lines Matching refs:mountTable
47 static struct mnttab *mountTable;
53 * Description : Populate the mountTable Array with mnttab entries
78 mountTable = NULL;
83 mountTable = _z_realloc(mountTable,
86 entp = &mountTable[mountTableSize++];
120 if (strcmp(a_path, mountTable[i].mnt_mountp) == 0) {
121 if (hasmntopt(&mountTable[i], MNTOPT_RO) != NULL) {
191 if (mountTable == NULL) {
196 free(mountTable[i].mnt_mountp);
197 free(mountTable[i].mnt_fstype);
198 free(mountTable[i].mnt_special);
199 free(mountTable[i].mnt_mntopts);
200 assert(mountTable[i].mnt_time == NULL);
203 free(mountTable);
204 mountTable = NULL;
242 mnp = &mountTable[i - 1];