Home
last modified time | relevance | path

Searched refs:entp (Results 1 – 5 of 5) sorted by relevance

/third_party/ltp/testcases/network/nfs/nfs_stress/
Dnfs01_open_files.c99 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/libfuse/util/
Dfusermount.c87 struct mntent *entp = getmntent(stream); in GETMNTENT() local
88 if(entp != NULL) { in GETMNTENT()
89 unescape(entp->mnt_fsname); in GETMNTENT()
90 unescape(entp->mnt_dir); in GETMNTENT()
91 unescape(entp->mnt_type); in GETMNTENT()
92 unescape(entp->mnt_opts); in GETMNTENT()
94 return entp; in GETMNTENT()
185 struct mntent *entp; in may_unmount() local
207 while ((entp = GETMNTENT(fp)) != NULL) { in may_unmount()
208 if (!found && strcmp(entp->mnt_dir, mnt) == 0 && in may_unmount()
[all …]
/third_party/openssl/providers/implementations/rands/
Dcrngt.c109 unsigned char *ent, *entp, *entbuf; in ossl_crngt_get_entropy() local
147 entp = ent = OPENSSL_secure_malloc(bytes_needed); in ossl_crngt_get_entropy()
163 entbuf = t >= CRNGT_BUFSIZ ? entp : buf; in ossl_crngt_get_entropy()
167 memcpy(entp, buf, t); in ossl_crngt_get_entropy()
177 entp += s; in ossl_crngt_get_entropy()
/third_party/ntfs-3g/libfuse-lite/
Dfusermount.c171 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/libfuse/
Dmeson.build169 struct mntent *entp = getmntent(f);
171 if(NULL == entp)
173 if (0 == strcmp(entp->mnt_dir, dir_space_tab))