Searched refs:volId (Results 1 – 6 of 6) sorted by relevance
/system/vold/binder/android/os/ |
D | IVoldListener.aidl | 27 void onVolumeCreated(@utf8InCpp String volId, in onVolumeCreated() argument 29 void onVolumeStateChanged(@utf8InCpp String volId, int state); in onVolumeStateChanged() argument 30 void onVolumeMetadataChanged(@utf8InCpp String volId, in onVolumeMetadataChanged() argument 32 void onVolumePathChanged(@utf8InCpp String volId, in onVolumePathChanged() argument 34 void onVolumeInternalPathChanged(@utf8InCpp String volId, in onVolumeInternalPathChanged() argument 36 void onVolumeDestroyed(@utf8InCpp String volId); in onVolumeDestroyed() argument
|
D | IVold.aidl | 44 void mount(@utf8InCpp String volId, int mountFlags, int mountUserId); in mount() argument 45 void unmount(@utf8InCpp String volId); in unmount() argument 46 void format(@utf8InCpp String volId, @utf8InCpp String fsType); in format() argument 47 void benchmark(@utf8InCpp String volId, IVoldTaskListener listener); in benchmark() argument 58 void destroyObb(@utf8InCpp String volId); in destroyObb() argument 127 void destroyStubVolume(@utf8InCpp String volId); in destroyStubVolume() argument
|
/system/vold/ |
D | VoldNativeService.cpp | 255 binder::Status VoldNativeService::mount(const std::string& volId, int32_t mountFlags, in mount() argument 258 CHECK_ARGUMENT_ID(volId); in mount() 261 auto vol = VolumeManager::Instance()->findVolume(volId); in mount() 263 return error("Failed to find volume " + volId); in mount() 282 binder::Status VoldNativeService::unmount(const std::string& volId) { in unmount() argument 284 CHECK_ARGUMENT_ID(volId); in unmount() 287 auto vol = VolumeManager::Instance()->findVolume(volId); in unmount() 289 return error("Failed to find volume " + volId); in unmount() 294 binder::Status VoldNativeService::format(const std::string& volId, const std::string& fsType) { in format() argument 296 CHECK_ARGUMENT_ID(volId); in format() [all …]
|
D | VoldNativeService.h | 55 binder::Status mount(const std::string& volId, int32_t mountFlags, int32_t mountUserId); 56 binder::Status unmount(const std::string& volId); 57 binder::Status format(const std::string& volId, const std::string& fsType); 58 binder::Status benchmark(const std::string& volId, 70 binder::Status destroyObb(const std::string& volId); 75 binder::Status destroyStubVolume(const std::string& volId);
|
D | VolumeManager.h | 123 int destroyObb(const std::string& volId); 128 int destroyStubVolume(const std::string& volId);
|
D | VolumeManager.cpp | 703 int VolumeManager::destroyObb(const std::string& volId) { in destroyObb() argument 706 if ((*i)->getId() == volId) { in destroyObb() 729 int VolumeManager::destroyStubVolume(const std::string& volId) { in destroyStubVolume() argument 732 if ((*i)->getId() == volId) { in destroyStubVolume()
|