Home | History | Annotate | Download | only in dist

Lines Matching refs:lenp

327  * @lenp: optional pointer to return the string's length
331 * returns the string's length in *lenp.
337 const char *fdt_get_string(const void *fdt, int stroffset, int *lenp);
523 * @lenp: pointer to an integer variable (will be overwritten) or NULL
526 * device tree node at structure block offset nodeoffset. If lenp is
528 * pointed to by lenp.
532 * If lenp is non-NULL, *lenp contains the length of that name
535 * if lenp is non-NULL *lenp contains an error code (<0):
542 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
616 * @lenp: pointer to an integer variable (will be overwritten) or NULL
620 * offset. If lenp is non-NULL, the length of the property value is
621 * also returned, in the integer pointed to by lenp.
628 * if lenp is non-NULL, *lenp contains the length of the property
631 * if lenp is non-NULL, *lenp contains an error code (<0):
641 int *lenp);
649 * @lenp: pointer to an integer variable (will be overwritten) or NULL
658 int namelen, int *lenp);
666 * @lenp: pointer to an integer variable (will be overwritten) or NULL
670 * named 'name' of the node at offset nodeoffset. If lenp is
672 * integer pointed to by lenp.
676 * if lenp is non-NULL, *lenp contains the length of the property
679 * if lenp is non-NULL, *lenp contains an error code (<0):
690 const char *name, int *lenp);
693 int *lenp)
696 fdt_get_property(fdt, nodeoffset, name, lenp);
704 * @lenp: pointer to an integer variable (will be overwritten) or NULL
709 * lenp is non-NULL, the length of the property value is also
710 * returned, in the integer pointed to by lenp. If namep is non-NULL,
717 * if lenp is non-NULL, *lenp contains the length of the property
722 * if lenp is non-NULL, *lenp contains an error code (<0):
732 const char **namep, int *lenp);
741 * @lenp: pointer to an integer variable (will be overwritten) or NULL
748 const char *name, int namelen, int *lenp);
751 int *lenp)
754 namelen, lenp);
763 * @lenp: pointer to an integer variable (will be overwritten) or NULL
768 * If lenp is non-NULL, the length of the property value is also
769 * returned, in the integer pointed to by lenp.
773 * if lenp is non-NULL, *lenp contains the length of the property
776 * if lenp is non-NULL, *lenp contains an error code (<0):
787 const char *name, int *lenp);
789 const char *name, int *lenp)
791 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp);
1119 * @lenp: return location for the string length or an error code on failure
1126 * (on failure) will be stored in the integer pointer to by lenp.
1131 * location pointed to by the lenp parameter, if non-NULL. On failure one of
1132 * the following negative error codes will be returned in the lenp parameter
1139 int *lenp);