Searched refs:DIR (Results 1 - 25 of 65) sorted by relevance

123

/haiku/3rdparty/qtcreator/
H A Dcreate_project_file.sh19 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
24 >$DIR/$NAME.config
25 printf "[General]\n" >$DIR/$NAME.creator
28 echo >$DIR/$NAME.files
29 echo >$DIR/$NAME.includes
33 find $rootdir -type f | sed "s@^@../../@" >>$DIR/$NAME.files
34 find $rootdir -type d | sed "s@^@../../@" >>$DIR/$NAME.includes
36 find headers -type d | sed "s@^@../../@" >>$DIR/$NAME.includes
38 echo "Done. Project file: $DIR/$NAME.creator"
/haiku/headers/posix/
H A Ddirent.h25 typedef struct __DIR DIR; typedef in typeref:struct:__DIR
39 DIR* fdopendir(int fd);
40 DIR* opendir(const char* dirName);
41 struct dirent* readdir(DIR* dir);
42 int readdir_r(DIR* dir, struct dirent* entry,
44 int closedir(DIR* dir);
45 void rewinddir(DIR* dir);
46 void seekdir(DIR* dir, long int position);
47 long int telldir(DIR* dir);
48 int dirfd(DIR* di
[all...]
/haiku/headers/build/host/darwin/
H A Ddirent.h10 DIR* fdopendir(int fd);
/haiku/headers/os/kernel/
H A Dfs_attr.h37 extern DIR *fs_open_attr_dir(const char *path);
38 extern DIR *fs_lopen_attr_dir(const char *path);
39 extern DIR *fs_fopen_attr_dir(int fd);
40 extern int fs_close_attr_dir(DIR *dir);
41 extern struct dirent *fs_read_attr_dir(DIR *dir);
42 extern void fs_rewind_attr_dir(DIR *dir);
H A Dfs_index.h31 extern DIR *fs_open_index_dir(dev_t device);
32 extern int fs_close_index_dir(DIR *indexDirectory);
33 extern struct dirent *fs_read_index_dir(DIR *indexDirectory);
34 extern void fs_rewind_index_dir(DIR *indexDirectory);
H A Dfs_query.h28 extern DIR *fs_open_query(dev_t device, const char *query, uint32 flags);
29 extern DIR *fs_open_live_query(dev_t device, const char *query,
31 extern int fs_close_query(DIR *d);
32 extern struct dirent *fs_read_query(DIR *d);
/haiku/headers/build/os/kernel/
H A Dfs_attr.h38 extern DIR *fs_open_attr_dir(const char *path);
39 extern DIR *fs_lopen_attr_dir(const char *path);
40 extern DIR *fs_fopen_attr_dir(int fd);
41 extern int fs_close_attr_dir(DIR *dir);
42 extern struct dirent *fs_read_attr_dir(DIR *dir);
43 extern void fs_rewind_attr_dir(DIR *dir);
/haiku/headers/private/libroot/
H A Ddirent_private.h15 DIR* __create_dir_struct(int fd);
/haiku/headers/private/shared/
H A DAutoDeleterPosix.h19 typedef CObjectDeleter<DIR, int, closedir> DirCloser;
20 typedef CObjectDeleter<DIR, int, fs_close_attr_dir> AttrDirCloser;
/haiku/src/system/libroot/os/
H A Dfs_query.cpp21 static DIR *
37 // allocate the DIR structure
38 DIR *dir = __create_dir_struct(fd);
48 DIR *
55 DIR *
70 fs_close_query(DIR *dir)
77 fs_read_query(DIR *dir)
H A Dfs_index.c57 DIR *
60 DIR *dir;
68 // allocate the DIR structure
80 fs_close_index_dir(DIR *dir)
87 fs_read_index_dir(DIR *dir)
94 fs_rewind_index_dir(DIR *dir)
H A Dfs_attr.cpp24 static DIR *
27 DIR *dir;
35 // allocate the DIR structure
127 extern "C" DIR*
134 extern "C" DIR*
140 extern "C" DIR*
148 fs_close_attr_dir(DIR* dir)
155 fs_read_attr_dir(DIR* dir)
162 fs_rewind_attr_dir(DIR* dir)
/haiku/src/system/libroot/posix/
H A Ddirent.cpp36 do_seek_dir(DIR* dir)
103 DIR*
106 /* allocate the memory for the DIR structure */
108 DIR* dir = (DIR*)malloc(DIR_BUFFER_SIZE);
126 DIR*
129 DIR* dir;
162 DIR*
165 DIR* dir;
173 // allocate the DIR structur
[all...]
H A Dpwd_query.c81 DIR *grent_query;
82 DIR *pwent_query;
262 DIR *query;
304 DIR *query;
539 DIR *query;
582 DIR *query;
/haiku/src/tests/system/libroot/posix/
H A Dfifo_test.cpp24 DIR* dir = opendir(filename);
H A Ddirent_test.cpp16 DIR* dir = opendir(".");
/haiku/src/add-ons/kernel/file_systems/netfs/server/
H A DFDManager.h37 static status_t OpenDir(const char* path, DIR*& dir);
38 static status_t OpenAttrDir(const char* path, DIR*& dir);
H A DFDManager.cpp180 FDManager::OpenDir(const char* path, DIR*& dir)
201 FDManager::OpenAttrDir(const char* path, DIR*& dir)
/haiku/src/system/boot/loader/
H A Dpackage_support.h68 DIR* dir, PackageVolumeState* state);
76 DIR* fPackagesDir;
/haiku/src/build/libroot/
H A Dfs_attr_haiku.cpp54 extern "C" DIR *
61 extern "C" DIR*
68 extern "C" DIR*
87 _haiku_build_fs_close_attr_dir(DIR *dir)
94 _haiku_build_fs_read_attr_dir(DIR *dir)
101 _haiku_build_fs_rewind_attr_dir(DIR *dir)
275 DIR* dir;
H A Dfs_descriptors.h53 DIR *dir;
56 DirectoryDescriptor(DIR *dir, const NodeRef &ref);
111 AttrDirDescriptor(DIR *dir, const NodeRef &ref);
H A Dfs_attr_untyped.cpp129 typedef map<DIR*, AttributeDirectory*> AttrDirMap;
171 static AttributeDirectory* Get(DIR* dir)
181 // open a fake DIR
234 DIR* FakeDir() const { return fFakeDir; }
311 DIR* fFakeDir;
328 DIR *
344 DIR *
361 fs_close_attr_dir(DIR *dir)
375 fs_read_attr_dir(DIR *dir)
397 fs_rewind_attr_dir(DIR *di
[all...]
H A Dfs_descriptors.cpp160 DirectoryDescriptor::DirectoryDescriptor(DIR *dir, const NodeRef &ref)
177 DIR *oldDir = dir;
195 DIR *dupDir = opendir(path.c_str());
432 AttrDirDescriptor::AttrDirDescriptor(DIR *dir, const NodeRef &ref)
448 DIR *oldDir = dir;
H A Dfs_attr_generic.cpp316 static DIR *
408 DIR *
419 DIR *
443 fs_close_attr_dir(DIR *dir)
450 fs_read_attr_dir(DIR *dir)
470 fs_rewind_attr_dir(DIR *dir)
701 DIR *dir = open_attr_dir(ref, (path ? realPath.c_str() : NULL),
/haiku/src/system/libroot/posix/musl/dirent/
H A Dscandir.c12 DIR *d;

Completed in 270 milliseconds

123