Home
last modified time | relevance | path

Searched refs:Table (Results 1 – 25 of 366) sorted by relevance

12345678910>>...15

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dltable.h25 LUAI_FUNC const TValue *luaH_getint (Table *t, int key);
26 LUAI_FUNC void luaH_setint (lua_State *L, Table *t, int key, TValue *value);
27 LUAI_FUNC const TValue *luaH_getstr (Table *t, TString *key);
28 LUAI_FUNC const TValue *luaH_get (Table *t, const TValue *key);
29 LUAI_FUNC TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key);
30 LUAI_FUNC TValue *luaH_set (lua_State *L, Table *t, const TValue *key);
31 LUAI_FUNC Table *luaH_new (lua_State *L);
32 LUAI_FUNC void luaH_resize (lua_State *L, Table *t, int nasize, int nhsize);
33 LUAI_FUNC void luaH_resizearray (lua_State *L, Table *t, int nasize);
34 LUAI_FUNC void luaH_free (lua_State *L, Table *t);
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
DTableQuery.py19 from Table import Table
28 class TableQuery(Table):
30 Table.__init__(self, Cursor)
31 self.Table = 'Query'
49 )""" % self.Table
50 Table.Create(self, SqlCommand)
65 % (self.Table, self.ID, Name, Modifier, Value, Model)
66 Table.Insert(self, SqlCommand)
DTableEotReport.py19 from Table import Table
31 class TableEotReport(Table):
33 Table.__init__(self, Cursor)
34 self.Table = 'Report'
56 )""" % self.Table
57 Table.Create(self, SqlCommand)
68 … % (self.Table, self.ID, ModuleID, ModuleName, ModuleGuid, SourceFileID, SourceFileFullPath, \
70 Table.Insert(self, SqlCommand)
73 SqlCommand = """select max(ID) from %s""" % self.Table
DTablePcd.py18 from Table import Table
28 class TablePcd(Table):
30 Table.__init__(self, Cursor)
31 self.Table = 'Pcd'
63 )""" % self.Table
64 Table.Create(self, SqlCommand)
87 …% (self.Table, self.ID, CName, TokenSpaceGuidCName, Token, DatumType, Model, BelongsToFile, Belong…
88 Table.Insert(self, SqlCommand)
DTableDec.py19 from Table import Table
29 class TableDec(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Dec'
66 )""" % self.Table
67 Table.Create(self, SqlCommand)
91 …% (self.Table, self.ID, Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLi…
92 Table.Insert(self, SqlCommand)
105 and Enabled > -1""" % (self.Table, Model)
DTableDsc.py19 from Table import Table
29 class TableDsc(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Dsc'
66 )""" % self.Table
67 Table.Create(self, SqlCommand)
91 …% (self.Table, self.ID, Model, Value1, Value2, Value3, Arch, BelongsToItem, BelongsToFile, StartLi…
92 Table.Insert(self, SqlCommand)
105 and Enabled > -1""" % (self.Table, Model)
DTableFdf.py19 from Table import Table
29 class TableFdf(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Fdf'
67 )""" % self.Table
68 Table.Create(self, SqlCommand)
92 …% (self.Table, self.ID, Model, Value1, Value2, Value3, Scope1, Scope2, BelongsToItem, BelongsToFil…
93 Table.Insert(self, SqlCommand)
106 and Enabled > -1""" % (self.Table, Model)
DTableIdentifier.py19 from Table import Table
28 class TableIdentifier(Table):
30 Table.__init__(self, Cursor)
31 self.Table = 'Identifier'
63 )""" % self.Table
64 Table.Create(self, SqlCommand)
87 …% (self.Table, self.ID, Modifier, Type, Name, Value, Model, BelongsToFile, BelongsToFunction, Star…
88 Table.Insert(self, SqlCommand)
DTableInf.py19 from Table import Table
29 class TableInf(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'Inf'
70 )""" % self.Table
71 Table.Create(self, SqlCommand)
97 …% (self.Table, self.ID, Model, Value1, Value2, Value3, Value4, Value5, Arch, BelongsToItem, Belong…
98 Table.Insert(self, SqlCommand)
111 and Enabled > -1""" % (self.Table, Model)
DTableFunction.py18 from Table import Table
27 class TableFunction(Table):
29 Table.__init__(self, Cursor)
30 self.Table = 'Function'
66 )""" % self.Table
67 Table.Create(self, SqlCommand)
92 …% (self.Table, self.ID, Header, Modifier, Name, ReturnStatement, StartLine, StartColumn, EndLine, …
93 Table.Insert(self, SqlCommand)
DTableDataModel.py19 from Table import Table
29 class TableDataModel(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'DataModel'
48 )""" % self.Table
49 Table.Create(self, SqlCommand)
63 …SqlCommand = """insert into %s values(%s, %s, '%s', '%s')""" % (self.Table, self.ID, CrossIndex, N…
64 Table.Insert(self, SqlCommand)
DTableFile.py18 from Table import Table
29 class TableFile(Table):
31 Table.__init__(self, Cursor)
32 self.Table = 'File'
54 )""" % self.Table
55 Table.Create(self, SqlCommand)
73 … % (self.Table, self.ID, Name, ExtName, Path, FullPath, Model, TimeStamp)
74 Table.Insert(self, SqlCommand)
100 QueryScript = "select ID from %s where FullPath = '%s'" % (self.Table, str(File))
DTable.py28 class Table(object): class
31 self.Table = ''
55 EdkLogger.verbose("\nQuery tabel %s started ..." % self.Table)
56 SqlCommand = """select * from %s""" % self.Table
62 EdkLogger.verbose("*** Total %s records in table %s ***" % (TotalCount, self.Table) )
63 EdkLogger.verbose("Query tabel %s DONE!" % self.Table)
70 SqlCommand = """drop table IF EXISTS %s""" % self.Table
72 EdkLogger.verbose("Drop tabel %s ... DONE!" % self.Table)
81 SqlCommand = """select count(ID) from %s""" % self.Table
DTableReport.py19 from Table import Table
32 class TableReport(Table):
34 Table.__init__(self, Cursor)
35 self.Table = 'Report'
56 )""" % self.Table
57 Table.Create(self, SqlCommand)
74 …% (self.Table, self.ID, ErrorID, ConvertToSqlString2(OtherMsg), BelongsToTable, BelongsToItem, Ena…
75 Table.Insert(self, SqlCommand)
85 where Enabled > -1 order by ErrorID, BelongsToItem""" % (self.Table)
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/HisiAcpiPlatformDxe/
DUpdateAcpiTable.c30 IN OUT EFI_ACPI_STATIC_RESOURCE_AFFINITY_TABLE *Table, in RemoveUnusedMemoryNode() argument
40 CurrPtr = (UINTN) &(Table->Memory[EFI_ACPI_MEMORY_AFFINITY_STRUCTURE_COUNT]); in RemoveUnusedMemoryNode()
41 NewPtr = (UINTN) &(Table->Memory[MemoryNodeNum]); in RemoveUnusedMemoryNode()
43 CopyMem ((VOID *)NewPtr, (VOID *)CurrPtr, (UINTN)Table + Table->Header.Header.Length - CurrPtr); in RemoveUnusedMemoryNode()
45 Table->Header.Header.Length -= CurrPtr - NewPtr; in RemoveUnusedMemoryNode()
53 IN OUT EFI_ACPI_STATIC_RESOURCE_AFFINITY_TABLE *Table in UpdateSrat() argument
85 Table->Memory[MemoryNode].ProximityDomain = NodeId; in UpdateSrat()
86 Table->Memory[MemoryNode].AddressBaseLow = Base; in UpdateSrat()
87 Table->Memory[MemoryNode].AddressBaseHigh = Base >> 32; in UpdateSrat()
88 Table->Memory[MemoryNode].LengthLow = Size; in UpdateSrat()
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
DMetaDataTable.py36 class Table(object): class
44 self.Table = Name
50 return self.Table
61 SqlCommand = """create temp table IF NOT EXISTS %s (%s)""" % (self.Table, self._COLUMN_)
63 SqlCommand = """create table IF NOT EXISTS %s (%s)""" % (self.Table, self._COLUMN_)
77 SqlCommand = "insert into %s values(%s, %s)" % (self.Table, self.ID, Values)
87 SqlCommand = """select * from %s""" % self.Table
98 SqlCommand = """drop table IF EXISTS %s""" % self.Table
108 SqlCommand = """select count(ID) from %s""" % self.Table
113 SqlCommand = """select max(ID) from %s""" % self.Table
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Misc/
DDebugImageInfo.c174 EFI_DEBUG_IMAGE_INFO *Table; in CoreNewDebugImageInfoEntry() local
184 Table = mDebugInfoTableHeader.EfiDebugImageInfoTable; in CoreNewDebugImageInfoEntry()
191 while (Table[Index].NormalImage != NULL) { in CoreNewDebugImageInfoEntry()
211 CopyMem (NewTable, Table, TableSize); in CoreNewDebugImageInfoEntry()
215 CoreFreePool (Table); in CoreNewDebugImageInfoEntry()
219 Table = NewTable; in CoreNewDebugImageInfoEntry()
232 Table[Index].NormalImage = AllocateZeroPool (sizeof (EFI_DEBUG_IMAGE_INFO_NORMAL)); in CoreNewDebugImageInfoEntry()
233 if (Table[Index].NormalImage != NULL) { in CoreNewDebugImageInfoEntry()
237 Table[Index].NormalImage->ImageInfoType = (UINT32) ImageInfoType; in CoreNewDebugImageInfoEntry()
238 Table[Index].NormalImage->LoadedImageProtocolInstance = LoadedImage; in CoreNewDebugImageInfoEntry()
[all …]
/device/linaro/bootloader/OpenPlatformPkg/Platforms/AMD/Styx/AcpiTables/
DDsdt.c162 AML_OFFSET_TABLE_ENTRY *Table; in DsdtHeader() local
169 Table = &DSDT_SEATTLE__OffsetTable[0]; in DsdtHeader()
170 while (Table->Pathname) { in DsdtHeader()
171 if (AsciiStrCmp(Table->Pathname, "_SB_.ETH0._DSD") == 0) { in DsdtHeader()
172 OverrideMacAddr ((UINT8 *)&AmlCode[Table->Offset], PcdGet64 (PcdEthMacA)); in DsdtHeader()
174 else if (AsciiStrCmp(Table->Pathname, "_SB_.ETH1._DSD") == 0) { in DsdtHeader()
175 OverrideMacAddr ((UINT8 *)&AmlCode[Table->Offset], PcdGet64 (PcdEthMacB)); in DsdtHeader()
177 else if (AsciiStrCmp(Table->Pathname, "_SB_.AHC1._STA") == 0) { in DsdtHeader()
178 OverrideStatus ((UINT8 *)&AmlCode[Table->Offset], in DsdtHeader()
181 else if (AsciiStrCmp(Table->Pathname, "_SB_.GIO2._STA") == 0) { in DsdtHeader()
[all …]
/device/linaro/bootloader/edk2/MdePkg/Library/DxeServicesTableLib/
DDxeServicesTableLib.uni2 // Instance of DXE Services Table Library using EFI Configuration Table.
4 // DXE Services Table Library that retrieves a pointer to the DXE Services
5 // Table from the Configuration Table in the EFI System Table.
19 #string STR_MODULE_ABSTRACT #language en-US "Uses EFI Configuration Table"
21 …en-US "DXE Services Table Library retrieves a pointer to the DXE Services Table from the Configura…
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
DMetaDataTable.py36 class Table(object): class
44 self.Table = Name
50 return self.Table
61 SqlCommand = """create temp table IF NOT EXISTS %s (%s)""" % (self.Table, self._COLUMN_)
63 SqlCommand = """create table IF NOT EXISTS %s (%s)""" % (self.Table, self._COLUMN_)
77 SqlCommand = "insert into %s values(%s, %s)" % (self.Table, self.ID, Values)
87 SqlCommand = """select * from %s""" % self.Table
98 SqlCommand = """drop table IF EXISTS %s""" % self.Table
111 SqlCommand = """select count(ID) from %s""" % self.Table
116 SqlCommand = """select max(ID) from %s""" % self.Table
[all …]
/device/linaro/bootloader/edk2/BaseTools/UserManuals/
DUtilityManPage_template.rtf42 Normal Table;}}{\*\rsidtbl \rsid5246601\rsid11936374}{\mmathPr\mmathFont34\mbrkBin0\mbrkBinSub0\msm…
168 …dlocked0 HTML Variable;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Normal Table;\lsdsemihidden1 \l…
169 …dunhideused1 \lsdlocked0 Outline List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 1;
170Table Simple 2;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Simple 3;\lsdsemihidden1 \lsdunhi…
171Table Classic 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Classic 4;\lsdsemihidden1 \lsdun…
172Table Colorful 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 1;\lsdsemihidden1 \lsdu…
173Table Columns 4;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Columns 5;\lsdsemihidden1 \lsdun…
174Table Grid 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 4;\lsdsemihidden1 \lsdunhideus…
175Table Grid 7;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table Grid 8;\lsdsemihidden1 \lsdunhideus…
176Table List 3;\lsdsemihidden1 \lsdunhideused1 \lsdlocked0 Table List 4;\lsdsemihidden1 \lsdunhideus…
[all …]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/Acpi/AcpiSupportDxe/
DAcpiSupportAcpiSupportProtocol.c43 IN VOID *Table,
115 OUT VOID **Table, in GetAcpiTable() argument
131 ASSERT (Table); in GetAcpiTable()
161 *Table = AllocateCopyPool (CurrentTable->Table->Length, CurrentTable->Table); in GetAcpiTable()
162 ASSERT (*Table); in GetAcpiTable()
187 IN VOID *Table OPTIONAL, in SetAcpiTable()
215 if (Table == NULL) { in SetAcpiTable()
224 Status = AddTableToList (AcpiSupportInstance, Table, Checksum, Version, Handle); in SetAcpiTable()
227 if (Table != NULL) { in SetAcpiTable()
250 Status = AddTableToList (AcpiSupportInstance, Table, Checksum, Version, Handle); in SetAcpiTable()
[all …]
/device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
DIScsiIbft.c53 IN EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_HEADER *Table in IScsiInitControlSection() argument
59 Control = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_CONTROL_STRUCTURE *) (Table + 1); in IScsiInitControlSection()
128 IN EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_HEADER *Table, in IScsiFillInitiatorSection() argument
135 Control = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_CONTROL_STRUCTURE *) (Table + 1); in IScsiFillInitiatorSection()
143 Control->InitiatorOffset = (UINT16) ((UINTN) Initiator - (UINTN) Table); in IScsiFillInitiatorSection()
157 Initiator->IScsiNameOffset = (UINT16) ((UINTN) *Heap - (UINTN) Table); in IScsiFillInitiatorSection()
197 IN EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_HEADER *Table, in IScsiFillNICAndTargetSections() argument
217 Control = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_CONTROL_STRUCTURE *) (Table + 1); in IScsiFillNICAndTargetSections()
218 Nic = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_NIC_STRUCTURE *) ((UINTN) Table + in IScsiFillNICAndTargetSections()
342 *SectionOffset = (UINT16) ((UINTN) Nic - (UINTN) Table); in IScsiFillNICAndTargetSections()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/IScsiDxe/
DIScsiIbft.c54 IN EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_HEADER *Table, in IScsiInitControlSection() argument
61 Control = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_CONTROL_STRUCTURE *) (Table + 1); in IScsiInitControlSection()
116 IN EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_HEADER *Table, in IScsiFillInitiatorSection() argument
128 Control = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_CONTROL_STRUCTURE *) (Table + 1); in IScsiFillInitiatorSection()
135 Control->InitiatorOffset = (UINT16) ((UINTN) Initiator - (UINTN) Table); in IScsiFillInitiatorSection()
162 Initiator->IScsiNameOffset = (UINT16) ((UINTN) *Heap - (UINTN) Table); in IScsiFillInitiatorSection()
253 IN EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_HEADER *Table, in IScsiFillNICAndTargetSections() argument
276 Control = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_CONTROL_STRUCTURE *) (Table + 1); in IScsiFillNICAndTargetSections()
277 Nic = (EFI_ACPI_ISCSI_BOOT_FIRMWARE_TABLE_NIC_STRUCTURE *) ((UINTN) Table + in IScsiFillNICAndTargetSections()
338 *SectionOffset = (UINT16) ((UINTN) Nic - (UINTN) Table); in IScsiFillNICAndTargetSections()
[all …]
/device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
DLegacyTable.c132 EFI_ACPI_DESCRIPTION_HEADER *Table; in ScanTableInRSDT() local
140 Table = (EFI_ACPI_DESCRIPTION_HEADER*)((UINTN)(*EntryPtr)); in ScanTableInRSDT()
141 if (Table->Signature == Signature) { in ScanTableInRSDT()
142 *FoundTable = Table; in ScanTableInRSDT()
161 EFI_ACPI_DESCRIPTION_HEADER *Table; in ScanTableInXSDT() local
170 Table = (EFI_ACPI_DESCRIPTION_HEADER*)((UINTN)(EntryPtr)); in ScanTableInXSDT()
171 if (Table->Signature == Signature) { in ScanTableInXSDT()
172 *FoundTable = Table; in ScanTableInXSDT()
196 if ((int)Hob->Acpi20.Table != -1) { in FindAcpiPtr()
197 Rsdp = (EFI_ACPI_3_0_ROOT_SYSTEM_DESCRIPTION_POINTER *)(UINTN)Hob->Acpi20.Table; in FindAcpiPtr()
[all …]

12345678910>>...15