Searched refs:lenp (Results 1 – 3 of 3) sorted by relevance
/DragonStub/apps/lib/libfdt/ |
H A D | fdt_ro.c | 34 const char *fdt_get_string(const void *fdt, int stroffset, int *lenp) in fdt_get_string() argument 45 if (lenp) in fdt_get_string() 46 *lenp = strlen(s); in fdt_get_string() 90 if (lenp) in fdt_get_string() 91 *lenp = n - s; in fdt_get_string() 95 if (lenp) in fdt_get_string() 96 *lenp = err; in fdt_get_string() 358 int *lenp) in fdt_get_property_by_offset_() argument 365 if (lenp) in fdt_get_property_by_offset_() 366 *lenp = err; in fdt_get_property_by_offset_() [all …]
|
H A D | libfdt.h | 353 const char *fdt_get_string(const void *fdt, int stroffset, int *lenp); 563 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp); 662 int *lenp); 665 int *lenp) in fdt_get_property_by_offset_w() argument 668 fdt_get_property_by_offset(fdt, offset, lenp); in fdt_get_property_by_offset_w() 689 int namelen, int *lenp); 721 const char *name, int *lenp); 724 int *lenp) in fdt_get_property_w() argument 727 fdt_get_property(fdt, nodeoffset, name, lenp); in fdt_get_property_w() 763 const char **namep, int *lenp); [all …]
|
H A D | fdt.c | 165 const fdt32_t *tagp, *lenp; in fdt_next_tag() local 189 lenp = fdt_offset_ptr(fdt, offset, sizeof(*lenp)); in fdt_next_tag() 190 if (!can_assume(VALID_DTB) && !lenp) in fdt_next_tag() 193 len = fdt32_to_cpu(*lenp); in fdt_next_tag()
|