Searched refs:tag (Results 1 - 16 of 16) sorted by relevance

/scripts/dtc/libfdt/
H A Dfdt_wip.c100 uint32_t tag; local
103 tag = fdt_next_tag(fdt, nodeoffset, &nextoffset);
104 if (tag != FDT_BEGIN_NODE)
108 tag = fdt_next_tag(fdt, offset, &nextoffset);
110 switch (tag) {
H A Dfdt.c96 uint32_t tag; local
105 tag = fdt32_to_cpu(*tagp);
108 switch (tag) {
129 return tag;
144 uint32_t tag; local
152 tag = fdt_next_tag(fdt, offset, &nextoffset);
154 switch (tag) {
175 } while (tag != FDT_BEGIN_NODE);
H A Dfdt.h31 uint32_t tag; member in struct:fdt_node_header
36 uint32_t tag; member in struct:fdt_property
H A Dfdt_sw.c149 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
206 prop->tag = cpu_to_fdt32(FDT_PROP);
218 uint32_t tag; local
237 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
238 if (tag == FDT_PROP) {
H A Dfdt_ro.c185 uint32_t tag; local
199 tag = fdt_next_tag(fdt, offset, &nextoffset);
200 switch (tag) {
235 } while ((tag != FDT_BEGIN_NODE) && (tag != FDT_END_NODE));
H A Dfdt_rw.c245 (*prop)->tag = cpu_to_fdt32(FDT_PROP);
314 uint32_t tag; local
329 tag = fdt_next_tag(fdt, offset, &nextoffset);
330 } while ((tag == FDT_PROP) || (tag == FDT_NOP));
339 nh->tag = cpu_to_fdt32(FDT_BEGIN_NODE);
/scripts/
H A Dsetlocalversion63 # If we don't have a tag at all we print -g{commitish}.
93 tag=`printf '%s' "$hgid" | cut -d' ' -f2`
94 if [ -z "$tag" -o "$tag" = tip ]; then
168 # looks at signed or annotated tags - git tag -a/-s) and
/scripts/kconfig/lxdialog/
H A Ddialog.h132 struct dialog_color tag; member in struct:dialog_info
156 void item_set_tag(char tag);
167 char tag; member in struct:dialog_item
187 int item_is_tag(char tag);
H A Dutil.c51 dlg.tag.atr = A_BOLD;
91 DLG_COLOR(tag, COLOR_YELLOW, COLOR_WHITE, true);
131 DLG_COLOR(tag, COLOR_RED, COLOR_BLACK, false);
151 DLG_COLOR(tag, COLOR_BLUE, COLOR_WHITE, true);
211 init_one_color(&dlg.tag);
581 void item_set_tag(char tag) argument
583 item_cur->node.tag = tag;
610 return item_cur->node.tag;
654 int item_is_tag(char tag) argument
[all...]
H A Dchecklist.c51 wattrset(win, selected ? dlg.tag_selected.atr : dlg.tag.atr);
/scripts/genksyms/
H A Dparse.y64 (*ident)->tag = type;
68 r = copy_node(i); r->tag = type;
229 { remove_node($1); (*$2)->tag = SYM_STRUCT; $$ = $2; }
231 { remove_node($1); (*$2)->tag = SYM_UNION; $$ = $2; }
233 { remove_node($1); (*$2)->tag = SYM_ENUM; $$ = $2; }
263 | TYPE { (*$1)->tag = SYM_TYPEDEF; $$ = $1; }
H A Dgenksyms.c190 (defn = sym->defn) && defn->tag == SYM_NORMAL &&
192 (defn = defn->next) && defn->tag == SYM_NORMAL &&
194 (defn = defn->next) && defn->tag == SYM_NORMAL &&
357 newnode->tag = SYM_NORMAL;
386 newnode->tag = node->tag;
410 if (a->tag != b->tag || strcmp(a->string, b->string))
426 .tag = SYM_NORMAL };
456 node.tag
[all...]
H A Dgenksyms.h39 enum symbol_type tag; member in struct:string_list
H A Dparse.tab.c_shipped108 (*ident)->tag = type;
112 r = copy_node(i); r->tag = type;
1821 { remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_STRUCT; (yyval) = (yyvsp[(2) - (2)]); }
1826 { remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_UNION; (yyval) = (yyvsp[(2) - (2)]); }
1831 { remove_node((yyvsp[(1) - (2)])); (*(yyvsp[(2) - (2)]))->tag = SYM_ENUM; (yyval) = (yyvsp[(2) - (2)]); }
1866 { (*(yyvsp[(1) - (1)]))->tag = SYM_TYPEDEF; (yyval) = (yyvsp[(1) - (1)]); }
/scripts/kconfig/
H A Dnconf.c256 char tag; member in struct:mitem
529 static void item_make(struct menu *menu, char tag, const char *fmt, ...) argument
537 k_menu_items[items_num].tag = tag;
596 /* get the tag of the currently selected item */
606 return mcur->tag;
627 static int item_is_tag(char tag) argument
629 return item_tag() == tag;
/scripts/mod/
H A Dmodpost.c661 * Parse tag=value strings from .modinfo section
682 const char *tag, char *info)
685 unsigned int taglen = strlen(tag);
694 if (strncmp(p, tag, taglen) == 0 && p[taglen] == '=')
701 const char *tag)
704 return get_next_modinfo(modinfo, modinfo_len, tag, NULL);
681 get_next_modinfo(void *modinfo, unsigned long modinfo_len, const char *tag, char *info) argument
700 get_modinfo(void *modinfo, unsigned long modinfo_len, const char *tag) argument

Completed in 3669 milliseconds