• Home
  • Raw
  • Download

Lines Matching refs:property

124                                             MtpObjectProperty property,
128 MtpObjectProperty property,
131 virtual MtpResponseCode getDevicePropertyValue(MtpDeviceProperty property,
134 virtual MtpResponseCode setDevicePropertyValue(MtpDeviceProperty property,
137 virtual MtpResponseCode resetDeviceProperty(MtpDeviceProperty property);
140 uint32_t format, uint32_t property,
155 bool getObjectPropertyInfo(MtpObjectProperty property, int& type);
156 bool getDevicePropertyInfo(MtpDeviceProperty property, int& type);
163 virtual MtpProperty* getObjectPropertyDesc(MtpObjectProperty property,
166 virtual MtpProperty* getDevicePropertyDesc(MtpDeviceProperty property);
354 MtpObjectProperty property, in getObjectPropertyValue() argument
358 (jlong)handle, 0, (jlong)property, 0, 0); in getObjectPropertyValue()
381 if (property == MTP_PROPERTY_DATE_MODIFIED || property == MTP_PROPERTY_DATE_ADDED) { in getObjectPropertyValue()
388 if (property == MTP_PROPERTY_ORIGINAL_RELEASE_DATE) { in getObjectPropertyValue()
467 MtpObjectProperty property, in setObjectPropertyValue() argument
471 if (!getObjectPropertyInfo(property, type)) in setObjectPropertyValue()
516 (jint)handle, (jint)property, longValue, stringValue); in setObjectPropertyValue()
524 MtpResponseCode MyMtpDatabase::getDevicePropertyValue(MtpDeviceProperty property, in getDevicePropertyValue() argument
528 if (!getDevicePropertyInfo(property, type)) in getDevicePropertyValue()
533 (jint)property, mLongBuffer, mStringBuffer); in getDevicePropertyValue()
590 MtpResponseCode MyMtpDatabase::setDevicePropertyValue(MtpDeviceProperty property, in setDevicePropertyValue() argument
594 if (!getDevicePropertyInfo(property, type)) in setDevicePropertyValue()
639 (jint)property, longValue, stringValue); in setDevicePropertyValue()
647 MtpResponseCode MyMtpDatabase::resetDeviceProperty(MtpDeviceProperty property) { in resetDeviceProperty() argument
652 uint32_t format, uint32_t property, in getObjectPropertyList() argument
657 (jlong)handle, (jint)format, (jlong)property, (jint)groupCode, (jint)depth); in getObjectPropertyList()
879 MtpObjectProperty property; member
912 bool MyMtpDatabase::getObjectPropertyInfo(MtpObjectProperty property, int& type) { in getObjectPropertyInfo() argument
916 if (entry->property == property) { in getObjectPropertyInfo()
924 bool MyMtpDatabase::getDevicePropertyInfo(MtpDeviceProperty property, int& type) { in getDevicePropertyInfo() argument
928 if (entry->property == property) { in getDevicePropertyInfo()
975 MtpProperty* MyMtpDatabase::getObjectPropertyDesc(MtpObjectProperty property, in getObjectPropertyDesc() argument
978 switch (property) { in getObjectPropertyDesc()
981 result = new MtpProperty(property, MTP_TYPE_UINT16, false, format); in getObjectPropertyDesc()
985 result = new MtpProperty(property, MTP_TYPE_UINT16); in getObjectPropertyDesc()
990 result = new MtpProperty(property, MTP_TYPE_UINT32); in getObjectPropertyDesc()
993 result = new MtpProperty(property, MTP_TYPE_UINT64); in getObjectPropertyDesc()
996 result = new MtpProperty(property, MTP_TYPE_UINT128); in getObjectPropertyDesc()
1006 result = new MtpProperty(property, MTP_TYPE_STR); in getObjectPropertyDesc()
1011 result = new MtpProperty(property, MTP_TYPE_STR); in getObjectPropertyDesc()
1016 result = new MtpProperty(property, MTP_TYPE_STR, true); in getObjectPropertyDesc()
1023 MtpProperty* MyMtpDatabase::getDevicePropertyDesc(MtpDeviceProperty property) { in getDevicePropertyDesc() argument
1028 switch (property) { in getDevicePropertyDesc()
1034 result = new MtpProperty(property, MTP_TYPE_STR, writable); in getDevicePropertyDesc()
1038 (jint)property, mLongBuffer, mStringBuffer); in getDevicePropertyDesc()