Searched refs:open (Results 1 – 25 of 30) sorted by relevance
12
/bionic/libc/unistd/ |
D | getpt.c | 33 return open("/dev/ptmx", O_RDWR|O_NOCTTY); in getpt()
|
D | creat.c | 33 return open(pathname, O_WRONLY|O_TRUNC|O_CREAT, mode); in creat()
|
D | open.c | 34 int open(const char *pathname, int flags, ...) in open() function
|
D | daemon.c | 41 int fd = open("/dev/null", O_RDWR); in daemon()
|
D | opendir.c | 58 dir->_DIR_fd = open(dirpath, O_RDONLY|O_DIRECTORY); in opendir()
|
D | sysconf.c | 291 p->fd = open( path, O_RDONLY ); in line_parser_init()
|
D | syslog.c | 270 (fd = open(_PATH_CONSOLE, O_WRONLY|O_NONBLOCK, 0)) >= 0) { in vsyslog_r()
|
/bionic/libc/include/ |
D | fcntl.h | 46 extern int open(const char* path, int mode, ...);
|
/bionic/libc/stdio/ |
D | fopen.c | 53 if ((f = open(file, oflags, DEFFILEMODE)) < 0) { in fopen()
|
D | freopen.c | 89 f = open(file, oflags, DEFFILEMODE); in freopen() 95 f = open(file, oflags, DEFFILEMODE); in freopen()
|
D | mktemp.c | 149 open(path, O_CREAT|O_EXCL|O_RDWR, 0600)) >= 0) in _gettemp()
|
/bionic/libc/kernel/common/linux/mtd/ |
D | blktrans.h | 50 int (*open)(struct mtd_blktrans_dev *dev); member
|
/bionic/libc/bionic/ |
D | ssp.c | 46 fd = open("/dev/urandom", O_RDONLY); in __guard_setup()
|
D | logd_write.c | 125 fd = TEMP_FAILURE_RETRY(open(log_channels[log_id].path, O_WRONLY)); in __write_to_log_init()
|
D | fts.c | 163 if (!ISSET(FTS_NOCHDIR) && (sp->fts_rfd = open(".", O_RDONLY, 0)) < 0) in fts_open() 288 if ((p->fts_symfd = open(".", O_RDONLY, 0)) < 0) { in fts_read() 378 open(".", O_RDONLY, 0)) < 0) { in fts_read() 517 if ((fd = open(".", O_RDONLY, 0)) < 0) in fts_children() 1023 if (fd < 0 && (newfd = open(path, O_RDONLY, 0)) < 0) in fts_safe_changedir()
|
D | arc4random.c | 116 fd = open("/dev/urandom", O_RDONLY); in arc4_stir()
|
D | malloc_debug_qemu.c | 628 int fd = open("/dev/qemu_trace", O_RDWR); in malloc_debug_initialize()
|
/bionic/libc/kernel/tools/ |
D | utils.py | 176 fp = open(file_path) 238 for line in open(path): 276 f = open( path, "r" ) 295 f = open( path, "w" ) 328 f = open(dst, "r") 364 f = open(dst, "w")
|
D | kernel.py | 115 f = open(path, "rt")
|
/bionic/libc/tools/ |
D | checksyscalls.py | 111 fp = open(header_file)
|
D | bionic_utils.py | 281 fp = open(file_path)
|
D | gensyscalls.py | 46 return open( bionic_temp + relpath, "w" )
|
/bionic/linker/ |
D | linker_format.c | 273 log_fd = open("/dev/log/main", O_WRONLY); in log_vprint()
|
D | linker.c | 610 if ((fd = open(name, O_RDONLY)) >= 0) in _open_lib() 1649 dev_null = open("/dev/null", O_RDWR); in nullify_closed_stdio()
|
/bionic/libc/tzcode/ |
D | localtime.c | 472 if ((fid = open(name, OPEN_MODE)) == -1) { 475 int fidix = open(INDEXFILE, OPEN_MODE); 502 fid = open(DATAFILE, OPEN_MODE);
|
12