Home
last modified time | relevance | path

Searched refs:d_handle (Results 1 – 3 of 3) sorted by relevance

/freebsd/stand/libofw/
H A Dofw_disk.c101 OF_close(kdp->d_handle); in ofwd_strategy()
105 if ((dp->d_handle = OF_open(dp->d_path)) == -1) in ofwd_strategy()
112 if (OF_seek(dp->d_handle, pos) < 0) in ofwd_strategy()
114 n = OF_read(dp->d_handle, buf, size); in ofwd_strategy()
134 OF_close(kdp->d_handle); in ofwd_open()
137 if ((dp->d_handle = OF_open(dp->d_path)) == -1) { in ofwd_open()
154 OF_close(dev->d_handle); in ofwd_close()
170 block_size = OF_block_size(dev->d_handle); in ofwd_ioctl()
174 block_size = OF_block_size(dev->d_handle); in ofwd_ioctl()
175 n = OF_blocks(dev->d_handle); in ofwd_ioctl()
[all …]
H A Dlibofw.h35 ihandle_t d_handle; member
/freebsd/contrib/sqlite3/
H A Dshell.c2307 intptr_t d_handle; /* Value returned by "_findfirst". */ member
2411 dirp->d_handle = _findfirst(data.name, &data); in opendir()
2413 if( dirp->d_handle==BAD_INTPTR_T ){ in opendir()
2423 if( _findnext(dirp->d_handle, &data)==-1 ){ in opendir()
2459 if( _findnext(dirp->d_handle, &data)==-1 ) return NULL; in readdir()
2500 if( _findnext(dirp->d_handle, &data)==-1 ){ in readdir_r()
2527 if( dirp->d_handle!=NULL_INTPTR_T && dirp->d_handle!=BAD_INTPTR_T ){ in closedir()
2528 result = _findclose(dirp->d_handle); in closedir()