Lines Matching defs:lenp

343  * @lenp: optional pointer to return the string's length
347 * returns the string's length in *lenp.
353 const char *fdt_get_string(const void *fdt, int stroffset, int *lenp);
569 * @lenp: pointer to an integer variable (will be overwritten) or NULL
572 * device tree node at structure block offset nodeoffset. If lenp is
574 * pointed to by lenp.
578 * If lenp is non-NULL, *lenp contains the length of that name
581 * if lenp is non-NULL *lenp contains an error code (<0):
588 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
662 * @lenp: pointer to an integer variable (will be overwritten) or NULL
666 * offset. If lenp is non-NULL, the length of the property value is
667 * also returned, in the integer pointed to by lenp.
674 * if lenp is non-NULL, *lenp contains the length of the property
677 * if lenp is non-NULL, *lenp contains an error code (<0):
687 int *lenp);
690 int *lenp)
693 fdt_get_property_by_offset(fdt, offset, lenp);
702 * @lenp: pointer to an integer variable (will be overwritten) or NULL
714 int namelen, int *lenp);
722 * @lenp: pointer to an integer variable (will be overwritten) or NULL
726 * named 'name' of the node at offset nodeoffset. If lenp is
728 * integer pointed to by lenp.
732 * if lenp is non-NULL, *lenp contains the length of the property
735 * if lenp is non-NULL, *lenp contains an error code (<0):
746 const char *name, int *lenp);
749 int *lenp)
752 fdt_get_property(fdt, nodeoffset, name, lenp);
760 * @lenp: pointer to an integer variable (will be overwritten) or NULL
765 * lenp is non-NULL, the length of the property value is also
766 * returned, in the integer pointed to by lenp. If namep is non-NULL,
773 * if lenp is non-NULL, *lenp contains the length of the property
778 * if lenp is non-NULL, *lenp contains an error code (<0):
788 const char **namep, int *lenp);
797 * @lenp: pointer to an integer variable (will be overwritten) or NULL
806 const char *name, int namelen, int *lenp);
809 int *lenp)
812 namelen, lenp);
821 * @lenp: pointer to an integer variable (will be overwritten) or NULL
826 * If @lenp is non-NULL, the length of the property value is also
827 * returned, in the integer pointed to by @lenp.
831 * if lenp is non-NULL, *lenp contains the length of the property
834 * if lenp is non-NULL, *lenp contains an error code (<0):
845 const char *name, int *lenp);
847 const char *name, int *lenp)
849 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp);
1216 * @lenp: return location for the string length or an error code on failure
1223 * (on failure) will be stored in the integer pointer to by lenp.
1228 * location pointed to by the lenp parameter, if non-NULL. On failure one of
1229 * the following negative error codes will be returned in the lenp parameter
1236 int *lenp);