Searched refs:entp (Results 1 – 3 of 3) sorted by relevance
/third_party/ltp/testcases/network/nfs/nfs_stress/ |
D | nfs01_open_files.c | 99 struct dirent *entp; in delete_files() local 103 for (entp = readdir(dirp); entp; entp = readdir(dirp)) in delete_files() 104 if (!strncmp(entp->d_name, "apt", 3)) { in delete_files() 105 if (stat(entp->d_name, &stat_buffer)) in delete_files() 107 entp->d_name, errno); in delete_files() 110 entp->d_name); in delete_files() 111 if (unlink(entp->d_name)) in delete_files() 113 entp->d_name); in delete_files()
|
/third_party/ntfs-3g/libfuse-lite/ |
D | fusermount.c | 171 struct mntent *entp; in count_fuse_fs() local 180 while ((entp = getmntent(fp)) != NULL) { in count_fuse_fs() 181 if (strcmp(entp->mnt_type, "fuse") == 0 || in count_fuse_fs() 182 strncmp(entp->mnt_type, "fuse.", 5) == 0) in count_fuse_fs()
|
/third_party/glib/gio/ |
D | gunixmounts.c | 3135 struct mntent *entp; local 3139 while ((entp = getmntent_r (f, &ent, buf, sizeof (buf))) != NULL) 3143 while ((entp = getmntent (f)) != NULL) 3146 if (stat (entp->mnt_fsname, &statbuf) == 0 && 3149 strncpy (real_dev_root, entp->mnt_fsname, sizeof (real_dev_root) - 1);
|