Searched refs:SectionName (Results 1 - 21 of 21) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DShellManParser.c130 CHAR16 *SectionName; local
187 SectionName = TempString;
188 SectionLen = StrLen(SectionName);
189 SectionName = StrStr(Sections, SectionName);
190 if (SectionName == NULL) {
193 if (*(SectionName + SectionLen) == CHAR_NULL || *(SectionName + SectionLen) == L',') {
264 CHAR16 *SectionName; local
320 for ( SectionName
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Xml/
H A DIniToXml.py179 # @param SectionName: SectionName
181 def ValidateValues(Key, Value, SectionName):
182 if SectionName == 'DistributionHeader':
188 return Valid, ST.ERR_VALUE_INVALID % (Key, SectionName)
192 return Valid, ST.ERR_VALUE_INVALID % (Key, SectionName)
326 SectionName = ''
339 SectionName = Line[1:-1].strip()
340 if SectionName not in SectionMap:
341 IniParseError(ST.ERR_SECTION_NAME_INVALID % SectionName,
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/GenMetaFile/
H A DGenDecFile.py323 SectionName = 'UserExtensions'
328 SectionName += '.' + UserId
330 SectionName += '.' + '"' + UserExtension.GetIdentifier() + '"'
332 SectionList.append(SectionName)
335 SectionList.append(SectionName + '.' + Arch)
336 SectionName = ', '.join(SectionList)
337 SectionName = ''.join(['[', SectionName, ']\n'])
338 Content += '\n\n' + SectionName + Statement
H A DGenInfFile.py832 def GenSpecialSections(ObjectList, SectionName):
847 if SectionName == 'Hob':
849 elif SectionName == 'Event':
851 elif SectionName == 'BootMode':
854 assert(SectionName)
883 SectionContent = GenSection(SectionName, NewSectionDict)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenSec/
H A DGenSec.c921 CHAR8 *SectionName; local
943 SectionName = NULL;
987 SectionName = argv[1];
988 if (SectionName == NULL) {
1201 VerboseMsg ("Section type is %s", SectionName);
1202 if (SectionName == NULL) {
1207 } else if (stricmp (SectionName, mSectionTypeName[EFI_SECTION_COMPRESSION]) == 0) {
1223 } else if (stricmp (SectionName, mSectionTypeName[EFI_SECTION_GUID_DEFINED]) == 0) {
1253 } else if (stricmp (SectionName, mSectionTypeName[EFI_SECTION_PE32]) == 0) {
1255 } else if (stricmp (SectionName, mSectionTypeNam
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
H A DParseUpdateProfile.c379 // SectionName, add a trailing '\0'
476 @param SectionName Section name.
487 IN UINT8 *SectionName,
495 if (AsciiStrCmp ((CONST CHAR8 *) Section->ptrSection, (CONST CHAR8 *) SectionName) == 0) {
944 CHAR8 *SectionName; local
1018 SectionName = Value;
1026 (UINT8 *) SectionName,
1049 (UINT8 *) SectionName,
1067 (UINT8 *) SectionName,
1091 (UINT8 *) SectionName,
485 UpdateGetProfileString( IN SECTION_ITEM *Section, IN UINT8 *SectionName, IN UINT8 *EntryName, OUT UINT8 **EntryValue ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DBis.h369 @param SectionName An ASCII string giving the section name in the
396 IN EFI_BIS_DATA *SectionName,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/
H A DParsing.py714 # @param SectionName: DEFINE section name
718 def ParseDefine(LineValue, StartLine, Table, FileID, SectionName, \
721 SectionName))
948 # @param SectionName: indicate the name of the section, details refer to
955 def GenSection(SectionName, SectionDict, SplitArch=True):
959 if SectionAttrs and SectionName != 'Defines' and SectionAttrs.strip().upper() != DataType.TAB_ARCH_COMMON:
963 if SectionName != 'UserExtensions':
969 Section = '[' + SectionName + '.' + (', ' + SectionName + '.').join(ArchList) + ']'
971 Section = '[' + SectionName
[all...]
H A DString.py522 # @param SectionName: Used for error report
526 def CheckFileType(CheckFilename, ExtName, ContainerFilename, SectionName, Line, LineNo=-1):
533 ErrorMsg = ST.ERR_SECTIONNAME_INVALID % (SectionName, CheckFilename, ExtName)
549 # @param SectionName: Used for error report
553 def CheckFileExist(WorkspaceDir, CheckFilename, ContainerFilename, SectionName, Line, LineNo=-1):
561 ErrorMsg = ST.ERR_CHECKFILE_NOTFOUND % (CheckFile, SectionName)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Parser/
H A DDecParser.py89 # @param Scope: Format: [[SectionName, Arch], ...].
910 SectionName = ItemList[0]
911 if SectionName not in self._SectionParser:
912 self._LoggerError(ST.ERR_DECPARSE_SECTION_UNKNOW % SectionName)
914 if SectionName not in SectionNames:
915 SectionNames.append(SectionName)
919 # SectionName.Arch except UserExtention
937 if [SectionName, Str1] not in self._RawData.CurrentScope:
938 self._RawData.CurrentScope.append([SectionName, Str1])
H A DInfParser.py622 def _ConvertSecNameToType(SectionName):
624 if SectionName.upper() not in gINF_SECTION_DEF.keys():
627 SectionType = gINF_SECTION_DEF[SectionName.upper()]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DString.py612 # @param SectionName: Used for error report
617 def CheckFileType(CheckFilename, ExtName, ContainerFilename, SectionName, Line, LineNo= -1):
624 ErrorMsg = "Invalid %s. '%s' is found, but '%s' file is needed" % (SectionName, CheckFilename, ExtName)
639 # @param SectionName: Used for error report
644 def CheckFileExist(WorkspaceDir, CheckFilename, ContainerFilename, SectionName, Line, LineNo= -1):
652 ErrorMsg = "Can't find file '%s' defined in section '%s'" % (CheckFile, SectionName)
H A DDscClassObject.py919 def ParseInclude(self, LineValue, StartLine, Table, FileID, Filename, SectionName, Model, Arch):
920 EdkLogger.debug(EdkLogger.DEBUG_2, "!include statement '%s' found in section %s" % (LineValue, SectionName))
921 SectionModel = Section[SectionName.upper()]
933 def ParseDefine(self, LineValue, StartLine, Table, FileID, Filename, SectionName, Model, Arch):
934 EdkLogger.debug(EdkLogger.DEBUG_2, "DEFINE statement '%s' found in section %s" % (LineValue, SectionName))
935 SectionModel = Section[SectionName.upper()]
946 def ParseDefinesSection(self, LineValue, StartLine, Table, FileID, Filename, SectionName, Model, Arch):
947 EdkLogger.debug(EdkLogger.DEBUG_2, "Parse '%s' found in section %s" % (LineValue, SectionName))
950 RaiseParserError(LineValue, SectionName, Filename, '', StartLine)
H A DMigrationUtilities.py375 # Return the content of section named SectionName.
378 # @param SectionName The name of the section.
384 def GetSection(SectionName, Method, ObjectList):
404 Section += "[%s.%s]\n%s\n" % (SectionName, Arch, SectionArch)
H A DFdfParserLite.py2974 SectionName = self.__Token
2976 if SectionName not in ("COMPAT16", "PE32", "PIC", "TE", "FV_IMAGE", "RAW", "DXE_DEPEX",\
2978 raise Warning("Unknown leaf section name '%s'" % SectionName, self.FileName, self.CurrentLineNumber)
2990 if self.__Token == 'Auto' and (not SectionName == 'PE32') and (not SectionName == 'TE'):
2998 Rule.SectionType = SectionName
3024 SectionName = self.__Token
3026 if SectionName not in ("COMPAT16", "PE32", "PIC", "TE", "FV_IMAGE", "RAW", "DXE_DEPEX",\
3031 if SectionName == "FV_IMAGE":
3081 EfiSectionObj.SectionType = SectionName
[all...]
H A DParsing.py795 def ParseDefine(LineValue, StartLine, Table, FileID, Filename, SectionName, SectionModel, Arch):
796 EdkLogger.debug(EdkLogger.DEBUG_2, "DEFINE statement '%s' found in section %s" % (LineValue, SectionName))
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VolInfo/
H A DVolInfo.c1228 CHAR8 *SectionName; local
1267 SectionName = SectionNameToStr (Type);
1269 printf (" Type: %s\n Size: 0x%08X\n", SectionName, (unsigned) SectionLength);
1270 free (SectionName);
/vbox/src/VBox/Additions/WINNT/Installer/
H A DVBoxGuestDrvInst.cpp168 DriverInfoDetailData.SectionName);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DFdfParser.py3375 SectionName = self.__Token
3377 if SectionName not in ("COMPAT16", "PE32", "PIC", "TE", "FV_IMAGE", "RAW", "DXE_DEPEX",\
3379 raise Warning("Unknown leaf section name '%s'" % SectionName, self.FileName, self.CurrentLineNumber)
3392 if self.__Token == 'Auto' and (not SectionName == 'PE32') and (not SectionName == 'TE'):
3403 Rule.SectionType = SectionName
3431 SectionName = self.__Token
3433 if SectionName not in ("COMPAT16", "PE32", "PIC", "TE", "FV_IMAGE", "RAW", "DXE_DEPEX",\
3438 if SectionName == "FV_IMAGE":
3488 EfiSectionObj.SectionType = SectionName
[all...]
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dsetupapi.h545 CHAR SectionName[LINE_LEN]; member in struct:_SP_DRVINFO_DETAIL_DATA_A
558 WCHAR SectionName[LINE_LEN]; member in struct:_SP_DRVINFO_DETAIL_DATA_W
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dsetupapi.h544 CHAR SectionName[LINE_LEN]; member in struct:_SP_DRVINFO_DETAIL_DATA_A
557 WCHAR SectionName[LINE_LEN]; member in struct:_SP_DRVINFO_DETAIL_DATA_W

Completed in 148 milliseconds