Home
last modified time | relevance | path

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

12345678910>>...13

/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
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)
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)
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/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/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/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/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 …]
/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/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
DAcpiTableProtocol.c43 IN VOID *Table,
429 IN VOID *Table, in AddTableToList() argument
448 ASSERT (Table); in AddTableToList()
465 CurrentTableSignature = ((EFI_ACPI_COMMON_HEADER *) Table)->Signature; in AddTableToList()
466 CurrentTableSize = ((EFI_ACPI_COMMON_HEADER *) Table)->Length; in AddTableToList()
523 CurrentTableList->Table = (EFI_ACPI_COMMON_HEADER *) (UINTN) CurrentTableList->PageAddress; in AddTableToList()
529 CopyMem (CurrentTableList->Table, Table, CurrentTableSize); in AddTableToList()
567 … AcpiTableInstance->Fadt1 = (EFI_ACPI_1_0_FIXED_ACPI_DESCRIPTION_TABLE *) CurrentTableList->Table; in AddTableToList()
605 … AcpiTableInstance->Fadt3 = (EFI_ACPI_3_0_FIXED_ACPI_DESCRIPTION_TABLE *) CurrentTableList->Table; in AddTableToList()
676 CurrentTableList->Table, in AddTableToList()
[all …]
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Acpi/DxeSmm/SmmPowerManagement/
DPpm.c77 EFI_ACPI_DESCRIPTION_HEADER *Table; in PpmPatchFadtTable() local
104 Table = NULL; in PpmPatchFadtTable()
105 Status = gBS->AllocatePool (EfiBootServicesData, CurrentTable->Length, (VOID **) &Table); in PpmPatchFadtTable()
106 ASSERT (Table != NULL); in PpmPatchFadtTable()
107 CopyMem (Table, CurrentTable, CurrentTable->Length); in PpmPatchFadtTable()
109 FadtPointer = (EFI_ACPI_3_0_FIXED_ACPI_DESCRIPTION_TABLE*) Table; in PpmPatchFadtTable()
126 ((EFI_ACPI_SDT_HEADER *)Table)->Checksum = 0; in PpmPatchFadtTable()
127 ((EFI_ACPI_SDT_HEADER *)Table)->Checksum = in PpmPatchFadtTable()
128 CalculateCheckSum8 ((VOID *)Table, Table->Length); in PpmPatchFadtTable()
135 Table, in PpmPatchFadtTable()
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DParsing.py25 def ParseDefineMacro2(Table, RecordSets, GlobalMacro): argument
32 and Enabled > -1""" % (Table.Table, MODEL_META_DATA_DEFINE)
33 RecordSet = Table.Exec(SqlCommand)
55 def ParseDefineMacro(Table, GlobalMacro): argument
62 and Enabled > -1""" % (Table.Table, MODEL_META_DATA_DEFINE)
63 RecordSet = Table.Exec(SqlCommand)
91 and Enabled > -1""" % (Table.Table, MODEL_META_DATA_DEFINE)
92 FoundRecords = Table.Exec(SqlCommand)
96 … where ID = %s""" % (Table.Table, ConvertToSqlString2(NewValue), FoundRecord[0])
97 Table.Exec(SqlCommand)
[all …]

12345678910>>...13