void MtpServer::addStorage(MtpStorage* storage) { android::Mutex::Autolock autoLock(mMutex); MTPD("addStorage(): storage: %x\n", storage); if (getStorage(storage->getStorageID()) != NULL) { MTPE("MtpServer::addStorage Storage for storage ID %i already exists.\n", storage->getStorageID()); return; } mDatabase->createDB(storage, storage->getStorageID()); mStorages.push(storage); sendStoreAdded(storage->getStorageID()); }
void MtpServer::addStorage(MtpStorage* storage) { Mutex::Autolock autoLock(mMutex); mStorages.push(storage); sendStoreAdded(storage->getStorageID()); }