Lines Matching defs:info

144     jobject info = env->NewObject(clazz_deviceInfo, constructor_deviceInfo);
145 if (info == NULL) {
152 env->SetObjectField(info, field_deviceInfo_manufacturer,
155 env->SetObjectField(info, field_deviceInfo_model,
158 env->SetObjectField(info, field_deviceInfo_version,
161 env->SetObjectField(info, field_deviceInfo_serialNumber,
165 return info;
197 jobject info = env->NewObject(clazz_storageInfo, constructor_storageInfo);
198 if (info == NULL) {
205 env->SetIntField(info, field_storageInfo_storageId, storageInfo->mStorageID);
207 env->SetLongField(info, field_storageInfo_maxCapacity, storageInfo->mMaxCapacity);
209 env->SetLongField(info, field_storageInfo_freeSpace, storageInfo->mFreeSpaceBytes);
211 env->SetObjectField(info, field_storageInfo_description,
214 env->SetObjectField(info, field_storageInfo_volumeIdentifier,
218 return info;
250 jobject info = env->NewObject(clazz_objectInfo, constructor_objectInfo);
251 if (info == NULL) {
258 env->SetIntField(info, field_objectInfo_handle, objectInfo->mHandle);
260 env->SetIntField(info, field_objectInfo_storageId, objectInfo->mStorageID);
262 env->SetIntField(info, field_objectInfo_format, objectInfo->mFormat);
264 env->SetIntField(info, field_objectInfo_protectionStatus, objectInfo->mProtectionStatus);
266 env->SetIntField(info, field_objectInfo_compressedSize, objectInfo->mCompressedSize);
268 env->SetIntField(info, field_objectInfo_thumbFormat, objectInfo->mThumbFormat);
270 env->SetIntField(info, field_objectInfo_thumbCompressedSize, objectInfo->mThumbCompressedSize);
272 env->SetIntField(info, field_objectInfo_thumbPixWidth, objectInfo->mThumbPixWidth);
274 env->SetIntField(info, field_objectInfo_thumbPixHeight, objectInfo->mThumbPixHeight);
276 env->SetIntField(info, field_objectInfo_imagePixWidth, objectInfo->mImagePixWidth);
278 env->SetIntField(info, field_objectInfo_imagePixHeight, objectInfo->mImagePixHeight);
280 env->SetIntField(info, field_objectInfo_imagePixDepth, objectInfo->mImagePixDepth);
282 env->SetIntField(info, field_objectInfo_parent, objectInfo->mParent);
284 env->SetIntField(info, field_objectInfo_associationType, objectInfo->mAssociationType);
286 env->SetIntField(info, field_objectInfo_associationDesc, objectInfo->mAssociationDesc);
288 env->SetIntField(info, field_objectInfo_sequenceNumber, objectInfo->mSequenceNumber);
290 env->SetObjectField(info, field_objectInfo_name, env->NewStringUTF(objectInfo->mName));
292 env->SetLongField(info, field_objectInfo_dateCreated, objectInfo->mDateCreated * 1000LL);
294 env->SetLongField(info, field_objectInfo_dateModified, objectInfo->mDateModified * 1000LL);
296 env->SetObjectField(info, field_objectInfo_keywords,
300 return info;