Home
last modified time | relevance | path

Searched refs:database (Results 1 – 25 of 41) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dlogmerge.py58 database = []
66 database[len(database):] = records
67 database.sort()
69 database.reverse()
70 format_output(database)
165 def format_output(database): argument
168 database.append((None, None, None, None, None)) # Sentinel
169 for (date, working_file, rev, author, text) in database:
DREADME18 db2pickle.py Dump a database file to a pickle
52 pickle2db.py Load a pickle generated by db2pickle.py to a database
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Dxe/
DPcdDxe.uni2 // PCD DXE driver manage database contains all dynamic PCD entries and produce the implementation o…
4 // This version PCD DXE depends on the external PCD database binary file, not built in PCD data bas…
15 // PCD database is generated as the separate binary image at build time. The binary image
20 // // Introduction of PCD database //
25 // PCD database hold all dynamic type PCD information. The structure of PEI PCD
26 // database is generated by build tools according to dynamic PCD usage for
56 // - The PCD value is stored in PCD database maintained by PCD driver in boot
87 // 3, PCD database:
90 // by PCD database maintained by PEI/DXE driver.
92 // As the whole EFI BIOS boot path is divided into PEI/DXE phase, the PCD database
[all …]
DPcd.inf2 # PCD DXE driver manage database contains all dynamic PCD entries and produce the implementation of…
4 # This version PCD DXE depends on the external PCD database binary file, not built in PCD data base…
15 # PCD database is generated as the separate binary image at build time. The binary image
20 # // Introduction of PCD database //
25 # PCD database hold all dynamic type PCD information. The structure of PEI PCD
26 # database is generated by build tools according to dynamic PCD usage for
56 # - The PCD value is stored in PCD database maintained by PCD driver in boot
87 # 3, PCD database:
90 # by PCD database maintained by PEI/DXE driver.
92 # As the whole EFI BIOS boot path is divided into PEI/DXE phase, the PCD database
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Pei/
DPcdPeim.uni2 // PCD PEIM produces PCD database to manage all dynamic PCD in PEI phase and install Pcd Ppi servic…
4 // This version PCD PEIM depends on the external PCD database binary file, not built in PCD data ba…
14 // PCD database is generated as the separate binary image at build time. The binary image
19 // // Introduction of PCD database //
24 // PCD database hold all dynamic type PCD information. The structure of PEI PCD
25 // database is generated by build tools according to dynamic PCD usage for
55 // - The PCD value is stored in PCD database maintained by PCD driver in boot
86 // 3, PCD database:
89 // by PCD database maintained by PEI/DXE driver.
91 // As the whole EFI BIOS boot path is divided into PEI/DXE phase, the PCD database
[all …]
DPcd.inf2 # PCD PEIM produces PCD database to manage all dynamic PCD in PEI phase and install Pcd Ppi service.
4 # This version PCD PEIM depends on the external PCD database binary file, not built in PCD data bas…
14 # PCD database is generated as the separate binary image at build time. The binary image
19 # // Introduction of PCD database //
24 # PCD database hold all dynamic type PCD information. The structure of PEI PCD
25 # database is generated by build tools according to dynamic PCD usage for
55 # - The PCD value is stored in PCD database maintained by PCD driver in boot
86 # 3, PCD database:
89 # by PCD database maintained by PEI/DXE driver.
91 # As the whole EFI BIOS boot path is divided into PEI/DXE phase, the PCD database
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckLib/
DVarCheckLib.uni2 // Provides variable check services and database management.
4 // Provides variable check services and database management.
18 …ULE_ABSTRACT #language en-US "Provides variable check services and database management"
20 …LE_DESCRIPTION #language en-US "Provides variable check services and database management."
DVarCheckLib.inf2 # Provides variable check services and database management.
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
DVariableSmm.uni4 // This module installs SMM variable protocol into SMM protocol database,
6 // into BS protocol database, which can be used to notify the SMM Runtime
31 …otocol into SMM protocol database, which can be used by SMM driver, and installs SMM variable prot…
DVariableSmm.inf4 # This module installs SMM variable protocol into SMM protocol database,
6 # into BS protocol database, which can be used to notify the SMM Runtime
/device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/
DIpSecConfigStrings.uni57 … "%H-p (SPD|SAD|PAD)%N required.point to certain policy database.\n"
62 … " It's only supported on SPD policy database.\n"
67 … " -f Flush the entire policy database.\n"
68 … " -l List all entries for specified database.\n"
72 … "%H[options[parametes]]%N depend on the type of policy database.Type\n "
73 … " 'IpSecConfig -p'followed by the database \n"
/device/google/dragon/crash_collector/src/com/android/crashreportprovider/
DCrashReportProvider.java22 import android.database.Cursor;
23 import android.database.MatrixCursor;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dconnection.c64 PyObject* database; in pysqlite_connection_init() local
78 …&database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statem… in pysqlite_connection_init()
97 if (PyString_Check(database) || PyUnicode_Check(database)) { in pysqlite_connection_init()
98 if (PyString_Check(database)) { in pysqlite_connection_init()
99 database_utf8 = database; in pysqlite_connection_init()
102 database_utf8 = PyUnicode_AsUTF8String(database); in pysqlite_connection_init()
120 class_attr = PyObject_GetAttrString(database, "__class__"); in pysqlite_connection_init()
129 self->db = ((pysqlite_Connection*)database)->db; in pysqlite_connection_init()
131 Py_INCREF(database); in pysqlite_connection_init()
132 self->apsw_connection = database; in pysqlite_connection_init()
Dmodule.c54 PyObject* database; in module_connect() local
65 …&database, &timeout, &detect_types, &isolation_level, &check_same_thread, &factory, &cached_statem… in module_connect()
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/
DUsbKbDxe.inf6 # It initializes the keyboard layout according to info retrieved from HII database.
86 # If HII Database Protocol exists, then keyboard layout from HII database is used.
DUsbKbDxe.uni6 // It initializes the keyboard layout according to info retrieved from HII database.
30 …zes the keyboard layout according to information retrieved from the HII database. If HII cannot pr…
/device/linaro/bootloader/edk2/StdLib/Include/
Dnsswitch.h173 const char *database; member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/
DREADME30 unicode Tools used to generate unicode database files for
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/DataHubDxe/
DDataHubDxe.uni4 // The data hub is a volatile database that is intended as the major focus for the accumulation of
38 #string STR_MODULE_DESCRIPTION #language en-US "The data hub is a volatile database that i…
/device/linaro/bootloader/edk2/MdePkg/Include/Library/
DDebugLib.h379 _ASSERT (Guid already installed in database); \
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
DFrameworkHiiOnUefiHiiThunk.inf9 # This module inits HII database and installs HII protocol based on the avaliable UEFI HII protocol…
/device/generic/car/common/
Dinit.car-emulator.rc41 # Login Service will insert these accounts into the database when
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/Library/
DEdkIIGlueDebugLib.h417 _ASSERT (Guid already installed in database); \
/device/generic/mini-emulator-arm64/
Dinit.mini-emulator.rc45 # Login Service will insert these accounts into the database when
/device/generic/mini-emulator-armv7-a-neon/
Dinit.mini-emulator.rc45 # Login Service will insert these accounts into the database when

12