• 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()
881 MtpObjectProperty property; member
914 bool MyMtpDatabase::getObjectPropertyInfo(MtpObjectProperty property, int& type) { in getObjectPropertyInfo() argument
918 if (entry->property == property) { in getObjectPropertyInfo()
926 bool MyMtpDatabase::getDevicePropertyInfo(MtpDeviceProperty property, int& type) { in getDevicePropertyInfo() argument
930 if (entry->property == property) { in getDevicePropertyInfo()
977 MtpProperty* MyMtpDatabase::getObjectPropertyDesc(MtpObjectProperty property, in getObjectPropertyDesc() argument
980 switch (property) { in getObjectPropertyDesc()
983 result = new MtpProperty(property, MTP_TYPE_UINT16, false, format); in getObjectPropertyDesc()
987 result = new MtpProperty(property, MTP_TYPE_UINT16); in getObjectPropertyDesc()
992 result = new MtpProperty(property, MTP_TYPE_UINT32); in getObjectPropertyDesc()
995 result = new MtpProperty(property, MTP_TYPE_UINT64); in getObjectPropertyDesc()
998 result = new MtpProperty(property, MTP_TYPE_UINT128); in getObjectPropertyDesc()
1008 result = new MtpProperty(property, MTP_TYPE_STR); in getObjectPropertyDesc()
1013 result = new MtpProperty(property, MTP_TYPE_STR); in getObjectPropertyDesc()
1018 result = new MtpProperty(property, MTP_TYPE_STR, true); in getObjectPropertyDesc()
1025 MtpProperty* MyMtpDatabase::getDevicePropertyDesc(MtpDeviceProperty property) { in getDevicePropertyDesc() argument
1030 switch (property) { in getDevicePropertyDesc()
1036 result = new MtpProperty(property, MTP_TYPE_STR, writable); in getDevicePropertyDesc()
1040 (jint)property, mLongBuffer, mStringBuffer); in getDevicePropertyDesc()