Home
last modified time | relevance | path

Searched refs:osfd (Results 1 – 2 of 2) sorted by relevance

/linux-2.6.39/drivers/staging/rt2860/
Drt_linux.c974 int RtmpOSFileClose(struct file *osfd) in RtmpOSFileClose() argument
976 filp_close(osfd, NULL); in RtmpOSFileClose()
980 void RtmpOSFileSeek(struct file *osfd, int offset) in RtmpOSFileSeek() argument
982 osfd->f_pos = offset; in RtmpOSFileSeek()
985 int RtmpOSFileRead(struct file *osfd, char *pDataPtr, int readLen) in RtmpOSFileRead() argument
988 if (osfd->f_op && osfd->f_op->read) { in RtmpOSFileRead()
989 return osfd->f_op->read(osfd, pDataPtr, readLen, &osfd->f_pos); in RtmpOSFileRead()
996 int RtmpOSFileWrite(struct file *osfd, char *pDataPtr, int writeLen) in RtmpOSFileWrite() argument
998 return osfd->f_op->write(osfd, pDataPtr, (size_t) writeLen, in RtmpOSFileWrite()
999 &osfd->f_pos); in RtmpOSFileWrite()
Drtmp.h4324 int RtmpOSFileClose(struct file *osfd);
4326 void RtmpOSFileSeek(struct file *osfd, IN int offset);
4328 int RtmpOSFileRead(struct file *osfd, IN char *pDataPtr, IN int readLen);
4330 int RtmpOSFileWrite(struct file *osfd, IN char *pDataPtr, IN int writeLen);