Home | History | Annotate | Download | only in Host

Lines Matching refs:VolumeLabel

26   CHAR16                          *VolumeLabel;
1003 if (*BufferSize < SIZE_OF_EFI_FILE_SYSTEM_INFO + StrSize (PrivateRoot->VolumeLabel)) {
1004 *BufferSize = SIZE_OF_EFI_FILE_SYSTEM_INFO + StrSize (PrivateRoot->VolumeLabel);
1014 FileSystemInfoBuffer->Size = SIZE_OF_EFI_FILE_SYSTEM_INFO + StrSize (PrivateRoot->VolumeLabel);
1025 StrCpy ((CHAR16 *) FileSystemInfoBuffer->VolumeLabel, PrivateRoot->VolumeLabel);
1026 *BufferSize = SIZE_OF_EFI_FILE_SYSTEM_INFO + StrSize (PrivateRoot->VolumeLabel);
1029 if (*BufferSize < StrSize (PrivateRoot->VolumeLabel)) {
1030 *BufferSize = StrSize (PrivateRoot->VolumeLabel);
1034 StrCpy ((CHAR16 *) Buffer, PrivateRoot->VolumeLabel);
1035 *BufferSize = StrSize (PrivateRoot->VolumeLabel);
1104 if (BufferSize < (SIZE_OF_EFI_FILE_SYSTEM_INFO + StrSize (PrivateRoot->VolumeLabel))) {
1111 free (PrivateRoot->VolumeLabel);
1113 PrivateRoot->VolumeLabel = malloc (StrSize (NewFileSystemInfo->VolumeLabel));
1114 if (PrivateRoot->VolumeLabel == NULL) {
1118 StrCpy (PrivateRoot->VolumeLabel, NewFileSystemInfo->VolumeLabel);
1128 if (BufferSize < StrSize (PrivateRoot->VolumeLabel)) {
1133 StrCpy (PrivateRoot->VolumeLabel, (CHAR16 *) Buffer);
1495 Private->VolumeLabel = malloc (StrSize (L"EFI_EMULATED"));
1496 if (Private->VolumeLabel == NULL) {
1501 StrCpy (Private->VolumeLabel, L"EFI_EMULATED");
1535 if (Private->VolumeLabel != NULL) {
1536 free (Private->VolumeLabel);