Home
last modified time | relevance | path

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

/scripts/
Dget_abi.pl93 my $tag = "";
110 if ($tag eq "description") {
114 } elsif ($tag ne "") {
115 parse_error($file, $ln, "tag '$tag' is invalid", $_);
131 if ($tag =~ m/what/) {
147 $tag = $new_tag;
153 if ($tag ne "" && $new_tag) {
154 $tag = $new_tag;
190 $data{$what}->{$tag} .= $content;
196 $data{$what}->{$tag} = $content;
[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 …]
Dsetlocalversion134 tag=$(printf '%s' "$hgid" | cut -d' ' -f2)
135 if [ -z "$tag" -o "$tag" = tip ]; then
Dcheckpatch.pl3205 my $tag = $1;
3209 $tag_case = 0 if $tag eq "Fixes:";
3300 my $tag = $1;
3302 if ($tag =~ /^$link_tags_search$/ && $value !~ m{^https?://}) {
3304 "'$tag' should be followed by a public http(s) link\n" . $herecurr);
/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.c160 uint32_t tag; in fdt_next_tag() local
168 tag = fdt32_to_cpu(*tagp); in fdt_next_tag()
172 switch (tag) { in fdt_next_tag()
208 return tag; in fdt_next_tag()
238 uint32_t tag; in fdt_next_node() local
246 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node()
248 switch (tag) { in fdt_next_node()
270 } while (tag != FDT_BEGIN_NODE); in fdt_next_node()
Dfdt.h37 fdt32_t tag; member
42 fdt32_t tag; member
Dfdt_sw.c231 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()
Dfdt_rw.c229 (*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()
Dfdt_ro.c203 uint32_t tag; in nextprop_() local
207 tag = fdt_next_tag(fdt, offset, &nextoffset); in nextprop_()
209 switch (tag) { in nextprop_()
220 } while (tag == FDT_NOP); in nextprop_()
/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.c251 char tag; member
525 static void item_make(struct menu *menu, char tag, const char *fmt, ...) in item_make() argument
533 k_menu_items[items_num].tag = tag; in item_make()
602 return mcur->tag; in item_tag()
623 static int item_is_tag(char tag) in item_is_tag() argument
625 return item_tag() == tag; in item_is_tag()
/scripts/mod/
Dmodpost.c776 static char *get_next_modinfo(struct elf_info *info, const char *tag, in get_next_modinfo() argument
780 unsigned int taglen = strlen(tag); in get_next_modinfo()
790 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=') in get_next_modinfo()
796 static char *get_modinfo(struct elf_info *info, const char *tag) in get_modinfo() argument
799 return get_next_modinfo(info, tag, NULL); in get_modinfo()