Home | History | Annotate | Download | only in Include

Lines Matching refs:lenp

348  * @lenp: pointer to an integer variable (will be overwritten) or NULL

351 * device tree node at structure block offset nodeoffset. If lenp is
353 * pointed to by lenp.
357 * If lenp is non-NULL, *lenp contains the length of that name (>=0)
359 * if lenp is non-NULL *lenp contains an error code (<0):
365 const char *fdt_get_name(const void *fdt, int nodeoffset, int *lenp);
412 * @lenp: pointer to an integer variable (will be overwritten) or NULL
416 * offset. If lenp is non-NULL, the length of the property value is
417 * also returned, in the integer pointed to by lenp.
421 * if lenp is non-NULL, *lenp contains the length of the property
424 * if lenp is non-NULL, *lenp contains an error code (<0):
434 int *lenp);
442 * @lenp: pointer to an integer variable (will be overwritten) or NULL
450 int namelen, int *lenp);
457 * @lenp: pointer to an integer variable (will be overwritten) or NULL
461 * named 'name' of the node at offset nodeoffset. If lenp is
463 * integer pointed to by lenp.
467 * if lenp is non-NULL, *lenp contains the length of the property
470 * if lenp is non-NULL, *lenp contains an error code (<0):
480 const char *name, int *lenp);
483 int *lenp)
486 fdt_get_property(fdt, nodeoffset, name, lenp);
494 * @lenp: pointer to an integer variable (will be overwritten) or NULL
499 * lenp is non-NULL, the length of the property value is also
500 * returned, in the integer pointed to by lenp. If namep is non-NULL,
507 * if lenp is non-NULL, *lenp contains the length of the property
512 * if lenp is non-NULL, *lenp contains an error code (<0):
521 const char **namep, int *lenp);
529 * @lenp: pointer to an integer variable (will be overwritten) or NULL
535 const char *name, int namelen, int *lenp);
542 * @lenp: pointer to an integer variable (will be overwritten) or NULL
547 * If lenp is non-NULL, the length of the property value is also
548 * returned, in the integer pointed to by lenp.
552 * if lenp is non-NULL, *lenp contains the length of the property
555 * if lenp is non-NULL, *lenp contains an error code (<0):
565 const char *name, int *lenp);
567 const char *name, int *lenp)
569 return (void *)(uintptr_t)fdt_getprop(fdt, nodeoffset, name, lenp);