Home
last modified time | relevance | path

Searched refs:prefix (Results 1 – 24 of 24) sorted by relevance

/components/finsh/
A Dmsh.c775 void msh_auto_complete(char *prefix) in msh_auto_complete() argument
784 if (*prefix == '\0') in msh_auto_complete()
795 ptr = prefix + rt_strlen(prefix); in msh_auto_complete()
796 while (ptr != prefix) in msh_auto_complete()
810 if (ptr == prefix) in msh_auto_complete()
824 if (strncmp(prefix, cmd_name, strlen(prefix)) == 0) in msh_auto_complete()
887 char *ch = prefix; in msh_get_argc()
950 void msh_opt_auto_complete(char *prefix) in msh_opt_auto_complete() argument
959 opt = msh_get_cmd_opt(prefix); in msh_opt_auto_complete()
961 else if (!msh_get_cmd(prefix, strlen(prefix)) && (' ' == prefix[strlen(prefix) - 1])) in msh_opt_auto_complete()
[all …]
A Dmsh.h17 void msh_auto_complete(char *prefix);
23 void msh_opt_auto_complete(char *prefix);
A Dshell.c388 static void shell_auto_complete(char *prefix) in shell_auto_complete() argument
391 msh_auto_complete(prefix); in shell_auto_complete()
394 msh_opt_auto_complete(prefix); in shell_auto_complete()
397 rt_kprintf("%s%s", FINSH_PROMPT, prefix); in shell_auto_complete()
/components/drivers/core/
A Ddm.c192 const char *prefix; member
197 int rt_dm_dev_set_name_auto(rt_device_t dev, const char *prefix) in rt_dm_dev_set_name_auto() argument
203 RT_ASSERT(prefix != RT_NULL); in rt_dm_dev_set_name_auto()
212 if (pt->prefix == prefix || !rt_strcmp(pt->prefix, prefix)) in rt_dm_dev_set_name_auto()
233 pt->prefix = prefix; in rt_dm_dev_set_name_auto()
242 return rt_dm_dev_set_name(dev, "%s%u", prefix, uid); in rt_dm_dev_set_name_auto()
/components/net/lwip/lwip-2.0.3/src/core/ipv6/
A Dnd6.c509 !ip6_addr_islinklocal(&(prefix_opt->prefix))) { in nd6_input()
511 s8_t prefix; in nd6_input() local
515 ip6_addr_set(&prefix_addr, &(prefix_opt->prefix)); in nd6_input()
518 prefix = nd6_get_onlink_prefix(&prefix_addr, inp); in nd6_input()
519 if (prefix < 0) { in nd6_input()
521 prefix = nd6_new_onlink_prefix(&prefix_addr, inp); in nd6_input()
523 if (prefix >= 0) { in nd6_input()
842 prefix_list[i].prefix.addr[0], prefix_list[i].prefix.addr[1], in nd6_tmr()
1358 ip6_addr_netcmp(ip6addr, &(prefix_list[i].prefix))) { in nd6_is_prefix_in_netif()
1556 if ((ip6_addr_netcmp(&(prefix_list[i].prefix), prefix)) && in nd6_get_onlink_prefix()
[all …]
/components/net/lwip/lwip-2.1.2/src/netif/ppp/
A Dutils.c429 log_packet(p, len, prefix, level)
432 char *prefix;
435 init_pr_log(prefix, level);
497 init_pr_log(prefix, level)
498 const char *prefix;
502 if (prefix != NULL) {
503 ppp_strlcpy(line, prefix, sizeof(line));
/components/net/lwip/lwip-2.0.3/src/netif/ppp/
A Dutils.c431 log_packet(p, len, prefix, level)
434 char *prefix;
437 init_pr_log(prefix, level);
499 init_pr_log(prefix, level)
500 const char *prefix;
504 if (prefix != NULL) {
505 ppp_strlcpy(line, prefix, sizeof(line));
/components/net/lwip/lwip-2.1.2/src/core/ipv6/
A Dnd6.c99 struct prefix_option prefix; member
719 ip6_addr_copy_from_packed(prefix_addr, prefix_opt->prefix); in nd6_input()
727 s8_t prefix; in nd6_input() local
732 prefix = nd6_get_onlink_prefix(&prefix_addr, inp); in nd6_input()
733 if (prefix < 0 && valid_life > 0) { in nd6_input()
735 prefix = nd6_new_onlink_prefix(&prefix_addr, inp); in nd6_input()
737 if (prefix >= 0) { in nd6_input()
738 prefix_list[prefix].invalidation_timer = valid_life; in nd6_input()
1656 ip6_addr_netcmp(ip6addr, &(prefix_list[i].prefix))) { in nd6_is_prefix_in_netif()
1892 if ((ip6_addr_netcmp(&(prefix_list[i].prefix), prefix)) && in nd6_get_onlink_prefix()
[all …]
/components/net/lwip/lwip-2.1.2/src/include/lwip/prot/
A Dnd6.h189 PACK_STRUCT_FLD_S(ip6_addr_p_t prefix);
243 PACK_STRUCT_FLD_S(ip6_addr_p_t prefix);
/components/net/lwip/lwip-2.0.3/src/include/lwip/prot/
A Dnd6.h189 PACK_STRUCT_FLD_S(ip6_addr_p_t prefix);
243 PACK_STRUCT_FLD_S(ip6_addr_p_t prefix);
/components/net/lwip/lwip-2.1.2/src/include/lwip/priv/
A Dnd6_priv.h101 ip6_addr_t prefix; member
/components/net/lwip/lwip-2.0.3/src/include/lwip/priv/
A Dnd6_priv.h101 ip6_addr_t prefix; member
/components/drivers/include/drivers/core/
A Ddm.h59 int rt_dm_dev_set_name_auto(rt_device_t dev, const char *prefix);
/components/net/lwip/lwip-1.4.1/doc/
A Dsnmp_agent.txt150 The prefix
165 for a matching prefix, middle part and index part
/components/drivers/ofw/
A Dbase.c296 rt_bool_t rt_ofw_node_tag_prefix(const struct rt_ofw_node *np, const char *prefix) in rt_ofw_node_tag_prefix() argument
300 if (np && prefix) in rt_ofw_node_tag_prefix()
302 ret = !rt_strncmp(rt_fdt_node_name(np->full_name), prefix, rt_strlen(prefix)); in rt_ofw_node_tag_prefix()
/components/net/lwip/lwip-1.4.1/src/core/snmp/
A Dmib_structs.c44 const s32_t prefix[4] = {1, 3, 6, 1}; variable
1147 prefix_ptr = &prefix[0]; in snmp_iso_prefix_expand()
/components/vbus/
A Dvbus.c610 static rt_err_t _chn0_echo_with(rt_uint8_t prefix, in _chn0_echo_with() argument
620 *resp = prefix; in _chn0_echo_with()
/components/drivers/include/drivers/
A Dofw.h146 rt_bool_t rt_ofw_node_tag_prefix(const struct rt_ofw_node *np, const char *prefix);
/components/net/lwip/lwip-1.4.1/
A DCHANGELOG1539 tcp_in.c, init.c, opt.h: rename backlog options with TCP_ prefix, limit the
2511 * most of files: prefix all debug.h define with "LWIP_" to avoid any conflict with
2919 is to prefix the 14-bit Ethernet headers with two padding bytes.
/components/net/lwip/lwip-2.0.3/
A DCHANGELOG2495 tcp_in.c, init.c, opt.h: rename backlog options with TCP_ prefix, limit the
3467 * most of files: prefix all debug.h define with "LWIP_" to avoid any conflict with
3875 is to prefix the 14-bit Ethernet headers with two padding bytes.
/components/net/lwip/lwip-2.0.3/doc/doxygen/
A Dlwip.Doxyfile1079 # In case all classes in a project start with a common prefix, all classes will
1081 # can be used to specify a prefix (or a list of prefixes) that should be ignored
/components/net/lwip/lwip-2.1.2/doc/doxygen/
A Dlwip.Doxyfile1090 # In case all classes in a project start with a common prefix, all classes will
1092 # can be used to specify a prefix (or a list of prefixes) that should be ignored
A Dlwip.Doxyfile.cmake.in1090 # In case all classes in a project start with a common prefix, all classes will
1092 # can be used to specify a prefix (or a list of prefixes) that should be ignored
/components/net/lwip/lwip-2.1.2/
A DCHANGELOG2748 tcp_in.c, init.c, opt.h: rename backlog options with TCP_ prefix, limit the
3720 * most of files: prefix all debug.h define with "LWIP_" to avoid any conflict with
4128 is to prefix the 14-bit Ethernet headers with two padding bytes.

Completed in 51 milliseconds