Searched refs:pname (Results 1 - 15 of 15) sorted by path

/u-boot/tools/gdb/
H A Derror.c13 char *pname; variable
20 fprintf(stderr, "%s: WARNING: ", pname);
34 fprintf(stderr, "%s: ERROR: ", pname);
52 fprintf(stderr, "%s: ERROR: ", pname);
H A Derror.h9 extern char *pname;
H A Dgdbcont.c24 if ((pname = strrchr(av[0], '/')) == NULL)
25 pname = av[0];
27 pname++;
47 fprintf(stderr, "Usage: %s [-b bps] [-p dev] [-v]\n", pname);
H A Dgdbsend.c30 if ((pname = strrchr(av[0], '/')) == NULL)
31 pname = av[0];
33 pname++;
68 pname);
/u-boot/boot/
H A Dfdt_support.c362 const char *pname, const void *pval, int plen,
374 off = fdt_node_offset_by_prop_value(fdt, -1, pname, pval, plen);
378 off = fdt_node_offset_by_prop_value(fdt, off, pname, pval, plen);
383 const char *pname, const void *pval, int plen,
387 do_fixup_by_prop(fdt, pname, pval, plen, prop, &tmp, 4, create);
361 do_fixup_by_prop(void *fdt, const char *pname, const void *pval, int plen, const char *prop, const void *val, int len, int create) argument
382 do_fixup_by_prop_u32(void *fdt, const char *pname, const void *pval, int plen, const char *prop, u32 val, int create) argument
/u-boot/drivers/clk/exynos/
H A Dclk.h128 #define __DIV(_id, cname, pname, o, s, w, f, df) \
132 .parent_name = pname, \
140 #define DIV(_id, cname, pname, o, s, w) \
141 __DIV(_id, cname, pname, o, s, w, 0, 0)
143 #define DIV_F(_id, cname, pname, o, s, w, f, df) \
144 __DIV(_id, cname, pname, o, s, w, f, df)
166 #define __GATE(_id, cname, pname, o, b, f, gf) \
170 .parent_name = pname, \
177 #define GATE(_id, cname, pname, o, b, f, gf) \
178 __GATE(_id, cname, pname,
[all...]
/u-boot/drivers/misc/
H A Dk3_avs.c235 char pname[20]; local
243 sprintf(pname, "vdd-supply-%d", vd->id);
244 ret = device_get_supply_regulator(dev, pname, &vd->supply);
248 sprintf(pname, "ti,default-opp-%d", vd->id);
249 ret = dev_read_u32_default(dev, pname, -1);
/u-boot/drivers/pinctrl/
H A Dpinctrl-generic.c32 const char *pname = ops->get_pin_name(dev, selector); local
34 if (!strcmp(pin, pname))
/u-boot/include/
H A Dfdt_support.h85 const char *pname, const void *pval, int plen,
89 const char *pname, const void *pval, int plen,
/u-boot/lib/
H A Dof_live.c140 const char *pname; local
143 p = fdt_getprop_by_offset(blob, offset, &pname, &sz);
149 if (pname == NULL) {
153 if (strcmp(pname, "name") == 0)
164 if ((strcmp(pname, "phandle") == 0) ||
165 (strcmp(pname, "linux,phandle") == 0)) {
173 if (strcmp(pname, "ibm,phandle") == 0)
175 pp->name = (char *)pname;
/u-boot/test/lib/
H A Dsscanf.c34 static const char pname[] = " Hello World!\n"; local
61 ret = sprintf(buffer, " %s", pname);
64 ut_asserteq(strncmp(pname, buffer1, strlen(buffer1)), 0);
/u-boot/tools/binman/etype/
H A Dfdtmap.py111 for pname, prop in node.props.items():
112 fsw.property(pname, prop.bytes)
H A Dfit.py361 for pname, prop in self._node.props.items():
362 if pname.startswith('fit,'):
363 self._fit_props[pname] = prop
495 def _process_prop(pname, prop):
503 pname (str): Name of property
506 if pname == 'default':
520 fsw.property_string(pname, val)
522 elif pname.startswith('fit,'):
525 elif pname in ['offset', 'size', 'image-pos']:
528 fsw.property(pname, pro
[all...]
/u-boot/tools/dtoc/
H A Ddtb_platdata.py552 for pname, prop in node.props.items():
553 if pname in PROP_IGNORE_LIST or pname[0] == '#':
581 for pname in sorted(structs[name]):
582 prop = structs[name][pname]
687 for pname in sorted(node.props):
688 self._output_prop(node, node.props[pname], 2)
812 for pname in sorted(node.props):
813 self._output_prop(node, node.props[pname])
/u-boot/tools/env/
H A Dfw_env.c249 char *pname; local
258 for (pname = devname; *pname != '\0'; pname++) {
259 if (*pname == ':') {
260 *pname = '\0';
261 volname = pname + 1;

Completed in 143 milliseconds