| /components/net/lwip/lwip-2.1.2/doc/doxygen/ |
| A D | lwip.Doxyfile | 2166 # The TAGFILES tag can be used to specify one or more tag files. For each tag 2264 # This tag requires that the tag HAVE_DOT is set to YES. 2274 # This tag requires that the tag HAVE_DOT is set to YES. 2281 # This tag requires that the tag HAVE_DOT is set to YES. 2288 # This tag requires that the tag HAVE_DOT is set to YES. 2296 # This tag requires that the tag HAVE_DOT is set to YES. 2305 # This tag requires that the tag HAVE_DOT is set to YES. 2312 # This tag requires that the tag HAVE_DOT is set to YES. 2320 # This tag requires that the tag HAVE_DOT is set to YES. 2333 # This tag requires that the tag HAVE_DOT is set to YES. [all …]
|
| A D | lwip.Doxyfile.cmake.in | 2166 # The TAGFILES tag can be used to specify one or more tag files. For each tag 2264 # This tag requires that the tag HAVE_DOT is set to YES. 2274 # This tag requires that the tag HAVE_DOT is set to YES. 2281 # This tag requires that the tag HAVE_DOT is set to YES. 2288 # This tag requires that the tag HAVE_DOT is set to YES. 2296 # This tag requires that the tag HAVE_DOT is set to YES. 2305 # This tag requires that the tag HAVE_DOT is set to YES. 2312 # This tag requires that the tag HAVE_DOT is set to YES. 2320 # This tag requires that the tag HAVE_DOT is set to YES. 2333 # This tag requires that the tag HAVE_DOT is set to YES. [all …]
|
| /components/net/lwip/lwip-2.0.3/doc/doxygen/ |
| A D | lwip.Doxyfile | 2143 # The TAGFILES tag can be used to specify one or more tag files. For each tag 2241 # This tag requires that the tag HAVE_DOT is set to YES. 2251 # This tag requires that the tag HAVE_DOT is set to YES. 2258 # This tag requires that the tag HAVE_DOT is set to YES. 2265 # This tag requires that the tag HAVE_DOT is set to YES. 2273 # This tag requires that the tag HAVE_DOT is set to YES. 2282 # This tag requires that the tag HAVE_DOT is set to YES. 2289 # This tag requires that the tag HAVE_DOT is set to YES. 2297 # This tag requires that the tag HAVE_DOT is set to YES. 2310 # This tag requires that the tag HAVE_DOT is set to YES. [all …]
|
| /components/utilities/ulog/ |
| A D | ulog.c | 259 RT_ASSERT(tag); in ulog_head_formater() 582 log_frame->tag = tag; 651 RT_ASSERT(tag); 678 else if (!rt_strstr(tag, ulog.filter.tag)) 922 if (!rt_strncmp(tag_lvl->tag, tag, ULOG_FILTER_TAG_MAX_LEN)) 955 rt_memset(tag_lvl->tag, 0 , sizeof(tag_lvl->tag)); 956 rt_strncpy(tag_lvl->tag, tag, ULOG_FILTER_TAG_MAX_LEN); 995 if (!rt_strncmp(tag_lvl->tag, tag, ULOG_FILTER_TAG_MAX_LEN)) 1050 RT_ASSERT(tag); 1052 rt_strncpy(ulog.filter.tag, tag, ULOG_FILTER_TAG_MAX_LEN); [all …]
|
| A D | ulog.h | 62 int ulog_tag_lvl_filter_set(const char *tag, rt_uint32_t level); 63 rt_uint32_t ulog_tag_lvl_filter_get(const char *tag); 67 void ulog_global_filter_tag_set(const char *tag); 90 void ulog_hexdump(const char *tag, rt_size_t width, const rt_uint8_t *buf, rt_size_t size, ...); 95 void ulog_voutput(rt_uint32_t level, const char *tag, rt_bool_t newline, const rt_uint8_t *hex_buf, 97 void ulog_output(rt_uint32_t level, const char *tag, rt_bool_t newline, const char *format, ...);
|
| A D | ulog_def.h | 178 char tag[ULOG_FILTER_TAG_MAX_LEN + 1]; member 192 const char *tag; member 202 …void (*output)(struct ulog_backend *backend, rt_uint32_t level, const char *tag, rt_bool_t is_raw,… 206 …rt_bool_t (*filter)(struct ulog_backend *backend, rt_uint32_t level, const char *tag, rt_bool_t is… 210 …end_filter_t)(struct ulog_backend *backend, rt_uint32_t level, const char *tag, rt_bool_t is_raw, …
|
| /components/legacy/fdt/libfdt/ |
| A D | fdt.c | 95 uint32_t tag; in fdt_next_tag() local 103 tag = fdt32_to_cpu(*tagp); in fdt_next_tag() 107 switch (tag) { in fdt_next_tag() 139 return tag; in fdt_next_tag() 163 uint32_t tag; in fdt_next_node() local 171 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node() 173 switch (tag) { in fdt_next_node() 195 } while (tag != FDT_BEGIN_NODE); in fdt_next_node()
|
| A D | fdt_sw.c | 179 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_begin_node() 236 prop->tag = cpu_to_fdt32(FDT_PROP); in fdt_property() 248 uint32_t tag; in fdt_finish() local 267 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish() 268 if (tag == FDT_PROP) { in fdt_finish()
|
| A D | fdt.h | 96 fdt32_t tag; member 101 fdt32_t tag; member
|
| A D | fdt_rw.c | 243 (*prop)->tag = cpu_to_fdt32(FDT_PROP); in _fdt_add_property() 340 uint32_t tag; in fdt_add_subnode_namelen() local 355 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_add_subnode_namelen() 356 } while ((tag == FDT_PROP) || (tag == FDT_NOP)); in fdt_add_subnode_namelen() 365 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_add_subnode_namelen()
|
| /components/drivers/ofw/libfdt/ |
| A D | fdt.c | 165 uint32_t tag, len, sum; in fdt_next_tag() local 173 tag = fdt32_to_cpu(*tagp); in fdt_next_tag() 177 switch (tag) { in fdt_next_tag() 220 return tag; in fdt_next_tag() 250 uint32_t tag; in fdt_next_node() local 258 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node() 260 switch (tag) { in fdt_next_node() 282 } while (tag != FDT_BEGIN_NODE); in fdt_next_node()
|
| A D | fdt.h | 37 fdt32_t tag; member 42 fdt32_t tag; member
|
| A D | fdt_rw.c | 229 (*prop)->tag = cpu_to_fdt32(FDT_PROP); in fdt_add_property_() 340 uint32_t tag; in fdt_add_subnode_namelen() local 352 tag = fdt_next_tag(fdt, parentoffset, &nextoffset); in fdt_add_subnode_namelen() 354 if (!can_assume(LIBFDT_FLAWLESS) && (tag != FDT_BEGIN_NODE)) in fdt_add_subnode_namelen() 358 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_add_subnode_namelen() 359 } while ((tag == FDT_PROP) || (tag == FDT_NOP)); in fdt_add_subnode_namelen() 368 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_add_subnode_namelen()
|
| A D | fdt_sw.c | 231 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_begin_node() 318 prop->tag = cpu_to_fdt32(FDT_PROP); in fdt_property_placeholder() 342 uint32_t tag; in fdt_finish() local 361 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish() 362 if (tag == FDT_PROP) { in fdt_finish()
|
| /components/drivers/ofw/ |
| A D | base.c | 285 if (np && tag) in rt_ofw_node_tag_equ() 290 ret = (rt_strlen(tag) == tag_len && !rt_strncmp(node_name, tag, tag_len)); in rt_ofw_node_tag_equ() 483 if (tag) in rt_ofw_find_node_by_tag() 704 if (parent && tag) in rt_ofw_get_child_by_tag() 1094 info->tag = name; in ofw_alias_scan() 1109 if (tag && id >= 0) in rt_ofw_get_alias_node() 1115 if (rt_strncmp(info->tag, tag, info->tag_len)) in rt_ofw_get_alias_node() 1165 if (np && tag) in rt_ofw_get_alias_id() 1172 if (rt_strncmp(info->tag, tag, info->tag_len)) in rt_ofw_get_alias_id() 1198 if (tag) in rt_ofw_get_alias_last_id() [all …]
|
| A D | ofw_internal.h | 44 const char *tag; member
|
| /components/legacy/usb/usbhost/class/ |
| A D | mass.c | 170 if(csw.signature != CSW_SIGNATURE || csw.tag != CBW_TAG_VALUE) in rt_usb_bulk_only_xfer() 309 cmd.tag = CBW_TAG_VALUE; in rt_usbh_storage_read10() 355 cmd.tag = CBW_TAG_VALUE; in rt_usbh_storage_write10() 399 cmd.tag = CBW_TAG_VALUE; in rt_usbh_storage_request_sense() 435 cmd.tag = CBW_TAG_VALUE; in rt_usbh_storage_test_unit_ready() 471 cmd.tag = CBW_TAG_VALUE; in rt_usbh_storage_inquiry() 508 cmd.tag = CBW_TAG_VALUE; in rt_usbh_storage_get_capacity()
|
| /components/utilities/ulog/syslog/ |
| A D | syslog.c | 171 rt_weak rt_size_t syslog_formater(char *log_buf, int level, const char *tag, rt_bool_t newline, con… in syslog_formater() argument 180 RT_ASSERT(tag); in syslog_formater() 205 log_len += ulog_strcpy(log_len, log_buf + log_len, tag); in syslog_formater()
|
| /components/drivers/hwcrypto/ |
| A D | hw_gcm.h | 27 … const unsigned char *tag, rt_size_t tag_len); /**< finish GCM operation. get tag */ 79 rt_err_t rt_hwcrypto_gcm_finish(struct rt_hwcrypto_ctx *ctx, const rt_uint8_t *tag,
|
| A D | hw_gcm.c | 76 rt_err_t rt_hwcrypto_gcm_finish(struct rt_hwcrypto_ctx *ctx, const rt_uint8_t *tag, in rt_hwcrypto_gcm_finish() argument 83 return gcm_ctx->ops->finish(gcm_ctx, tag, tag_len); in rt_hwcrypto_gcm_finish()
|
| /components/net/lwip/lwip-1.4.1/doc/ |
| A D | savannah.txt | 74 has a tag indicating the previous merger. This tag is called 75 'merged_from_A_to_B'. After merging, the tag is moved in the 93 If this worked out OK, we now move the tag in the DEVEL branch 102 tag name "STABLE-0_6_3". (I use release number 0.6.3 throughout this example).
|
| /components/drivers/include/drivers/ |
| A D | ofw.h | 145 rt_bool_t rt_ofw_node_tag_equ(const struct rt_ofw_node *np, const char *tag); 165 struct rt_ofw_node *rt_ofw_find_node_by_tag(struct rt_ofw_node *from, const char *tag); 188 struct rt_ofw_node *rt_ofw_get_child_by_tag(const struct rt_ofw_node *parent, const char *tag); 205 struct rt_ofw_node *rt_ofw_get_alias_node(const char *tag, int id); 206 int rt_ofw_get_alias_id(struct rt_ofw_node *np, const char *tag); 207 int rt_ofw_get_alias_last_id(const char *tag);
|
| /components/utilities/ulog/backend/ |
| A D | console_be.c | 22 void ulog_console_backend_output(struct ulog_backend *backend, rt_uint32_t level, const char *tag, … in ulog_console_backend_output() argument
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | savannah.txt | 89 First, tag the release using Git: (I use release number 1.4.1 throughout 91 git tag -a STABLE-1_4_1 93 Share the tag reference by pushing it to remote:
|
| /components/net/lwip/lwip-2.1.2/doc/ |
| A D | savannah.txt | 89 First, tag the release using Git: (I use release number 1.4.1 throughout 91 git tag -a STABLE-1_4_1 93 Share the tag reference by pushing it to remote:
|