HomeSort by relevance Sort by last modified time
    Searched refs:DbPath (Results 1 - 7 of 7) sorted by null

  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Database.py 38 # @param DbPath: A string for the path of the ECC database
45 def __init__(self, DbPath):
46 if os.path.exists(DbPath):
47 os.remove(DbPath)
48 self.Conn = sqlite3.connect(DbPath, isolation_level = 'DEFERRED')
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
Database.py 49 # @param DbPath: The file path of the database
51 def __init__(self, DbPath):
52 self.DbPath = DbPath
81 if os.path.exists(self.DbPath):
82 os.remove(self.DbPath)
83 self.Conn = sqlite3.connect(self.DbPath, isolation_level = 'DEFERRED')
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
Database.py 46 # @param DbPath: A string for the path of the ECC database
53 def __init__(self, DbPath):
54 self.DbPath = DbPath
80 if os.path.exists(self.DbPath):
81 os.remove(self.DbPath)
82 self.Conn = sqlite3.connect(self.DbPath, isolation_level = 'DEFERRED')
  /build/soong/finder/
finder_test.go 75 original.DbPath,
766 cacheText := read(t, finder.DbPath, filesystem)
815 cacheReader, err := filesystem.Open(finder.DbPath)
824 filesystem.WriteFile(finder.DbPath, cacheData, 0777)
    [all...]
finder.go 143 DbPath string
166 logger Logger, dbPath string) (f *Finder, err error) {
167 return newImpl(cacheParams, filesystem, logger, dbPath, defaultNumThreads)
172 logger Logger, dbPath string, numThreads int) (f *Finder, err error) {
192 DbPath: dbPath,
839 dbPath := f.DbPath
842 reader, err := f.filesystem.Open(dbPath)
850 f.verbosef("Database header matches, will attempt to use database %v\n", f.DbPath)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
IpiDb.py 39 # @param DbPath: A string for the path of the database
43 def __init__(self, DbPath, Workspace):
44 Dir = os.path.dirname(DbPath)
47 self.Conn = sqlite3.connect(DbPath, isolation_level='DEFERRED')
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
WorkspaceDatabase.py     [all...]

Completed in 101 milliseconds