| /components/drivers/ofw/ |
| A D | fdt.c | 445 while (*options && *options != ',' && *options != ' ') in fdt_scan_initrd() 610 if (*options == '\0' || *options == ' ') in rt_fdt_scan_chosen_stdout() 639 ++options; in rt_fdt_scan_chosen_stdout() 658 if (options) in rt_fdt_scan_chosen_stdout() 688 while (*options && (*options == '=' || *options == ' ')) in rt_fdt_scan_chosen_stdout() 695 type_len = strchrnul(options, ',') - options; in rt_fdt_scan_chosen_stdout() 699 if (options && *options && *options != ' ') in rt_fdt_scan_chosen_stdout() 701 options_len = strchrnul(options, ' ') - options; in rt_fdt_scan_chosen_stdout() 703 rt_strncpy(fdt_earlycon.options, options, options_len); in rt_fdt_scan_chosen_stdout() 750 options = &fdt_earlycon.options[options_len + 1]; in rt_fdt_scan_chosen_stdout() [all …]
|
| A D | ofw.c | 266 char con_name[RT_NAME_MAX], *options = RT_NULL; in rt_ofw_console_setup() local 294 options = (char *)ch; in rt_ofw_console_setup() 340 if (options) in rt_ofw_console_setup() 346 struct serial_configure con_conf = serial_cfg_from_args(options); in rt_ofw_console_setup()
|
| /components/net/lwip/lwip-2.1.2/src/core/ipv4/ |
| A D | dhcp.c | 1444 options[options_out_len++] = option_type; in dhcp_option() 1445 options[options_out_len++] = option_len; in dhcp_option() 1456 options[options_out_len++] = value; in dhcp_option_byte() 1465 options[options_out_len++] = (u8_t) (value & 0x00ffU); in dhcp_option_short() 1518 u8_t *options; in dhcp_parse_reply() local 1563 options = (u8_t *)q->payload; in dhcp_parse_reply() 1566 u8_t op = options[offset]; in dhcp_parse_reply() 1577 len = options[offset + 1]; in dhcp_parse_reply() 1703 options = (u8_t *)q->payload; in dhcp_parse_reply() 1971 options[options_out_len++] = DHCP_OPTION_END; in dhcp_option_trailer() [all …]
|
| /components/lwp/ |
| A D | lwp_pid.c | 864 if (child->terminated && !(options & WNOWAIT)) in _stats_and_reap_child() 882 int options, int *status) in _query_event_from_lwp() argument 977 int options; member 989 rt_ubase_t options; in _waitq_filter() local 994 options = handle->options; in _waitq_filter() 1027 if ((options & WEXITED) && waker_lwp->terminated) in _waitq_filter() 1106 handle.options = options; in _wait_and_reap() 1175 if (!(options & WNOHANG)) in lwp_waitpid() 1178 options |= WEXITED; in lwp_waitpid() 1202 pid_t waitpid(pid_t pid, int *status, int options) in waitpid() argument [all …]
|
| A D | lwp_pid.h | 83 pid_t lwp_waitpid(const pid_t pid, int *status, int options, struct rusage *ru); 85 pid_t waitpid(pid_t pid, int *status, int options);
|
| /components/net/lwip/lwip-2.1.2/src/core/ipv6/ |
| A D | dhcp6.c | 415 dhcp6_option_short(u16_t options_out_len, u8_t *options, u16_t value) in dhcp6_option_short() argument 417 options[options_out_len++] = (u8_t)((value & 0xff00U) >> 8); in dhcp6_option_short() 418 options[options_out_len++] = (u8_t) (value & 0x00ffU); in dhcp6_option_short() 423 dhcp6_option_optionrequest(u16_t options_out_len, u8_t *options, const u16_t *req_options, in dhcp6_option_optionrequest() argument 433 ret = dhcp6_option_short(options_out_len, options, DHCP6_OPTION_ORO); in dhcp6_option_optionrequest() 434 ret = dhcp6_option_short(ret, options, 2 * num_req_options); in dhcp6_option_optionrequest() 436 ret = dhcp6_option_short(ret, options, req_options[i]); in dhcp6_option_optionrequest() 464 u8_t *options = (u8_t *)(msg_out + 1); in dhcp6_information_request() local 467 options_out_len = dhcp6_option_optionrequest(options_out_len, options, requested_options, in dhcp6_information_request()
|
| /components/drivers/include/drivers/ |
| A D | ofw_fdt.h | 23 char options[32]; member 42 rt_err_t (*setup)(struct rt_fdt_earlycon *earlycon, const char *options);
|
| /components/net/lwip/lwip-2.1.2/src/netif/ppp/ |
| A D | mppe.c | 109 mppe_init(ppp_pcb *pcb, ppp_mppe_state *state, u8_t options) in mppe_init() argument 121 if (options & MPPE_OPT_128) in mppe_init() 123 else if (options & MPPE_OPT_40) in mppe_init() 131 if (options & MPPE_OPT_STATEFUL) in mppe_init()
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/ |
| A D | mppe.c | 109 mppe_init(ppp_pcb *pcb, ppp_mppe_state *state, u8_t options) in mppe_init() argument 121 if (options & MPPE_OPT_128) in mppe_init() 123 else if (options & MPPE_OPT_40) in mppe_init() 131 if (options & MPPE_OPT_STATEFUL) in mppe_init()
|
| /components/net/lwip/lwip-2.0.3/src/core/ipv4/ |
| A D | dhcp.c | 1393 dhcp->msg_out->options[dhcp->options_out_len++] = option_type; in dhcp_option() 1394 dhcp->msg_out->options[dhcp->options_out_len++] = option_len; in dhcp_option() 1404 dhcp->msg_out->options[dhcp->options_out_len++] = value; in dhcp_option_byte() 1412 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t) (value & 0x00ffU); in dhcp_option_short() 1462 u8_t *options; in dhcp_parse_reply() local 1501 options = (u8_t*)q->payload; in dhcp_parse_reply() 1504 u8_t op = options[offset]; in dhcp_parse_reply() 1511 len = options[offset + 1]; in dhcp_parse_reply() 1621 options = (u8_t*)q->payload; in dhcp_parse_reply() 1925 dhcp->msg_out->options[dhcp->options_out_len++] = DHCP_OPTION_END; in dhcp_option_trailer() [all …]
|
| /components/net/lwip/lwip-1.4.1/src/core/ |
| A D | dhcp.c | 1271 dhcp->msg_out->options[dhcp->options_out_len++] = option_type; in dhcp_option() 1272 dhcp->msg_out->options[dhcp->options_out_len++] = option_len; in dhcp_option() 1282 dhcp->msg_out->options[dhcp->options_out_len++] = value; in dhcp_option_byte() 1290 dhcp->msg_out->options[dhcp->options_out_len++] = (u8_t) (value & 0x00ffU); in dhcp_option_short() 1339 u8_t *options; in dhcp_parse_reply() local 1378 options = (u8_t*)q->payload; in dhcp_parse_reply() 1381 u8_t op = options[offset]; in dhcp_parse_reply() 1388 len = options[offset + 1]; in dhcp_parse_reply() 1482 options = (u8_t*)q->payload; in dhcp_parse_reply() 1761 dhcp->msg_out->options[dhcp->options_out_len++] = DHCP_OPTION_END; in dhcp_option_trailer() [all …]
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/apps/ |
| A D | FILES | 2 Every application shall provide one api file APP.h and optionally one options file APP_opts.h
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/apps/ |
| A D | FILES | 2 Every application shall provide one api file APP.h and optionally one options file APP_opts.h
|
| /components/dfs/dfs_v1/filesystems/elmfat/ |
| A D | .clang-format | 1 # Available style options are described in https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
| /components/net/lwip/ |
| A D | .clang-format | 1 # Available style options are described in https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
| /components/dfs/dfs_v2/filesystems/elmfat/ |
| A D | .clang-format | 1 # Available style options are described in https://clang.llvm.org/docs/ClangFormatStyleOptions.html
|
| /components/finsh/ |
| A D | finsh.h | 246 void msh_opt_list_dump(void *options); 247 int msh_cmd_opt_id_get(int argc, char *argv[], void *options);
|
| A D | msh.c | 984 int msh_cmd_opt_id_get(int argc, char *argv[], void *options) in msh_cmd_opt_id_get() argument 986 msh_cmd_opt_t *opt = (msh_cmd_opt_t *) options; in msh_cmd_opt_id_get() 1001 void msh_opt_list_dump(void *options) in msh_opt_list_dump() argument 1003 msh_cmd_opt_t *opt = (msh_cmd_opt_t *) options; in msh_opt_list_dump()
|
| /components/drivers/pci/ |
| A D | Kconfig | 33 bool "PCI Lock less in options"
|
| /components/net/lwip/lwip-2.1.2/src/include/lwip/prot/ |
| A D | dhcp.h | 90 PACK_STRUCT_FLD_8(u8_t options[DHCP_OPTIONS_LEN]);
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/prot/ |
| A D | dhcp.h | 92 PACK_STRUCT_FLD_8(u8_t options[DHCP_OPTIONS_LEN]);
|
| /components/net/lwip/lwip-2.1.2/src/include/netif/ppp/ |
| A D | mppe.h | 170 void mppe_init(ppp_pcb *pcb, ppp_mppe_state *state, u8_t options);
|
| /components/net/lwip/lwip-2.0.3/src/include/netif/ppp/ |
| A D | mppe.h | 166 void mppe_init(ppp_pcb *pcb, ppp_mppe_state *state, u8_t options);
|
| /components/net/lwip/lwip-1.4.1/src/include/lwip/ |
| A D | dhcp.h | 101 PACK_STRUCT_FIELD(u8_t options[DHCP_OPTIONS_LEN]);
|
| /components/net/lwip/lwip-2.0.3/test/fuzz/ |
| A D | README | 32 packet will be discarded because of that. The other options can be tuned to
|