/src/sys/ufs/lfs/ |
ulfs_vnops.c | 790 char *direntbuf; local in function:ulfs_readdir 856 direntbuf = kmem_alloc(direntbufmax, KM_SLEEP); 859 dirent = (struct dirent *)(void *)direntbuf; 860 stopdirent = (struct dirent *)(void *)&direntbuf[direntbufmax]; 926 callerbytes = ((char *)(void *)dirent - direntbuf); 927 error = uiomove(direntbuf, callerbytes, calleruio); 941 kmem_free(direntbuf, direntbufmax);
|
ulfs_vnops.c | 790 char *direntbuf; local in function:ulfs_readdir 856 direntbuf = kmem_alloc(direntbufmax, KM_SLEEP); 859 dirent = (struct dirent *)(void *)direntbuf; 860 stopdirent = (struct dirent *)(void *)&direntbuf[direntbufmax]; 926 callerbytes = ((char *)(void *)dirent - direntbuf); 927 error = uiomove(direntbuf, callerbytes, calleruio); 941 kmem_free(direntbuf, direntbufmax);
|
/src/sys/ufs/ufs/ |
ufs_vnops.c | 1583 char *direntbuf; local in function:ufs_readdir 1727 direntbuf = kmem_alloc(direntbufmax, KM_SLEEP); 1730 dirent = (struct dirent *)(void *)direntbuf; 1731 stopdirent = (struct dirent *)(void *)&direntbuf[direntbufmax]; 1802 callerbytes = ((char *)(void *)dirent - direntbuf); 1803 error = uiomove(direntbuf, callerbytes, calleruio); 1817 kmem_free(direntbuf, direntbufmax);
|
ufs_vnops.c | 1583 char *direntbuf; local in function:ufs_readdir 1727 direntbuf = kmem_alloc(direntbufmax, KM_SLEEP); 1730 dirent = (struct dirent *)(void *)direntbuf; 1731 stopdirent = (struct dirent *)(void *)&direntbuf[direntbufmax]; 1802 callerbytes = ((char *)(void *)dirent - direntbuf); 1803 error = uiomove(direntbuf, callerbytes, calleruio); 1817 kmem_free(direntbuf, direntbufmax);
|