Home
last modified time | relevance | path

Searched refs:streq (Results 1 – 7 of 7) sorted by relevance

/utopia/UTPA2-700.0.x/projects/build/scripts/dtc/
H A Ddtc.c153 if (streq(optarg, "legacy")) in main()
155 else if (streq(optarg, "epapr")) in main()
157 else if (streq(optarg, "both")) in main()
191 if (streq(inform, "dts")) in main()
193 else if (streq(inform, "fs")) in main()
195 else if(streq(inform, "dtb")) in main()
209 if (streq(outname, "-")) { in main()
218 if (streq(outform, "dts")) { in main()
220 } else if (streq(outform, "dtb")) { in main()
222 } else if (streq(outform, "asm")) { in main()
[all …]
H A Dlivetree.c33 if (streq(new->label, label)) in add_label()
123 if (streq(old_prop->name, new_prop->name)) { in merge_nodes()
151 if (streq(old_child->name, new_child->name)) { in merge_nodes()
274 if (streq(prop->name, propname)) in get_property()
298 if (streq(l->label, label)) in get_property_by_label()
325 if (streq(m->ref, label)) in get_marker_label()
345 if (streq(child->name, nodename)) in get_subnode()
367 else if (!p && streq(path, child->name)) in get_node_by_path()
382 if (streq(l->label, label)) in get_node_by_label()
H A Dchecks.c226 if (streq(child->name, child2->name)) in check_duplicate_node_names()
239 if (streq(prop->name, prop2->name)) in check_duplicate_property_names()
344 if (!streq(prop->name, "phandle") in check_explicit_phandles()
345 && !streq(prop->name, "linux,phandle")) in check_explicit_phandles()
402 if (streq((*pp)->name, "name")) { in check_name_properties()
H A Dfstree.c42 if (streq(de->d_name, ".") in read_fstree()
43 || streq(de->d_name, "..")) in read_fstree()
H A Dflattree.c250 if (streq(str, d->val + i)) in stringtable_insert()
278 if (streq(prop->name, "name")) in flatten_tree()
736 if (!streq(ppath, "/")) in nodename_from_path()
H A Dsrcpos.c54 if (streq(fname, "-")) { in srcfile_relative_open()
H A Ddtc.h64 #define streq(a, b) (strcmp((a), (b)) == 0) macro