Searched defs:dir (Results 1 - 8 of 8) sorted by last modified time

/bionic/libc/kernel/common/linux/
H A Dinterrupt.h75 struct proc_dir_entry *dir; member in struct:irqaction
/bionic/libc/kernel/common/linux/netfilter_ipv4/
H A Dip_conntrack_tuple.h84 u_int8_t dir; member in struct:ip_conntrack_tuple::__anon405
/bionic/libc/kernel/common/media/
H A Dmsm_camera.h1062 int dir; member in struct:focus_cfg
1411 int8_t dir; member in struct:msm_actuator_move_params_t
/bionic/libc/stdio/
H A Dtempnam.c45 tempnam(const char *dir, const char *pfx) argument
63 if ((f = (char *)dir)) {
/bionic/libc/tzcode/
H A Dlocaltime.c1807 register int dir; local
1914 dir = (t > 0) ? 1 : -1;
1915 } else dir = tmcomp(&mytm, &yourtm);
1916 if (dir != 0) {
1930 if (dir > 0)
/bionic/libc/unistd/
H A Dopendir.c53 DIR* dir = malloc(sizeof(DIR)); local
55 if (!dir)
58 dir->_DIR_fd = open(dirpath, O_RDONLY|O_DIRECTORY);
59 if (dir->_DIR_fd < 0)
61 free(dir);
62 dir = NULL;
66 dir->_DIR_avail = 0;
67 dir->_DIR_next = NULL;
68 pthread_mutex_init( &dir->_DIR_lock, NULL );
71 return dir;
77 DIR* dir = malloc(sizeof(DIR)); local
92 _readdir_unlocked(DIR* dir) argument
146 readdir(DIR * dir) argument
158 readdir_r(DIR* dir, struct dirent *entry, struct dirent **result) argument
190 closedir(DIR *dir) argument
204 rewinddir(DIR *dir) argument
223 scandir(const char *dir, struct dirent ***namelist, int(*filter)(const struct dirent *), int(*compar)(const struct dirent **, const struct dirent **)) argument
[all...]
H A Dumount.c32 int umount(const char* dir) argument
34 return umount2(dir, 0);
/bionic/libthread_db/
H A Dlibthread_db.c221 DIR * dir; local
226 dir = opendir(path);
227 if (!dir) {
232 while ((entry = readdir(dir)) != NULL) {
243 closedir(dir);

Completed in 69 milliseconds