Searched defs:FileName (Results 26 - 50 of 78) sorted by relevance

1234

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrCompiler.cpp29 IN CHAR8 *FileName,
39 PrintMessage ((CHAR8 *) "ERROR", FileName, LineNumber, MessageCode, (CHAR8 *) Text, (CHAR8 *) MsgFmt, List);
28 DebugError( IN CHAR8 *FileName, IN UINT32 LineNumber, IN UINT32 MessageCode, IN CONST CHAR8 *Text, IN CONST CHAR8 *MsgFmt, ... ) argument
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShell.h82 CHAR16 *FileName; ///< Filename to run upon successful initialization. member in struct:__anon12752
83 CHAR16 *FileOptions; ///< Options to pass to FileName.
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
H A DMainTextEditor.c360 Status = FileBufferSave (MainEditor.FileBuffer->FileName);
365 MainTitleBarRefresh (MainEditor.FileBuffer->FileName, MainEditor.FileBuffer->FileType, MainEditor.FileBuffer->ReadOnly, MainEditor.FileBuffer->FileModified, MainEditor.ScreenSize.Column, MainEditor.ScreenSize.Row, 0, 0);
389 FileBufferRead (MainEditor.FileBuffer->FileName, TRUE);
395 FileBufferRead (MainEditor.FileBuffer->FileName, TRUE);
417 FileBufferRead (MainEditor.FileBuffer->FileName, TRUE);
431 FileBufferRead (MainEditor.FileBuffer->FileName, TRUE);
1040 Status = FileBufferSave (MainEditor.FileBuffer->FileName);
1149 CHAR16 *FileName; local
1191 Str = CatSPrint (NULL, L"File to Save: [%s]", MainEditor.FileBuffer->FileName);
1236 FileName
[all...]
H A DTextEditorTypes.h71 CHAR16 *FileName; // file name current edited in editor member in struct:__anon12798
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
H A DHexEditorTypes.h88 CHAR16 *FileName; member in struct:__anon12815
H A DMainHexEditor.c229 CHAR16 *FileName; local
348 HMainEditor.BufferImage->FileImage->FileName
393 FileName = CatSPrint(NULL,
395 HMainEditor.BufferImage->FileImage->FileName
398 FileName = CatSPrint(NULL, L"%s", InputBarGetString());
401 if (FileName == NULL) {
405 if (!IsValidFileName (FileName)) {
407 SHELL_FREE_NON_NULL (FileName);
417 &FileName,
418 &HMainEditor.BufferImage->FileImage->FileName
[all...]
H A DBufferImage.c897 @param[in] FileName Pointer to the file name. OPTIONAL and ignored if not FileTypeFileBuffer.
911 IN CONST CHAR16 *FileName,
940 Status = HFileImageRead (FileName, Recover);
966 @param[in] FileName Pointer to the file name. OPTIONAL and ignored if not FileTypeFileBuffer.
978 IN CHAR16 *FileName,
1001 Status = HFileImageSave (FileName);
910 HBufferImageRead( IN CONST CHAR16 *FileName, IN CONST CHAR16 *DiskName, IN UINTN DiskOffset, IN UINTN DiskSize, IN UINTN MemOffset, IN UINTN MemSize, IN EDIT_FILE_TYPE BufferType, IN BOOLEAN Recover ) argument
977 HBufferImageSave( IN CHAR16 *FileName, IN CHAR16 *DiskName, IN UINTN DiskOffset, IN UINTN DiskSize, IN UINTN MemOffset, IN UINTN MemSize, IN EDIT_FILE_TYPE BufferType ) argument
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DUefiShellDebug1CommandsLib.c524 @param[in] FileName The filename of the file to open.
538 @retval EFI_INVALID_PARAMETER FileName was NULL.
539 @retval EFI_INVALID_PARAMETER FileName was a directory.
544 IN CONST CHAR16 *FileName,
564 if (FileName == NULL || Buffer == NULL || ReadOnly == NULL) {
571 Status = ShellOpenFileByName (FileName, &FileHandle, EFI_FILE_MODE_READ, 0);
601 Status = ShellOpenFileByName (FileName, &FileHandle, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE|EFI_FILE_MODE_CREATE, 0);
543 ReadFileIntoBuffer( IN CONST CHAR16 *FileName, OUT VOID **Buffer, OUT UINTN *BufferSize OPTIONAL, OUT BOOLEAN *ReadOnly ) argument
H A DBcfg.c44 CHAR16 *FileName; member in struct:__anon12792
703 Struct->FileName = NULL;
844 ASSERT(CurrentOperation.FileName == NULL);
845 CurrentOperation.FileName = StrnCatGrow(&CurrentOperation.FileName , NULL, ShellCommandLineGetRawValue(Package, ++ParamNumber), 0);
862 ASSERT(CurrentOperation.FileName == NULL);
863 CurrentOperation.FileName = StrnCatGrow(&CurrentOperation.FileName , NULL, ShellCommandLineGetRawValue(Package, ++ParamNumber), 0);
980 CurrentOperation.FileName,
1003 if (CurrentOperation.FileName !
[all...]
/vbox/src/VBox/Additions/WINNT/SharedFolders/driver/
H A Dinfo.c27 RtlCopyMemory((obj)->FileName, &(str).String.ucs2[0], cbLength + 2); \
362 pInfo->FileNameLength / sizeof(WCHAR), pInfo->FileName));
411 pInfo->FileNameLength / sizeof(WCHAR), pInfo->FileName));
446 pInfo->FileNameLength / sizeof(WCHAR), pInfo->FileName));
926 PUNICODE_STRING FileName = GET_ALREADY_PREFIXED_NAME_FROM_CONTEXT(RxContext); local
1008 cbToCopy += FileName->Length;
1014 pInfo->FileNameLength = FileName->Length;
1016 RtlCopyMemory(pInfo->FileName, FileName->Buffer, FileName
[all...]
H A Dvbsf.c1139 UNICODE_STRING FileName; local
1168 FileName.Buffer = pwcConnectName;
1169 FileName.Length = (USHORT)cbConnectName;
1170 FileName.MaximumLength = (USHORT)cbConnectName;
1172 Handle = vbsfOpenConnectionHandle(&FileName);
1259 UNICODE_STRING FileName; local
1282 FileName.Buffer = pwcConnectName;
1283 FileName.Length = (USHORT)cbConnectName;
1284 FileName.MaximumLength = (USHORT)cbConnectName;
1286 Handle = vbsfOpenConnectionHandle(&FileName);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UsbCredentialProviderDxe/
H A DUsbCredentialProvider.c240 Read the specified file by FileName in the Usb key and return the file size in BufferSize
244 @param FileName File to read.
256 IN CHAR16 *FileName,
321 FileName,
255 GetFileData( IN CHAR16 *FileName, OUT VOID **Buffer, OUT UINTN *BufferSize ) argument
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DSimpleFileParsing.c62 CHAR8 FileName[MAX_PATH]; member in struct:_SOURCE_FILE
227 if (mGlobals.SourceFile.FileName[0]) {
228 return mGlobals.SourceFile.FileName;
236 CHAR8 *FileName
244 FileName - name of the file to parse
252 t_strcpy (mGlobals.SourceFile.FileName, FileName);
637 fprintf (stdout, "%*cProcessing file '%s'\n", (int)NestDepth * 2, ' ', SourceFile->FileName);
638 fprintf (stdout, "Parent source file = '%s'\n", ParentSourceFile->FileName);
645 Error (NULL, 0, 3001, "Not Supported", "%s exceeeds max nesting depth (%u)", SourceFile->FileName, (unsigne
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDriver1CommandsLib/
H A DDrvCfg.c151 @param[in] FileName The filename to rwite the info to.
157 IN CONST CHAR16 *FileName
172 Status = ShellOpenFileByName(FileName, &FileHandle, EFI_FILE_MODE_READ|EFI_FILE_MODE_WRITE|EFI_FILE_MODE_CREATE, 0);
180 FileName,
239 FileName,
257 @param[in] FileName The filename to read the info from.
263 IN CONST CHAR16 *FileName
284 Status = ShellOpenFileByName(FileName, &FileHandle, EFI_FILE_MODE_READ, 0);
292 FileName,
328 FileName,
1157 CONST CHAR16 *FileName; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellInstall1CommandsLib/
H A DBcfg.c44 CHAR16 *FileName; member in struct:__anon12887
703 Struct->FileName = NULL;
844 ASSERT(CurrentOperation.FileName == NULL);
845 CurrentOperation.FileName = StrnCatGrow(&CurrentOperation.FileName , NULL, ShellCommandLineGetRawValue(Package, ++ParamNumber), 0);
862 ASSERT(CurrentOperation.FileName == NULL);
863 CurrentOperation.FileName = StrnCatGrow(&CurrentOperation.FileName , NULL, ShellCommandLineGetRawValue(Package, ++ParamNumber), 0);
980 CurrentOperation.FileName,
1003 if (CurrentOperation.FileName !
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DBdsMisc.c1231 @param FileName File name for the image
1244 IN CHAR16 *FileName,
1263 VBoxLogFlowFuncMarkVar(FileName, "%s");
1287 Status = Root->Open (Root, &ThisFile, FileName, EFI_FILE_MODE_READ, 0);
1242 BdsLibGetImageHeader( IN EFI_HANDLE Device, IN CHAR16 *FileName, OUT EFI_IMAGE_DOS_HEADER *DosHeader, OUT EFI_IMAGE_OPTIONAL_HEADER_PTR_UNION Hdr ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/
H A DFwVolWrite.c741 @param FileName The FFS File Name.
757 IN EFI_GUID *FileName,
805 FileName,
876 CopyGuid (&FileHeader->Name, FileName);
1037 @param FileName The FFS File Name.
1054 IN EFI_GUID *FileName,
1089 if ((OldFfsFileEntry == NULL) || (!CompareGuid (&OldFileHeader->Name, FileName))) {
1104 } while (!CompareGuid (&FileNameGuid, FileName));
1153 FileName,
752 FvCreateNewFile( IN FV_DEVICE *FvDevice, IN UINT8 *FfsFileBuffer, IN UINTN BufferSize, IN UINTN ActualFileSize, IN EFI_GUID *FileName, IN EFI_FV_FILETYPE FileType, IN EFI_FV_FILE_ATTRIBUTES FileAttributes ) argument
1049 FvUpdateFile( IN FV_DEVICE *FvDevice, IN UINT8 *FfsFileBuffer, IN UINTN BufferSize, IN UINTN ActualFileSize, IN EFI_GUID *FileName, IN EFI_FV_FILETYPE NewFileType, IN EFI_FV_FILE_ATTRIBUTES NewFileAttributes ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/FwVol/
H A DFwVol.c213 @param FileName File name
226 IN CONST EFI_GUID *FileName, OPTIONAL
261 // If FileHeader is not specified (NULL) or FileName is not NULL,
265 if ((*FileHeader == NULL) || (FileName != NULL)) {
354 if (FileName != NULL) {
355 if (CompareGuid (&FfsFileHeader->Name, (EFI_GUID*)FileName)) {
905 @param FileName A pointer to the name of the file to find within the firmware volume.
912 @retval EFI_INVALID_PARAMETER VolumeHandle or FileHandle or FileName was NULL.
918 IN CONST EFI_GUID *FileName,
925 if ((VolumeHandle == NULL) || (FileName
224 FindFileEx( IN CONST EFI_PEI_FV_HANDLE FvHandle, IN CONST EFI_GUID *FileName, OPTIONAL IN EFI_FV_FILETYPE SearchType, IN OUT EFI_PEI_FILE_HANDLE *FileHandle, IN OUT EFI_PEI_FV_HANDLE *AprioriFile OPTIONAL ) argument
917 PeiFfsFindFileByName( IN CONST EFI_GUID *FileName, IN EFI_PEI_FV_HANDLE VolumeHandle, OUT EFI_PEI_FILE_HANDLE *FileHandle ) argument
1254 PeiFfsFvPpiFindFileByName( IN CONST EFI_PEI_FIRMWARE_VOLUME_PPI *This, IN CONST EFI_GUID *FileName, IN EFI_PEI_FV_HANDLE *FvHandle, OUT EFI_PEI_FILE_HANDLE *FileHandle ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Pi/
H A DPiHob.h372 EFI_GUID FileName; member in struct:__anon11991
H A DPiPeiCis.h563 @param FileName A pointer to the name of the file to
572 FileName was NULL.
578 IN CONST EFI_GUID *FileName,
590 EFI_GUID FileName; member in struct:__anon11999
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/UefiPxeBcDxe/
H A DPxeBcDhcp6.c222 @param[out] FileName The pointer to the boot file name.
234 OUT UINT8 **FileName,
331 if (BootFileNameLen != 0 || FileName != NULL) {
351 *FileName = (UINT8*) BootFileName;
233 PxeBcExtractBootFileUrl( OUT UINT8 **FileName, IN OUT EFI_IPv6_ADDRESS *SrvAddr, IN CHAR8 *BootFile, IN UINT16 Length ) argument
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigImpl.h170 UINT16 *FileName; member in struct:__anon12734
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Include/Protocol/
H A DEfiShell.h32 CONST CHAR16 *FileName; ///< name of this file. member in struct:__anon12769
81 @param[in] FileName Pointer to NULL-terminated file path.
106 IN CONST CHAR16 *FileName,
134 @param[in] FileName Points to the NULL-terminated file name.
142 IN CONST CHAR16 *FileName
605 @param[in] FileName Points to the NULL-terminated UCS-2 encoded file name.
619 the FileName. FileHandle is NULL.
631 IN CONST CHAR16 *FileName,
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxFsDxe/
H A Dfsw_efi.c123 IN CHAR16 *FileName,
558 IN CHAR16 *FileName,
565 return fsw_efi_dir_open(File, NewHandle, FileName, OpenMode, Attributes);
826 IN CHAR16 *FileName,
837 Print(L"fsw_efi_dir_open: '%s'\n", FileName);
844 lookup_path.len = (int)StrLen(FileName);
846 lookup_path.data = FileName;
1077 fsw_efi_strcpy(FileInfo->FileName, &dno->name);
1092 Print(L"...returning '%s'\n", FileInfo->FileName);
556 fsw_efi_FileHandle_Open(IN EFI_FILE *This, OUT EFI_FILE **NewHandle, IN CHAR16 *FileName, IN UINT64 OpenMode, IN UINT64 Attributes) argument
824 fsw_efi_dir_open(IN FSW_FILE_DATA *File, OUT EFI_FILE **NewHandle, IN CHAR16 *FileName, IN UINT64 OpenMode, IN UINT64 Attributes) argument
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Pi/
H A DPiHob.h371 EFI_GUID FileName; member in struct:__anon15593

Completed in 158 milliseconds

1234