Lines Matching defs:lenp

310  * @lenp: pointer to an integer variable (will be overwritten) or NULL
313 * device tree node at structure block offset nodeoffset. If lenp is
315 * pointed to by lenp.
319 * If lenp is non-NULL, *lenp contains the length of that name (>=0)
321 * if lenp is non-NULL *lenp contains an error code (<0):
327 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
374 * @lenp: pointer to an integer variable (will be overwritten) or NULL
378 * offset. If lenp is non-NULL, the length of the property value is
379 * also returned, in the integer pointed to by lenp.
383 * if lenp is non-NULL, *lenp contains the length of the property
386 * if lenp is non-NULL, *lenp contains an error code (<0):
396 int *lenp);
404 * @lenp: pointer to an integer variable (will be overwritten) or NULL
412 int namelen, int *lenp);
419 * @lenp: pointer to an integer variable (will be overwritten) or NULL
423 * named 'name' of the node at offset nodeoffset. If lenp is
425 * integer pointed to by lenp.
429 * if lenp is non-NULL, *lenp contains the length of the property
432 * if lenp is non-NULL, *lenp contains an error code (<0):
442 const char *name, int *lenp);
445 int *lenp)
448 fdt_get_property(fdt, nodeoffset, name, lenp);
456 * @lenp: pointer to an integer variable (will be overwritten) or NULL
461 * lenp is non-NULL, the length of the property value is also
462 * returned, in the integer pointed to by lenp. If namep is non-NULL,
469 * if lenp is non-NULL, *lenp contains the length of the property
474 * if lenp is non-NULL, *lenp contains an error code (<0):
483 const char **namep, int *lenp);
491 * @lenp: pointer to an integer variable (will be overwritten) or NULL
497 const char *name, int namelen, int *lenp);
504 * @lenp: pointer to an integer variable (will be overwritten) or NULL
509 * If lenp is non-NULL, the length of the property value is also
510 * returned, in the integer pointed to by lenp.
514 * if lenp is non-NULL, *lenp contains the length of the property
517 * if lenp is non-NULL, *lenp contains an error code (<0):
527 const char *name, int *lenp);
529 const char *name, int *lenp)
531 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp);