Searched refs:mountTable (Results 1 - 5 of 5) sorted by relevance

/asus-wl-520gu-7.0.1.45/src/router/busybox/libbb/
H A Dmtab.c17 FILE *mountTable = setmntent(mtab_file, "r"); local
21 if (mountTable == 0
23 && (mountTable = setmntent("/proc/mounts", "r")) == 0) {
28 while ((m = getmntent(mountTable)) != 0) {
37 endmntent(mountTable);
38 if ((mountTable = setmntent(mtab_file, "w"))) {
48 addmntent(mountTable, &entries[i]);
50 endmntent(mountTable);
58 FILE *mountTable = setmntent(mtab_file, "a+"); local
61 if (mountTable
[all...]
H A Dfind_mount_point.c45 FILE *mountTable; local
57 if ((mountTable = setmntent(table, "r")) == 0)
60 while ((mountEntry = getmntent(mountTable)) != 0) {
69 endmntent(mountTable);
/asus-wl-520gu-7.0.1.45/src/router/busybox/
H A Dmtab.c17 FILE *mountTable = setmntent(mtab_file, "r"); local
21 if (mountTable == 0
23 && (mountTable = setmntent("/proc/mounts", "r")) == 0) {
28 while ((m = getmntent(mountTable)) != 0) {
37 endmntent(mountTable);
38 if ((mountTable = setmntent(mtab_file, "w"))) {
48 addmntent(mountTable, &entries[i]);
50 endmntent(mountTable);
58 FILE *mountTable = setmntent(mtab_file, "a+"); local
61 if (mountTable
[all...]
H A Dmount.c319 FILE *mountTable = setmntent(mtab_file, "r");
321 if (mountTable) {
324 while ((m = getmntent(mountTable)) != 0) {
336 endmntent(mountTable);
H A Dutility.c1177 FILE *mountTable; local
1189 if ((mountTable = setmntent(table, "r")) == 0)
1192 while ((mountEntry = getmntent(mountTable)) != 0) {
1201 endmntent(mountTable);

Completed in 45 milliseconds