Home
last modified time | relevance | path

Searched refs:getStorageRoot (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/media/tests/MtpTests/src/android/mtp/
DMtpStorageManagerTest.java179 MtpStorageManager.MtpObject obj = manager.getStorageRoot(mainMtpStorage.getStorageId()); in testMtpObjectGetNameRoot()
197 MtpStorageManager.MtpObject obj = manager.getStorageRoot(mainMtpStorage.getStorageId()); in testMtpObjectGetIdRoot()
215 MtpStorageManager.MtpObject obj = manager.getStorageRoot(mainMtpStorage.getStorageId()); in testMtpObjectIsDirTrue()
277 manager.getStorageRoot(mainMtpStorage.getStorageId())); in testMtpObjectGetParent()
288 manager.getStorageRoot(mainMtpStorage.getStorageId())); in testMtpObjectGetRoot()
333 Assert.assertNotNull(manager.getStorageRoot(mainMtpStorage.getStorageId())); in testAddMtpStorage()
347 Assert.assertNull(manager.getStorageRoot(secondaryMtpStorage.getStorageId())); in testRemoveMtpStorage()
401 MtpStorageManager.MtpObject obj = manager.getStorageRoot(mainMtpStorage.getStorageId()); in testGetStorageRoot()
603 int id = manager.beginSendObject(manager.getStorageRoot(mainMtpStorage.getStorageId()), in testSendObjectSuccess()
622 int id = manager.beginSendObject(manager.getStorageRoot(mainMtpStorage.getStorageId()), in testSendObjectSuccessDir()
[all …]
/frameworks/base/media/java/android/mtp/
DMtpDatabase.java405 parent == 0 ? mManager.getStorageRoot(storageId) : mManager.getObject(parent); in beginSendObject()
604 mManager.getStorageRoot(newStorage) : mManager.getObject(newParent); in beginMoveObject()
616 mManager.getStorageRoot(oldStorage) : mManager.getObject(oldParent); in endMoveObject()
618 mManager.getStorageRoot(newStorage) : mManager.getObject(newParent); in endMoveObject()
674 mManager.getStorageRoot(newStorage) : mManager.getObject(newParent); in beginCopyObject()
DMtpStorageManager.java429 removeObjectFromCache(getStorageRoot(storage.getStorageId()), true, true); in removeMtpStorage()
490 public MtpObject getStorageRoot(int id) { in getStorageRoot() method in MtpStorageManager
532 MtpObject obj = parent == 0 ? getStorageRoot(storageId) : getObject(parent); in getObjects()