Lines Matching refs:objectInfo
138 void fill_jobject_from_object_info(JNIEnv* env, jobject object, MtpObjectInfo* objectInfo) { in fill_jobject_from_object_info() argument
139 if (objectInfo->mHandle) in fill_jobject_from_object_info()
140 env->SetIntField(object, field_objectInfo_handle, objectInfo->mHandle); in fill_jobject_from_object_info()
141 if (objectInfo->mStorageID) in fill_jobject_from_object_info()
142 env->SetIntField(object, field_objectInfo_storageId, objectInfo->mStorageID); in fill_jobject_from_object_info()
143 if (objectInfo->mFormat) in fill_jobject_from_object_info()
144 env->SetIntField(object, field_objectInfo_format, objectInfo->mFormat); in fill_jobject_from_object_info()
145 if (objectInfo->mProtectionStatus) in fill_jobject_from_object_info()
146 env->SetIntField(object, field_objectInfo_protectionStatus, objectInfo->mProtectionStatus); in fill_jobject_from_object_info()
147 if (objectInfo->mCompressedSize) in fill_jobject_from_object_info()
148 env->SetIntField(object, field_objectInfo_compressedSize, objectInfo->mCompressedSize); in fill_jobject_from_object_info()
149 if (objectInfo->mThumbFormat) in fill_jobject_from_object_info()
150 env->SetIntField(object, field_objectInfo_thumbFormat, objectInfo->mThumbFormat); in fill_jobject_from_object_info()
151 if (objectInfo->mThumbCompressedSize) { in fill_jobject_from_object_info()
153 objectInfo->mThumbCompressedSize); in fill_jobject_from_object_info()
155 if (objectInfo->mThumbPixWidth) in fill_jobject_from_object_info()
156 env->SetIntField(object, field_objectInfo_thumbPixWidth, objectInfo->mThumbPixWidth); in fill_jobject_from_object_info()
157 if (objectInfo->mThumbPixHeight) in fill_jobject_from_object_info()
158 env->SetIntField(object, field_objectInfo_thumbPixHeight, objectInfo->mThumbPixHeight); in fill_jobject_from_object_info()
159 if (objectInfo->mImagePixWidth) in fill_jobject_from_object_info()
160 env->SetIntField(object, field_objectInfo_imagePixWidth, objectInfo->mImagePixWidth); in fill_jobject_from_object_info()
161 if (objectInfo->mImagePixHeight) in fill_jobject_from_object_info()
162 env->SetIntField(object, field_objectInfo_imagePixHeight, objectInfo->mImagePixHeight); in fill_jobject_from_object_info()
163 if (objectInfo->mImagePixDepth) in fill_jobject_from_object_info()
164 env->SetIntField(object, field_objectInfo_imagePixDepth, objectInfo->mImagePixDepth); in fill_jobject_from_object_info()
165 if (objectInfo->mParent) in fill_jobject_from_object_info()
166 env->SetIntField(object, field_objectInfo_parent, objectInfo->mParent); in fill_jobject_from_object_info()
167 if (objectInfo->mAssociationType) in fill_jobject_from_object_info()
168 env->SetIntField(object, field_objectInfo_associationType, objectInfo->mAssociationType); in fill_jobject_from_object_info()
169 if (objectInfo->mAssociationDesc) in fill_jobject_from_object_info()
170 env->SetIntField(object, field_objectInfo_associationDesc, objectInfo->mAssociationDesc); in fill_jobject_from_object_info()
171 if (objectInfo->mSequenceNumber) in fill_jobject_from_object_info()
172 env->SetIntField(object, field_objectInfo_sequenceNumber, objectInfo->mSequenceNumber); in fill_jobject_from_object_info()
173 if (objectInfo->mName) in fill_jobject_from_object_info()
174 env->SetObjectField(object, field_objectInfo_name, env->NewStringUTF(objectInfo->mName)); in fill_jobject_from_object_info()
175 if (objectInfo->mDateCreated) in fill_jobject_from_object_info()
176 env->SetLongField(object, field_objectInfo_dateCreated, objectInfo->mDateCreated * 1000LL); in fill_jobject_from_object_info()
177 if (objectInfo->mDateModified) { in fill_jobject_from_object_info()
179 objectInfo->mDateModified * 1000LL); in fill_jobject_from_object_info()
181 if (objectInfo->mKeywords) { in fill_jobject_from_object_info()
183 env->NewStringUTF(objectInfo->mKeywords)); in fill_jobject_from_object_info()
365 MtpObjectInfo* objectInfo = device->getObjectInfo(objectID); in android_mtp_MtpDevice_get_object_info() local
366 if (!objectInfo) in android_mtp_MtpDevice_get_object_info()
371 delete objectInfo; in android_mtp_MtpDevice_get_object_info()
375 fill_jobject_from_object_info(env, info, objectInfo); in android_mtp_MtpDevice_get_object_info()
376 delete objectInfo; in android_mtp_MtpDevice_get_object_info()