| /components/net/lwip/lwip-2.0.3/src/apps/tftp/ |
| A D | tftp_port.c | 28 fd = open(fname, O_WRONLY | O_CREAT, 0); in tftp_open() 32 fd = open(fname, O_RDONLY, 0); in tftp_open() 55 ctx.open = tftp_open; in tftp_server()
|
| /components/net/lwip/lwip-2.1.2/src/apps/tftp/ |
| A D | tftp_port.c | 28 fd = open(fname, O_WRONLY | O_CREAT, 0); in tftp_open() 32 fd = open(fname, O_RDONLY, 0); in tftp_open() 55 ctx.open = tftp_open; in tftp_server()
|
| /components/utilities/ulog/backend/ |
| A D | file_be.c | 49 if ((file_fd = open(new_path, O_RDONLY)) >= 0) in ulog_file_rotate() 55 if ((file_fd = open(old_path , O_RDONLY)) >= 0) in ulog_file_rotate() 72 be->cur_log_file_fd = open(be->cur_log_file_path, O_CREAT | O_RDWR | O_APPEND); in ulog_file_rotate() 95 be->cur_log_file_fd = open(be->cur_log_file_path, O_CREAT | O_RDWR | O_APPEND); in ulog_file_backend_flush_with_buf()
|
| /components/drivers/misc/ |
| A D | rt_inputcapture.c | 48 if (inputcapture->ops->open) in rt_inputcapture_open() 50 ret = inputcapture->ops->open(inputcapture); in rt_inputcapture_open() 159 device->open = rt_inputcapture_open; in rt_device_inputcapture_register()
|
| A D | rt_random.c | 86 random_dev.open = RT_NULL; in random_device_init() 177 urandom_dev.open = RT_NULL; in urandom_device_init()
|
| A D | rt_null.c | 57 null_dev.open = RT_NULL; in null_device_init()
|
| A D | rt_zero.c | 58 zero_dev.open = RT_NULL; in zero_device_init()
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/apps/ |
| A D | tftp_server.h | 63 void* (*open)(const char* fname, const char* mode, u8_t write); member
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/apps/ |
| A D | tftp_server.h | 63 void* (*open)(const char* fname, const char* mode, u8_t write); member
|
| /components/libc/compilers/dlib/ |
| A D | syscall_open.c | 73 handle = open(filename, open_mode, 0); in __open()
|
| /components/libc/compilers/common/extension/fcntl/msvc/ |
| A D | fcntl.h | 66 int open(const char *file, int flags, ...);
|
| /components/drivers/include/drivers/ |
| A D | rt_inputcapture.h | 45 rt_err_t (*open)(struct rt_inputcapture_device *inputcapture); member
|
| /components/libc/compilers/common/extension/fcntl/octal/ |
| A D | fcntl.h | 71 int open(const char *file, int flags, ...);
|
| /components/drivers/spi/ |
| A D | dev_spi.c | 76 device->open = RT_NULL; in rt_spi_bus_device_init() 156 device->open = RT_NULL; in rt_spidev_device_init()
|
| /components/drivers/ipc/ |
| A D | pipe.c | 405 .open = pipe_fops_open, 654 dev->open = rt_pipe_open; in rt_pipe_create() 762 fildes[1] = open(dev_name, O_WRONLY, 0); in pipe() 769 fildes[0] = open(dev_name, O_RDONLY, 0); in pipe()
|
| /components/dfs/dfs_v1/src/ |
| A D | dfs_posix.c | 45 int open(const char *file, int flags, ...) in open() function 73 RTM_EXPORT(open); 128 fd = open(fullpath, flag, 0); in openat() 149 return open(path, O_WRONLY | O_CREAT | O_TRUNC, mode); in creat()
|
| /components/dfs/dfs_v2/filesystems/devfs/ |
| A D | devfs.c | 60 if (device->fops && device->fops->open) in dfs_devfs_open() 62 ret = device->fops->open(file); in dfs_devfs_open() 418 .open = dfs_devfs_open, 527 fd = open(path, O_RDWR | O_CREAT, mode); in dfs_devfs_device_add()
|
| /components/finsh/ |
| A D | msh_file.c | 96 fd = open(pg_name, O_RDONLY, 0); in msh_exec_script() 102 fd = open(pg_name, O_RDONLY, 0); in msh_exec_script() 256 fd = open(argv[2], O_DIRECTORY, 0); in cmd_mv() 282 fd = open(argv[2], O_RDONLY, 0); in cmd_mv() 721 fd = open(argv[2], O_RDWR | O_APPEND | O_CREAT, 0); in cmd_echo() 780 fd = open(file_name, O_RDONLY); in cmd_tail()
|
| A D | msh.c | 281 fd = open(pg_name, O_RDONLY, 0); in msh_exec_module() 287 fd = open(pg_name, O_RDONLY, 0); in msh_exec_module() 296 fd = open(pg_name, O_RDONLY, 0); in msh_exec_module() 302 fd = open(pg_name, O_RDONLY, 0); in msh_exec_module() 360 fd = open(path, O_RDONLY, 0); in _msh_lwp_cmd_exists()
|
| /components/dfs/dfs_v2/filesystems/procfs/ |
| A D | proc_cpuinfo.c | 73 .open = proc_open,
|
| /components/net/lwip/lwip-2.0.3/src/include/netif/ppp/ |
| A D | pppos.h | 83 unsigned int open :1; /* Set if PPPoS is open */ member
|
| /components/net/lwip/lwip-2.1.2/src/include/netif/ppp/ |
| A D | pppos.h | 87 unsigned int open :1; /* Set if PPPoS is open */ member
|
| /components/lwp/terminal/ |
| A D | bsd_ttydisc.h | 64 void ttydisc_modem(struct lwp_tty *tp, int open);
|
| /components/drivers/include/drivers/core/ |
| A D | driver.h | 29 rt_err_t (*open) (rt_device_t dev, rt_uint16_t oflag); member
|
| /components/legacy/fdt/src/ |
| A D | dtb_load.c | 30 fd = open(dtb_filename, O_RDONLY, 0); in dtb_node_load_from_fs()
|