| 110 | } |
| 111 | |
| 112 | std::string PlatformSpecificTools::getBackupFilePath( |
| 113 | std::string backupID, |
| 114 | bool isAttachments, |
| 115 | bool isVersion) { |
| 116 | std::string path; |
| 117 | NativeAndroidAccessProvider::runTask( |
| 118 | [&path, backupID, isAttachments, isVersion]() { |
| 119 | path = PlatformSpecificToolsJavaClass::getBackupFilePath( |
| 120 | backupID, isAttachments, isVersion); |
| 121 | }); |
| 122 | return path; |
| 123 | } |
| 124 | |
| 125 | std::string PlatformSpecificTools::getBackupLogFilePath( |
| 126 | std::string backupID, |
nothing calls this directly
no test coverage detected