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

  /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
dir-common.h 103 : pathname(p), dir_fd(fdcwd()), offset(0)
107 : pathname(p), dir_fd(fd), offset(offset)
114 dir() const noexcept { return dir_fd; }
121 int dir_fd; // A directory descriptor (either the parent dir, or AT_FDCWD). member in struct:filesystem::_Dir_base::_At_path
122 uint32_t offset; // Offset into pathname for the part relative to dir_fd.
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/filesystem/
dir-common.h 103 : pathname(p), dir_fd(fdcwd()), offset(0)
107 : pathname(p), dir_fd(fd), offset(offset)
114 dir() const noexcept { return dir_fd; }
121 int dir_fd; // A directory descriptor (either the parent dir, or AT_FDCWD). member in struct:filesystem::_Dir_base::_At_path
122 uint32_t offset; // Offset into pathname for the part relative to dir_fd.
  /src/external/public-domain/xz/dist/src/xz/
file_io.h 61 int dir_fd; member in struct:__anon415
  /src/tests/kernel/kqueue/
t_vnode.c 683 int dir_fd, file_fd; local
688 ATF_REQUIRE((dir_fd = open(dir_target, O_RDONLY)) != -1);
694 EV_SET(&event[0], dir_fd, EVFILT_VNODE, EV_ADD,
703 ATF_REQUIRE(event[0].ident == (uintptr_t)dir_fd ||
705 ATF_REQUIRE(event[1].ident == (uintptr_t)dir_fd ||
707 if (event[0].ident == (uintptr_t)dir_fd) {
  /src/bin/csh/
file.c 441 getentry(DIR *dir_fd, int looking_for_lognames)
451 if ((dirp = readdir(dir_fd)) != NULL)
484 DIR *dir_fd; local
499 dir_fd = NULL;
505 dir_fd = opendir(*tilded_dir ? short2str(tilded_dir) : ".");
506 if (dir_fd == NULL)
512 for (numitems = 0; (entry = getentry(dir_fd, looking_for_lognames)) != NULL;) {
543 rewinddir(dir_fd);
550 (void)closedir(dir_fd);

Completed in 22 milliseconds