Searched refs:bufptr (Results 1 - 3 of 3) sorted by relevance

/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_xattr.c561 caddr_t bufptr = NULL; local
581 if (kmem_alloc(kernel_map, (vm_offset_t *)&bufptr, bufsize)) {
599 uio_addiov(auio, (uintptr_t)bufptr, iosize);
612 uio_addiov(auio, (uintptr_t)bufptr, iosize);
621 if (bufptr) {
622 kmem_free(kernel_map, (vm_offset_t)bufptr, bufsize);
823 caddr_t bufptr = NULL; local
891 if (kmem_alloc(kernel_map, (vm_offset_t *)&bufptr, bufsize)) {
909 uio_addiov(auio, (uintptr_t)bufptr, iosize);
917 uio_addiov(auio, (uintptr_t)bufptr, iosiz
[all...]
H A Dvfs_syscalls.c6843 void * bufptr; local
6864 MALLOC(bufptr, void *, bufsize, M_TEMP, M_WAITOK);
6865 if (bufptr == NULL) {
6870 uio_addiov(auio, (uintptr_t)bufptr, bufsize);
6875 dep = (struct dirent *)bufptr;
6881 while (error == 0 && (char *)dep < ((char *)bufptr + bytesread)) {
6902 FREE(bufptr, M_TEMP);
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_readwrite.c1623 char *bufptr; local
1636 bufptr = (char *)ap->a_data;
1637 cnid = strtoul(bufptr, NULL, 10);
1647 error = build_path(file_vp, bufptr, sizeof(pathname_t), &outlen, 0, context);

Completed in 101 milliseconds