Lines Matching defs:filep
465 static int VfsVfcntl(struct File *filep, int cmd, va_list ap)
470 if ((filep == NULL) || (filep->fFops == NULL)) {
475 ret = (int)(filep->fFlags);
479 filep->fFlags &= ~LOS_FCNTL;
480 filep->fFlags |= flags;
1081 struct File *filep;
1083 filep = VfsAttachFileReady(fd);
1084 if ((filep == NULL) || (filep->fMp == NULL) || filep->fullPath == NULL) {
1087 ret = stat(filep->fullPath, buf);
1088 VfsDetachFile(filep);
1097 struct File *filep = NULL;
1103 filep = VfsAttachFileReady(fd);
1104 ret = VfsVfcntl(filep, cmd, ap);
1105 VfsDetachFile(filep);