Searched defs:dbName (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Gallery2/src/com/android/photos/data/
H A DPhotoDatabase.java94 public PhotoDatabase(Context context, String dbName, int dbVersion) { argument
95 super(context, dbName, null, dbVersion);
98 public PhotoDatabase(Context context, String dbName) { argument
99 super(context, dbName, null, DB_VERSION);
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DFileCache.java74 public static void deleteFiles(Context context, File rootDir, String dbName) { argument
76 context.getDatabasePath(dbName).delete();
89 public FileCache(Context context, File rootDir, String dbName, long capacity) { argument
92 mDbHelper = new DatabaseHelper(context, dbName);
289 public DatabaseHelper(Context context, String dbName) { argument
290 super(context, dbName, null, DATABASE_VERSION);

Completed in 149 milliseconds