HomeSort by: relevance | last modified time | path
    Searched defs:ment (Results 1 - 3 of 3) sorted by relevancy

  /src/external/bsd/am-utils/dist/conf/checkmount/
checkmount_default.c 58 mntent_t *ment; local
82 while (!found && (ment = getmntent(mtab))) {
85 if ((colon = strchr(ment->mnt_fsname, ':'))) {
88 STREQ(ment->mnt_dir, path)) &&
89 is_same_host(ment->mnt_fsname, host, hostaddr))
checkmount_svr4.c 54 struct mnttab ment; local
64 while (!found && (err = getmntent(mtab, &ment)) == 0) {
67 if ((colon = strchr(ment.mnt_fsname, ':'))) {
70 STREQ(ment.mnt_dir, path)) &&
71 is_same_host(ment.mnt_fsname, host, hostaddr))
checkmount_ultrix.c 55 struct fs_data ment; local
59 while (!found && (err = getmnt(&start, &ment, sizeof(ment),
63 if (colon = strchr(ment.fd_devname, ':')) {
66 STREQ(ment.fd_path, path)) &&
67 is_same_host(ment.fd_devname, host, hostaddr))

Completed in 18 milliseconds