Lines Matching defs:info
143 jobject info = env->NewObject(clazz_deviceInfo, constructor_deviceInfo);
144 if (info == NULL) {
151 env->SetObjectField(info, field_deviceInfo_manufacturer,
154 env->SetObjectField(info, field_deviceInfo_model,
157 env->SetObjectField(info, field_deviceInfo_version,
160 env->SetObjectField(info, field_deviceInfo_serialNumber,
164 return info;
196 jobject info = env->NewObject(clazz_storageInfo, constructor_storageInfo);
197 if (info == NULL) {
204 env->SetIntField(info, field_storageInfo_storageId, storageInfo->mStorageID);
206 env->SetLongField(info, field_storageInfo_maxCapacity, storageInfo->mMaxCapacity);
208 env->SetLongField(info, field_storageInfo_freeSpace, storageInfo->mFreeSpaceBytes);
210 env->SetObjectField(info, field_storageInfo_description,
213 env->SetObjectField(info, field_storageInfo_volumeIdentifier,
217 return info;
249 jobject info = env->NewObject(clazz_objectInfo, constructor_objectInfo);
250 if (info == NULL) {
257 env->SetIntField(info, field_objectInfo_handle, objectInfo->mHandle);
259 env->SetIntField(info, field_objectInfo_storageId, objectInfo->mStorageID);
261 env->SetIntField(info, field_objectInfo_format, objectInfo->mFormat);
263 env->SetIntField(info, field_objectInfo_protectionStatus, objectInfo->mProtectionStatus);
265 env->SetIntField(info, field_objectInfo_compressedSize, objectInfo->mCompressedSize);
267 env->SetIntField(info, field_objectInfo_thumbFormat, objectInfo->mThumbFormat);
269 env->SetIntField(info, field_objectInfo_thumbCompressedSize, objectInfo->mThumbCompressedSize);
271 env->SetIntField(info, field_objectInfo_thumbPixWidth, objectInfo->mThumbPixWidth);
273 env->SetIntField(info, field_objectInfo_thumbPixHeight, objectInfo->mThumbPixHeight);
275 env->SetIntField(info, field_objectInfo_imagePixWidth, objectInfo->mImagePixWidth);
277 env->SetIntField(info, field_objectInfo_imagePixHeight, objectInfo->mImagePixHeight);
279 env->SetIntField(info, field_objectInfo_imagePixDepth, objectInfo->mImagePixDepth);
281 env->SetIntField(info, field_objectInfo_parent, objectInfo->mParent);
283 env->SetIntField(info, field_objectInfo_associationType, objectInfo->mAssociationType);
285 env->SetIntField(info, field_objectInfo_associationDesc, objectInfo->mAssociationDesc);
287 env->SetIntField(info, field_objectInfo_sequenceNumber, objectInfo->mSequenceNumber);
289 env->SetObjectField(info, field_objectInfo_name, env->NewStringUTF(objectInfo->mName));
291 env->SetLongField(info, field_objectInfo_dateCreated, objectInfo->mDateCreated * 1000LL);
293 env->SetLongField(info, field_objectInfo_dateModified, objectInfo->mDateModified * 1000LL);
295 env->SetObjectField(info, field_objectInfo_keywords,
299 return info;