Lines Matching refs:objectHandle

60     void setImportFileBytes(int deviceId, int objectHandle, byte[] bytes) {
61 mImportFileBytes.put(pack(deviceId, objectHandle), bytes);
64 byte[] getImportFileBytes(int deviceId, int objectHandle) {
65 return mImportFileBytes.get(pack(deviceId, objectHandle));
68 void setThumbnail(int deviceId, int objectHandle, byte[] bytes) {
69 mThumbnailBytes.put(pack(deviceId, objectHandle), bytes);
72 void setObjectSizeLong(int deviceId, int objectHandle, int format, long value) {
73 mObjectSizeLongs.put(pack(deviceId, objectHandle, format), value);
118 MtpObjectInfo getObjectInfo(int deviceId, int objectHandle) throws IOException {
119 final String key = pack(deviceId, objectHandle);
138 void importFile(int deviceId, int objectHandle, ParcelFileDescriptor target)
140 final String key = pack(deviceId, objectHandle);
177 byte[] getThumbnail(int deviceId, int objectHandle) throws IOException {
178 final String key = pack(deviceId, objectHandle);
187 void deleteDocument(int deviceId, int objectHandle) throws IOException {
188 final String key = pack(deviceId, objectHandle);
197 int getParent(int deviceId, int objectHandle) throws IOException {
198 final String key = pack(deviceId, objectHandle);
207 byte[] getObject(int deviceId, int objectHandle, int expectedSize) throws IOException {
208 return mImportFileBytes.get(pack(deviceId, objectHandle));
212 long getPartialObject(int deviceId, int objectHandle, long offset, long size, byte[] buffer)
214 final byte[] bytes = mImportFileBytes.get(pack(deviceId, objectHandle));
224 long getObjectSizeLong(int deviceId, int objectHandle, int format) throws IOException {
225 final String key = pack(deviceId, objectHandle, format);