Home
last modified time | relevance | path

Searched refs:tag (Results 1 – 21 of 21) sorted by relevance

/scripts/
Dget_abi.pl70 my $tag;
87 if ($tag eq "description") {
91 } elsif ($tag ne "") {
92 parse_error($file, $ln, "tag '$tag' is invalid", $_);
104 if ($tag =~ m/what/) {
114 $tag = $new_tag;
120 if ($tag ne "" && $new_tag) {
121 $tag = $new_tag;
139 if ($tag eq "description") {
146 $data{$what}->{$tag} .= "$new_content\n";
[all …]
Dasn1_compiler.c694 uint8_t tag; member
866 element->tag = token_to_tag[cursor->token_type]; in parse_type()
904 element->tag &= ~0x1f; in parse_type()
905 element->tag |= strtoul(cursor->content, &p, 10); in parse_type()
946 element->tag = token_to_tag[cursor->token_type]; in parse_type()
1216 char tag[32]; in dump_element() local
1218 if (e->class == 0 && e->method == 0 && e->tag == 0) in dump_element()
1219 strcpy(tag, "<...>"); in dump_element()
1221 sprintf(tag, "%s %s %s", in dump_element()
1224 asn1_universal_tags[e->tag]); in dump_element()
[all …]
Dsetlocalversion100 tag=`printf '%s' "$hgid" | cut -d' ' -f2`
101 if [ -z "$tag" -o "$tag" = tip ]; then
/scripts/dtc/
Dfdtdump.c58 uint32_t tag; in dump_blob() local
99 while ((tag = fdt32_to_cpu(GET_CELL(p))) != FDT_END) { in dump_blob()
103 if (tag == FDT_BEGIN_NODE) { in dump_blob()
116 if (tag == FDT_END_NODE) { in dump_blob()
123 if (tag == FDT_NOP) { in dump_blob()
128 if (tag != FDT_PROP) { in dump_blob()
129 fprintf(stderr, "%*s ** Unknown tag 0x%08x\n", depth * shift, "", tag); in dump_blob()
Dyamltree.c35 void *tag; in yaml_propval_int() local
39 case 1: tag = "!u8"; break; in yaml_propval_int()
40 case 2: tag = "!u16"; break; in yaml_propval_int()
41 case 4: tag = "!u32"; break; in yaml_propval_int()
42 case 8: tag = "!u64"; break; in yaml_propval_int()
49 (yaml_char_t *)tag, width == 4, YAML_FLOW_SEQUENCE_STYLE); in yaml_propval_int()
Dfdtget.c139 uint32_t tag; /* current tag */ in list_subnodes() local
145 tag = fdt_next_tag(blob, node, &nextoffset); in list_subnodes()
146 switch (tag) { in list_subnodes()
174 printf("Unknown tag 0x%08X\n", tag); in list_subnodes()
/scripts/genksyms/
Dgenksyms.c177 (defn = sym->defn) && defn->tag == SYM_NORMAL && in is_unknown_symbol()
179 (defn = defn->next) && defn->tag == SYM_NORMAL && in is_unknown_symbol()
181 (defn = defn->next) && defn->tag == SYM_NORMAL && in is_unknown_symbol()
344 newnode->tag = SYM_NORMAL; in mk_node()
373 newnode->tag = node->tag; in copy_node()
397 if (a->tag != b->tag || strcmp(a->string, b->string)) in equal_list()
413 .tag = SYM_NORMAL }; in read_node()
445 node.tag = n; in read_node()
465 if (sym && sym->tag == SYM_NORMAL && in read_reference()
474 if (def && def->tag == SYM_NORMAL && in read_reference()
[all …]
Dparse.y52 (*ident)->tag = type; in record_compound()
56 r = copy_node(i); r->tag = type; in record_compound()
220 { remove_node($1); (*$2)->tag = SYM_STRUCT; $$ = $2; }
222 { remove_node($1); (*$2)->tag = SYM_UNION; $$ = $2; }
224 { remove_node($1); (*$2)->tag = SYM_ENUM; $$ = $2; }
256 | TYPE { (*$1)->tag = SYM_TYPEDEF; $$ = $1; }
Dgenksyms.h28 enum symbol_type tag; member
Dlex.l104 cur_node->tag = \
/scripts/dtc/libfdt/
Dfdt.c129 uint32_t tag; in fdt_next_tag() local
137 tag = fdt32_to_cpu(*tagp); in fdt_next_tag()
141 switch (tag) { in fdt_next_tag()
176 return tag; in fdt_next_tag()
200 uint32_t tag; in fdt_next_node() local
208 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node()
210 switch (tag) { in fdt_next_node()
232 } while (tag != FDT_BEGIN_NODE); in fdt_next_node()
Dfdt.h37 fdt32_t tag; member
42 fdt32_t tag; member
Dfdt_sw.c223 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_begin_node()
310 prop->tag = cpu_to_fdt32(FDT_PROP); in fdt_property_placeholder()
334 uint32_t tag; in fdt_finish() local
353 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish()
354 if (tag == FDT_PROP) { in fdt_finish()
Dfdt_rw.c214 (*prop)->tag = cpu_to_fdt32(FDT_PROP); in fdt_add_property_()
325 uint32_t tag; in fdt_add_subnode_namelen() local
340 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_add_subnode_namelen()
341 } while ((tag == FDT_PROP) || (tag == FDT_NOP)); in fdt_add_subnode_namelen()
350 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE); in fdt_add_subnode_namelen()
Dfdt_ro.c188 uint32_t tag; in nextprop_() local
192 tag = fdt_next_tag(fdt, offset, &nextoffset); in nextprop_()
194 switch (tag) { in nextprop_()
205 } while (tag == FDT_NOP); in nextprop_()
841 uint32_t tag; in fdt_check_full() local
860 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_check_full()
865 switch (tag) { in fdt_check_full()
/scripts/kconfig/lxdialog/
Ddialog.h119 struct dialog_color tag; member
144 void item_set_tag(char tag);
155 char tag; member
175 int item_is_tag(char tag);
Dutil.c41 dlg.tag.atr = A_BOLD; in set_mono_theme()
81 DLG_COLOR(tag, COLOR_YELLOW, COLOR_WHITE, true); in set_classic_theme()
121 DLG_COLOR(tag, COLOR_RED, COLOR_BLACK, false); in set_blackbg_theme()
141 DLG_COLOR(tag, COLOR_BLUE, COLOR_WHITE, true); in set_bluetitle_theme()
201 init_one_color(&dlg.tag); in init_dialog_colors()
624 void item_set_tag(char tag) in item_set_tag() argument
626 item_cur->node.tag = tag; in item_set_tag()
653 return item_cur->node.tag; in item_tag()
697 int item_is_tag(char tag) in item_is_tag() argument
699 return (item_cur->node.tag == tag); in item_is_tag()
Dchecklist.c38 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr); in print_item()
/scripts/coccinelle/misc/
Dadd_namespace.cocci6 /// add a missing namespace tag to a module source file.
/scripts/kconfig/
Dnconf.c250 char tag; member
524 static void item_make(struct menu *menu, char tag, const char *fmt, ...) in item_make() argument
532 k_menu_items[items_num].tag = tag; in item_make()
601 return mcur->tag; in item_tag()
622 static int item_is_tag(char tag) in item_is_tag() argument
624 return item_tag() == tag; in item_is_tag()
/scripts/mod/
Dmodpost.c795 static char *get_next_modinfo(struct elf_info *info, const char *tag, in get_next_modinfo() argument
799 unsigned int taglen = strlen(tag); in get_next_modinfo()
809 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo()
815 static char *get_modinfo(struct elf_info *info, const char *tag) in get_modinfo() argument
818 return get_next_modinfo(info, tag, NULL); in get_modinfo()