Home | History | Annotate | Download | only in kern

Lines Matching refs:oldlenp

2088 	buflen = where != NULL ? *oldlenp : 0;
2292 *oldlenp = dp - where;
2293 if (needed > *oldlenp) {
2299 *oldlenp = needed;
2368 error = fill_pathname(l, pid, oldp, oldlenp);
2374 error = fill_cwd(l, pid, oldp, oldlenp);
2414 *oldlenp = sizeof (int);
2416 *oldlenp = ARG_MAX; /* XXX XXX XXX */
2447 *oldlenp = sizeof(value);
2452 error = copy_procargs(p, type, oldlenp,
2976 fill_pathname(struct lwp *l, pid_t pid, void *oldp, size_t *oldlenp)
2992 size_t copylen = uimin(len, *oldlenp);
2994 if (error == 0 && *oldlenp < len)
2997 *oldlenp = len;
3004 fill_cwd(struct lwp *l, pid_t pid, void *oldp, size_t *oldlenp)
3037 size_t copylen = uimin(lenused, *oldlenp);
3039 if (error == 0 && *oldlenp < lenused)
3042 *oldlenp = lenused;