Lines Matching refs:mounted_max
184 time_t mounted_for, mounted_max = -1; in expire_automounted() local
200 if (mounted_for > mounted_max) in expire_automounted()
201 mounted_max = mounted_for; in expire_automounted()
212 if (mounted_for > mounted_max) in expire_automounted()
213 mounted_max = mounted_for; in expire_automounted()
217 return (mounted_max); in expire_automounted()
269 time_t expiration_time = 600, retry_time = 600, mounted_max, sleep_time; in main_autounmountd() local
336 mounted_max = expire_automounted(expiration_time); in main_autounmountd()
337 if (mounted_max == -1) { in main_autounmountd()
338 sleep_time = mounted_max; in main_autounmountd()
340 } else if (mounted_max < expiration_time) { in main_autounmountd()
341 sleep_time = difftime(expiration_time, mounted_max); in main_autounmountd()