Home
last modified time | relevance | path

Searched refs:options (Results 1 – 25 of 44) sorted by relevance

12

/components/drivers/ofw/
A Dfdt.c445 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 Dofw.c266 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 Ddhcp.c1444 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 Dlwp_pid.c864 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 Dlwp_pid.h83 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 Ddhcp6.c415 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 Dofw_fdt.h23 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 Dmppe.c109 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 Dmppe.c109 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 Ddhcp.c1393 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 Ddhcp.c1271 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 DFILES2 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 DFILES2 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-format1 # Available style options are described in https://clang.llvm.org/docs/ClangFormatStyleOptions.html
/components/net/lwip/
A D.clang-format1 # Available style options are described in https://clang.llvm.org/docs/ClangFormatStyleOptions.html
/components/dfs/dfs_v2/filesystems/elmfat/
A D.clang-format1 # Available style options are described in https://clang.llvm.org/docs/ClangFormatStyleOptions.html
/components/finsh/
A Dfinsh.h246 void msh_opt_list_dump(void *options);
247 int msh_cmd_opt_id_get(int argc, char *argv[], void *options);
A Dmsh.c984 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 DKconfig33 bool "PCI Lock less in options"
/components/net/lwip/lwip-2.1.2/src/include/lwip/prot/
A Ddhcp.h90 PACK_STRUCT_FLD_8(u8_t options[DHCP_OPTIONS_LEN]);
/components/net/lwip/lwip-2.0.3/src/include/lwip/prot/
A Ddhcp.h92 PACK_STRUCT_FLD_8(u8_t options[DHCP_OPTIONS_LEN]);
/components/net/lwip/lwip-2.1.2/src/include/netif/ppp/
A Dmppe.h170 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 Dmppe.h166 void mppe_init(ppp_pcb *pcb, ppp_mppe_state *state, u8_t options);
/components/net/lwip/lwip-1.4.1/src/include/lwip/
A Ddhcp.h101 PACK_STRUCT_FIELD(u8_t options[DHCP_OPTIONS_LEN]);
/components/net/lwip/lwip-2.0.3/test/fuzz/
A DREADME32 packet will be discarded because of that. The other options can be tuned to

Completed in 36 milliseconds

12