Searched refs:dffd (Results 1 - 2 of 2) sorted by relevance

/freebsd-current/tools/test/stress2/lib/
H A Dresources.c50 static int dffd; variable
185 if ((dffd = open(dfpath, O_RDWR, 0644)) == -1) {
186 if ((dffd = open(dfpath,
197 if (write(dffd, buf, strlen(buf) + 1) !=
201 if (read(dffd, buf, sizeof(buf)) < 1) {
208 close(dffd);
217 if ((dffd = open(dfpath, O_RDWR, 0644)) == -1) {
222 if (read(dffd, buf, sizeof(buf)) < 1) {
239 if (lseek(dffd, 0, 0) == -1)
241 if (write(dffd, bu
[all...]
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_write_disk_posix.c4170 copy_xattrs(struct archive_write_disk *a, int tmpfd, int dffd) argument
4226 f = fsetxattr(dffd, xattr_names + xattr_i, xattr_val, s, 0, 0);
4242 copy_acls(struct archive_write_disk *a, int tmpfd, int dffd) argument
4261 acl_r = acl_set_fd(dffd, dfacl);
4312 int dffd, tmpfd; local
4323 dffd = open(datafork, 0);
4324 if (dffd == -1) {
4332 ret = copy_xattrs(a, tmpfd, dffd);
4335 ret = copy_acls(a, tmpfd, dffd);
4337 close(dffd);
[all...]

Completed in 74 milliseconds