Home | History | Annotate | Download | only in FvSimpleFileSystemDxe

Lines Matching refs:Instance

61   @param  FvProtocol                  A pointer to the EFI_FIRMWARE_VOLUME2_PROTOCOL instance.

62 @param FvFileInfo A pointer to the FV_FILESYSTEM_FILE_INFO instance that is a struct
108 @param FvProtocol A pointer to the EFI_FIRMWARE_VOLUME2_PROTOCOL instance.
109 @param FvFileInfo A pointer to the FV_FILESYSTEM_FILE_INFO instance that is a struct
204 @param FvProtocol A pointer to the EFI_FIRMWARE_VOLUME2_PROTOCOL instance.
205 @param FvFileInfo A pointer to the FV_FILESYSTEM_FILE_INFO instance that is a struct
287 @param FvFileInfo A pointer to the FV_FILESYSTEM_FILE_INFO instance that is a struct
444 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
481 FV_FILESYSTEM_INSTANCE *Instance;
503 Instance = File->Instance;
523 NewFile->Instance = Instance;
527 InsertHeadList (&Instance->FileHead, &NewFile->Link);
529 NewFile->DirReadNext = FVFS_GET_FIRST_FILE_INFO (Instance);
540 for (FvFileInfoLink = GetFirstNode (&Instance->FileInfoHead);
541 !IsNull (&Instance->FileInfoHead, FvFileInfoLink);
542 FvFileInfoLink = GetNextNode (&Instance->FileInfoHead, FvFileInfoLink)) {
565 for (FvFileInfoLink = GetFirstNode (&Instance->FileInfoHead);
566 !IsNull (&Instance->FileInfoHead, FvFileInfoLink);
567 FvFileInfoLink = GetNextNode (&Instance->FileInfoHead, FvFileInfoLink)) {
584 NewFile->Instance = Instance;
588 InsertHeadList (&Instance->FileHead, &NewFile->Link);
600 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
612 FV_FILESYSTEM_INSTANCE *Instance;
616 Instance = File->Instance;
618 if (File != Instance->Root) {
628 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
653 FV_FILESYSTEM_INSTANCE *Instance;
661 Instance = File->Instance;
663 if (File->FvFileInfo == Instance->Root->FvFileInfo) {
674 FvFileInfoLink = GetNextNode (&Instance->FileInfoHead, &File->DirReadNext->Link);
675 if (IsNull (&Instance->FileInfoHead, FvFileInfoLink)) {
701 Status = FvFsReadFile (File->Instance->FvProtocol, File->FvFileInfo, &FileSize, &FileBuffer);
720 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
745 FV_FILESYSTEM_INSTANCE *Instance;
749 Instance = File->Instance;
751 if (File->FvFileInfo == Instance->Root->FvFileInfo) {
761 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
777 FV_FILESYSTEM_INSTANCE *Instance;
781 Instance = File->Instance;
783 if (File->FvFileInfo == Instance->Root->FvFileInfo) {
794 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the
811 FV_FILESYSTEM_INSTANCE *Instance;
815 Instance = File->Instance;
817 if (File->FvFileInfo == Instance->Root->FvFileInfo) {
824 File->DirReadNext = FVFS_GET_FIRST_FILE_INFO (Instance);
837 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
861 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the
885 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
914 FV_FILESYSTEM_INSTANCE *Instance;
924 Instance = File->Instance;
926 Size = sizeof (EFI_FILE_SYSTEM_INFO) + StrSize (Instance->VolumeLabel) - sizeof (CHAR16);
941 Instance
942 StrLen (Instance->VolumeLabel)
956 Instance = File->Instance;
957 Size = sizeof (EFI_FILE_SYSTEM_VOLUME_LABEL) + StrSize (Instance->VolumeLabel) - sizeof (CHAR16);;
966 Instance->VolumeLabel,
967 StrLen (Instance->VolumeLabel)
979 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file