diff options
author | Ethan Yonker <dees_troy@teamw.in> | 2014-09-03 21:46:41 +0200 |
---|---|---|
committer | Ethan Yonker <dees_troy@teamw.in> | 2014-09-03 22:06:00 +0200 |
commit | 5e083dcc202e53f21a9b2ca786d939abed090bde (patch) | |
tree | d1f098596f1b2146722d18f8abad6f405b32bbd9 /mtp/MtpStorage.cpp | |
parent | Allow toggle of MTP debug (diff) | |
download | android_bootable_recovery-5e083dcc202e53f21a9b2ca786d939abed090bde.tar android_bootable_recovery-5e083dcc202e53f21a9b2ca786d939abed090bde.tar.gz android_bootable_recovery-5e083dcc202e53f21a9b2ca786d939abed090bde.tar.bz2 android_bootable_recovery-5e083dcc202e53f21a9b2ca786d939abed090bde.tar.lz android_bootable_recovery-5e083dcc202e53f21a9b2ca786d939abed090bde.tar.xz android_bootable_recovery-5e083dcc202e53f21a9b2ca786d939abed090bde.tar.zst android_bootable_recovery-5e083dcc202e53f21a9b2ca786d939abed090bde.zip |
Diffstat (limited to 'mtp/MtpStorage.cpp')
-rwxr-xr-x | mtp/MtpStorage.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/mtp/MtpStorage.cpp b/mtp/MtpStorage.cpp index e20dab402..c726bc651 100755 --- a/mtp/MtpStorage.cpp +++ b/mtp/MtpStorage.cpp @@ -212,7 +212,7 @@ int MtpStorage::getObjectInfo(MtpObjectHandle handle, MtpObjectInfo& info) { return 0; } } - MTPE("MtpStorage::getObjectInfo no object found, error!\n"); + // Item is not on this storage device return -1; } @@ -290,7 +290,7 @@ int MtpStorage::getObjectFilePath(MtpObjectHandle handle, MtpString& outFilePath goto end; } } - MTPE("MtpStorage::getObjectFilePath fauled to find handle: %i\n", handle); + // Item is not on this storage return -1; end: outFormat = MTP_FORMAT_ASSOCIATION; @@ -440,7 +440,6 @@ int MtpStorage::deleteFile(MtpObjectHandle handle) { goto end; } } - MTPE("MtpStorage::deleteFile deleting handle: %d FAILED\n", handle); return -1; end: if (local_parent_id) { @@ -556,7 +555,7 @@ int MtpStorage::getObjectPropertyList(MtpObjectHandle handle, uint32_t format, u } } else { - MTPE("MtpStorage::getObjectPropertyList unsupported property %x\n", property); + // Either the property is not supported or the handle is not on this storage return -1; } @@ -653,7 +652,7 @@ int MtpStorage::renameObject(MtpObjectHandle handle, std::string newName) { } } } - MTPE("MtpStorage::renameObject handle / node not found, error!\n"); + // handle not foudn on this storage return -1; } @@ -680,7 +679,7 @@ int MtpStorage::getObjectPropertyValue(MtpObjectHandle handle, MtpObjectProperty return 0; } } - MTPE("MtpStorage::getObjectPropertyValue unable to locate handle: %i\n", handle); + // handle not found on this storage return -1; } pthread_t MtpStorage::inotify(void) { |