Lines Matching refs:buflen
122 ofw_firstprop(int fd, phandle_t node, char *buf, int buflen) in ofw_firstprop() argument
125 return (ofw_nextprop(fd, node, NULL, buf, buflen)); in ofw_firstprop()
129 ofw_nextprop(int fd, phandle_t node, const char *prev, char *buf, int buflen) in ofw_nextprop() argument
136 d.of_buflen = buflen; in ofw_nextprop()
158 ofw_getprop(int fd, phandle_t node, const char *name, void *buf, int buflen) in ofw_getprop() argument
165 d.of_buflen = buflen; in ofw_getprop()
173 int buflen) in ofw_setprop() argument
180 d.of_buflen = buflen; in ofw_setprop()
181 d.of_buf = ofw_malloc(buflen); in ofw_setprop()
182 memcpy(d.of_buf, buf, buflen); in ofw_setprop()
202 int *buflen, int reserve) in ofw_getprop_alloc() argument
211 if (*buflen < len + reserve) { in ofw_getprop_alloc()
214 *buflen = len + reserve + OFIOCMAXVALUE; in ofw_getprop_alloc()
215 *buf = ofw_malloc(*buflen); in ofw_getprop_alloc()
220 d.of_buflen = *buflen - reserve; in ofw_getprop_alloc()