| /components/finsh/ |
| A D | msh.c | 775 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 D | msh.h | 17 void msh_auto_complete(char *prefix); 23 void msh_opt_auto_complete(char *prefix);
|
| A D | shell.c | 388 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 D | dm.c | 192 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 D | nd6.c | 509 !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 D | utils.c | 429 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 D | utils.c | 431 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 D | nd6.c | 99 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 D | nd6.h | 189 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 D | nd6.h | 189 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 D | nd6_priv.h | 101 ip6_addr_t prefix; member
|
| /components/net/lwip/lwip-2.0.3/src/include/lwip/priv/ |
| A D | nd6_priv.h | 101 ip6_addr_t prefix; member
|
| /components/drivers/include/drivers/core/ |
| A D | dm.h | 59 int rt_dm_dev_set_name_auto(rt_device_t dev, const char *prefix);
|
| /components/net/lwip/lwip-1.4.1/doc/ |
| A D | snmp_agent.txt | 150 The prefix 165 for a matching prefix, middle part and index part
|
| /components/drivers/ofw/ |
| A D | base.c | 296 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 D | mib_structs.c | 44 const s32_t prefix[4] = {1, 3, 6, 1}; variable 1147 prefix_ptr = &prefix[0]; in snmp_iso_prefix_expand()
|
| /components/vbus/ |
| A D | vbus.c | 610 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 D | ofw.h | 146 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 D | CHANGELOG | 1539 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 D | CHANGELOG | 2495 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 D | lwip.Doxyfile | 1079 # 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 D | lwip.Doxyfile | 1090 # 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 D | lwip.Doxyfile.cmake.in | 1090 # 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 D | CHANGELOG | 2748 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.
|