Searched refs:inMemoryStorage (Results 1 – 2 of 2) sorted by relevance
/packages/services/Car/service/src/com/android/car/remoteaccess/ |
D | RemoteAccessStorage.java | 49 RemoteAccessStorage(Context context, SystemInterface systemInterface, boolean inMemoryStorage) { in RemoteAccessStorage() argument 51 systemInterface.getSystemCarDir().getAbsolutePath(), inMemoryStorage); in RemoteAccessStorage() 261 private static String getName(String systemCarDirPath, boolean inMemoryStorage) { in getName() argument 262 return inMemoryStorage ? null : new File(systemCarDirPath, DATABASE_NAME) in getName() 266 RemoteAccessDbHelper(Context context, String systemCarDirPath, boolean inMemoryStorage) { in RemoteAccessDbHelper() argument 268 getName(systemCarDirPath, inMemoryStorage), /* factory= */ null, in RemoteAccessDbHelper()
|
D | CarRemoteAccessService.java | 410 boolean inMemoryStorage) { in CarRemoteAccessService() argument 421 new RemoteAccessStorage(context, systemInterface, inMemoryStorage); in CarRemoteAccessService()
|