Home
last modified time | relevance | path

Searched defs:mode (Results 1 – 25 of 86) sorted by relevance

1234

/components/drivers/pm/
A Dpm.c221 rt_uint8_t mode; in _pm_select_sleep_mode() local
883 int mode; in _rt_pm_device_read() local
1051 int mode = 0; in rt_pm_release_mode() local
1063 int mode = 0; in rt_pm_release_mode_all() local
1075 int mode = 0; in rt_pm_request_mode() local
1088 int mode = 0; in rt_module_release_mode() local
1103 int mode = 0; in rt_module_release_mode_all() local
1118 int mode = 0; in rt_module_request_mode() local
1147 int mode = 0; in rt_pm_run_mode_switch() local
1218 int mode = 0; in pm_sleep_request() local
[all …]
/components/drivers/pci/
A Dhost-bridge.c19 rt_uint8_t mode; member
43 static rt_err_t host_bridge_pm_suspend(const struct rt_device *device, rt_uint8_t mode) in host_bridge_pm_suspend()
55 static void host_bridge_pm_resume(const struct rt_device *device, rt_uint8_t mode) in host_bridge_pm_resume()
/components/libc/posix/io/stdio/
A Dstdio.c53 int rt_posix_stdio_set_console(const char* device_name, int mode) in rt_posix_stdio_set_console()
130 int rt_posix_stdio_set_console(const char* device_name, int mode) in rt_posix_stdio_set_console()
180 int rt_posix_stdio_set_console(const char* device_name, int mode) in rt_posix_stdio_set_console()
/components/drivers/pin/
A Ddev_pin.c51 struct rt_device_pin_mode *mode; in _pin_control() local
104 rt_err_t rt_pin_attach_irq(rt_base_t pin, rt_uint8_t mode, in rt_pin_attach_irq()
146 void rt_pin_mode(rt_base_t pin, rt_uint8_t mode) in rt_pin_mode()
229 rt_base_t mode; in _pin_cmd_mode() local
A Ddev_pin_dm.c38 static void pin_api_mode(struct rt_device *device, rt_base_t pin, rt_uint8_t mode) in pin_api_mode()
71 rt_uint8_t mode, void (*hdr)(void *args), void *args) in pin_api_attach_irq()
179 rt_uint8_t mode) in pin_api_irq_mode()
248 static rt_err_t pin_dm_irq_set_triger_mode(struct rt_pic_irq *pirq, rt_uint32_t mode) in pin_dm_irq_set_triger_mode()
282 static int pin_dm_irq_map(struct rt_pic *pic, int hwirq, rt_uint32_t mode) in pin_dm_irq_map()
A Ddev_pin_ofw.c24 rt_uint8_t mode; in rt_ofw_get_named_pin() local
/components/dfs/dfs_v2/filesystems/procfs/
A Dproc.c200 static struct proc_dentry *proc_create(struct proc_dentry **parent, const char *name, mode_t mode) in proc_create()
301 struct proc_dentry *proc_mkdir_data(const char *name, mode_t mode, struct proc_dentry *parent, in proc_mkdir_data()
331 struct proc_dentry *proc_mkdir_mode(const char *name, mode_t mode, struct proc_dentry *parent) in proc_mkdir_mode()
349 static struct proc_dentry *proc_create_reg(const char *name, mode_t mode, struct proc_dentry **pare… in proc_create_reg()
378 struct proc_dentry *proc_create_data(const char *name, mode_t mode, struct proc_dentry *parent, in proc_create_data()
407 struct proc_dentry *proc_create_single_data(const char *name, mode_t mode, struct proc_dentry *pare… in proc_create_single_data()
A Dproc.h32 rt_uint32_t mode; member
/components/libc/compilers/armlibc/
A Dsyscalls.c62 int mode = O_RDONLY; in _sys_open() local
149 int _sys_read(FILEHANDLE fh, unsigned char *buf, unsigned len, int mode) in _sys_read()
200 int _sys_write(FILEHANDLE fh, const unsigned char *buf, unsigned len, int mode) in _sys_write()
/components/libc/compilers/dlib/
A Dsyscall_open.c26 int __open(const char *filename, int mode) in __open()
/components/net/lwip/lwip-2.1.2/src/include/netif/ppp/polarssl/
A Ddes.h50 int mode; /*!< encrypt/decrypt */ member
/components/net/lwip/lwip-2.0.3/src/include/netif/ppp/polarssl/
A Ddes.h50 int mode; /*!< encrypt/decrypt */ member
/components/drivers/sensor/v2/
A Dsensor_cmd.c700 rt_uint32_t mode; in sensor() local
732 rt_uint32_t mode; in sensor() local
764 rt_uint32_t mode; in sensor() local
/components/drivers/include/drivers/
A Dsensor_v2.h206 #define RT_SENSOR_MODE_GET_ACCURACY(mode) (rt_uint8_t)((mode >> RT_SENSOR_MODE_ACCURACY_BIT_OFF… argument
207 #define RT_SENSOR_MODE_GET_POWER(mode) (rt_uint8_t)((mode >> RT_SENSOR_MODE_POWER_BIT_OFFSET… argument
208 #define RT_SENSOR_MODE_GET_FETCH(mode) (rt_uint8_t)((mode >> RT_SENSOR_MODE_FETCH_BIT_OFFSET… argument
210 #define RT_SENSOR_MODE_CLEAR_ACCURACY(mode) (mode &= ((rt_uint16_t)~((rt_uint16_t)0x0F << RT_SENS… argument
211 #define RT_SENSOR_MODE_CLEAR_POWER(mode) (mode &= ((rt_uint16_t)~((rt_uint16_t)0x0F << RT_SENS… argument
212 #define RT_SENSOR_MODE_CLEAR_FETCH(mode) (mode &= ((rt_uint16_t)~((rt_uint16_t)0x0F << RT_SENS… argument
214 #define RT_SENSOR_MODE_SET_ACCURACY(mode, accuracy_mode) RT_SENSOR_MODE_CLEAR_ACCURACY(mode); (mode… argument
215 #define RT_SENSOR_MODE_SET_POWER(mode, power_mode) RT_SENSOR_MODE_CLEAR_POWER(mode); (mode |=… argument
216 #define RT_SENSOR_MODE_SET_FETCH(mode, fetch_mode) RT_SENSOR_MODE_CLEAR_FETCH(mode); (mode |=… argument
290 rt_uint16_t mode; /* sensor work mode */ member
/components/net/lwip/lwip-2.0.3/src/apps/tftp/
A Dtftp_port.c20 static void* tftp_open(const char* fname, const char* mode, u8_t write) in tftp_open()
/components/net/lwip/lwip-2.1.2/src/apps/tftp/
A Dtftp_port.c20 static void* tftp_open(const char* fname, const char* mode, u8_t write) in tftp_open()
/components/dfs/dfs_v2/filesystems/devfs/
A Ddevfs.c441 mode_t mode = 0; in dfs_devfs_device_to_mode() local
462 static void dfs_devfs_mkdir(const char *fullpath, mode_t mode) in dfs_devfs_mkdir()
523 mode_t mode = dfs_devfs_device_to_mode(device); in dfs_devfs_device_add() local
/components/drivers/hwcrypto/
A Dhw_crc.c24 hwcrypto_crc_mode mode) in rt_hwcrypto_crc_create()
A Dhw_symmetric.h45 …hwcrypto_mode mode; /**< crypto mode. HWCRYPTO_MODE_ENCRYPT or HWCRYPTO_MODE_DECRYPT */ member
/components/drivers/regulator/
A Dregulator.c449 rt_err_t rt_regulator_set_mode(struct rt_regulator *reg, rt_uint32_t mode) in rt_regulator_set_mode()
479 rt_int32_t mode; in rt_regulator_get_mode() local
/components/dfs/dfs_v2/filesystems/ptyfs/
A Dptyfs.c61 rt_uint32_t mode; /* file modes allowed */ member
114 rt_uint32_t mode, rt_device_t device) in ptyfile_init()
492 int type, mode_t mode) in ptyfs_ops_create_vnode()
/components/dfs/dfs_v2/src/
A Ddfs_posix.c52 mode_t mode = 0; in open() local
270 int creat(const char *path, mode_t mode) in creat()
812 int mkdir(const char *path, mode_t mode) in mkdir()
/components/drivers/ipc/
A Dpipe.c361 int mode = 0; in pipe_fops_poll() local
791 int mkfifo(const char *path, mode_t mode) in mkfifo()
/components/drivers/include/drivers/core/
A Ddriver.h46 #define RT_DRIVER_EXPORT(driver, bus_name, mode) \ argument
/components/net/lwip/lwip-2.1.2/test/sockets/
A Dsockets_stresstest.c369 sockets_stresstest_wait_readable(int mode, int s, int timeout_ms) in sockets_stresstest_wait_readable()
475 int mode = sockets_stresstest_rand_mode(0, do_rx); in sockets_stresstest_conn_client() local
521 int mode = sockets_stresstest_rand_mode(1, 1); in sockets_stresstest_conn_server() local

Completed in 42 milliseconds

1234