• Home
  • Raw
  • Download

Lines Matching refs:objectInfo

236 void fill_jobject_from_object_info(JNIEnv* env, jobject object, MtpObjectInfo* objectInfo) {  in fill_jobject_from_object_info()  argument
237 if (objectInfo->mHandle) in fill_jobject_from_object_info()
238 env->SetIntField(object, field_objectInfo_handle, objectInfo->mHandle); in fill_jobject_from_object_info()
239 if (objectInfo->mStorageID) in fill_jobject_from_object_info()
240 env->SetIntField(object, field_objectInfo_storageId, objectInfo->mStorageID); in fill_jobject_from_object_info()
241 if (objectInfo->mFormat) in fill_jobject_from_object_info()
242 env->SetIntField(object, field_objectInfo_format, objectInfo->mFormat); in fill_jobject_from_object_info()
243 if (objectInfo->mProtectionStatus) in fill_jobject_from_object_info()
244 env->SetIntField(object, field_objectInfo_protectionStatus, objectInfo->mProtectionStatus); in fill_jobject_from_object_info()
245 if (objectInfo->mCompressedSize) in fill_jobject_from_object_info()
246 env->SetIntField(object, field_objectInfo_compressedSize, objectInfo->mCompressedSize); in fill_jobject_from_object_info()
247 if (objectInfo->mThumbFormat) in fill_jobject_from_object_info()
248 env->SetIntField(object, field_objectInfo_thumbFormat, objectInfo->mThumbFormat); in fill_jobject_from_object_info()
249 if (objectInfo->mThumbCompressedSize) { in fill_jobject_from_object_info()
251 objectInfo->mThumbCompressedSize); in fill_jobject_from_object_info()
253 if (objectInfo->mThumbPixWidth) in fill_jobject_from_object_info()
254 env->SetIntField(object, field_objectInfo_thumbPixWidth, objectInfo->mThumbPixWidth); in fill_jobject_from_object_info()
255 if (objectInfo->mThumbPixHeight) in fill_jobject_from_object_info()
256 env->SetIntField(object, field_objectInfo_thumbPixHeight, objectInfo->mThumbPixHeight); in fill_jobject_from_object_info()
257 if (objectInfo->mImagePixWidth) in fill_jobject_from_object_info()
258 env->SetIntField(object, field_objectInfo_imagePixWidth, objectInfo->mImagePixWidth); in fill_jobject_from_object_info()
259 if (objectInfo->mImagePixHeight) in fill_jobject_from_object_info()
260 env->SetIntField(object, field_objectInfo_imagePixHeight, objectInfo->mImagePixHeight); in fill_jobject_from_object_info()
261 if (objectInfo->mImagePixDepth) in fill_jobject_from_object_info()
262 env->SetIntField(object, field_objectInfo_imagePixDepth, objectInfo->mImagePixDepth); in fill_jobject_from_object_info()
263 if (objectInfo->mParent) in fill_jobject_from_object_info()
264 env->SetIntField(object, field_objectInfo_parent, objectInfo->mParent); in fill_jobject_from_object_info()
265 if (objectInfo->mAssociationType) in fill_jobject_from_object_info()
266 env->SetIntField(object, field_objectInfo_associationType, objectInfo->mAssociationType); in fill_jobject_from_object_info()
267 if (objectInfo->mAssociationDesc) in fill_jobject_from_object_info()
268 env->SetIntField(object, field_objectInfo_associationDesc, objectInfo->mAssociationDesc); in fill_jobject_from_object_info()
269 if (objectInfo->mSequenceNumber) in fill_jobject_from_object_info()
270 env->SetIntField(object, field_objectInfo_sequenceNumber, objectInfo->mSequenceNumber); in fill_jobject_from_object_info()
271 if (objectInfo->mName) in fill_jobject_from_object_info()
272 env->SetObjectField(object, field_objectInfo_name, env->NewStringUTF(objectInfo->mName)); in fill_jobject_from_object_info()
273 if (objectInfo->mDateCreated) in fill_jobject_from_object_info()
274 env->SetLongField(object, field_objectInfo_dateCreated, objectInfo->mDateCreated * 1000LL); in fill_jobject_from_object_info()
275 if (objectInfo->mDateModified) { in fill_jobject_from_object_info()
277 objectInfo->mDateModified * 1000LL); in fill_jobject_from_object_info()
279 if (objectInfo->mKeywords) { in fill_jobject_from_object_info()
281 env->NewStringUTF(objectInfo->mKeywords)); in fill_jobject_from_object_info()
515 MtpObjectInfo* objectInfo = device->getObjectInfo(objectID); in android_mtp_MtpDevice_get_object_info() local
516 if (!objectInfo) in android_mtp_MtpDevice_get_object_info()
521 delete objectInfo; in android_mtp_MtpDevice_get_object_info()
525 fill_jobject_from_object_info(env, info, objectInfo); in android_mtp_MtpDevice_get_object_info()
526 delete objectInfo; in android_mtp_MtpDevice_get_object_info()