• Home
  • Raw
  • Download

Lines Matching refs:property

191                                             MtpObjectProperty property,
195 MtpObjectProperty property,
198 virtual MtpResponseCode getDevicePropertyValue(MtpDeviceProperty property,
201 virtual MtpResponseCode setDevicePropertyValue(MtpDeviceProperty property,
204 virtual MtpResponseCode resetDeviceProperty(MtpDeviceProperty property);
207 uint32_t format, uint32_t property,
224 bool getObjectPropertyInfo(MtpObjectProperty property, int& type);
225 bool getDevicePropertyInfo(MtpDeviceProperty property, int& type);
232 virtual MtpProperty* getObjectPropertyDesc(MtpObjectProperty property,
235 virtual MtpProperty* getDevicePropertyDesc(MtpDeviceProperty property);
436 MtpObjectProperty property, in getObjectPropertyValue() argument
448 static_cast<jint>(property), in getObjectPropertyValue()
594 MtpObjectProperty property, in setObjectPropertyValue() argument
598 if (!getObjectPropertyInfo(property, type)) in setObjectPropertyValue()
615 (jint)handle, (jint)property, longValue, stringValue); in setObjectPropertyValue()
624 MtpResponseCode MtpDatabase::getDevicePropertyValue(MtpDeviceProperty property, in getDevicePropertyValue() argument
629 if (!getDevicePropertyInfo(property, type)) in getDevicePropertyValue()
633 (jint)property, mLongBuffer, mStringBuffer); in getDevicePropertyValue()
690 MtpResponseCode MtpDatabase::setDevicePropertyValue(MtpDeviceProperty property, in setDevicePropertyValue() argument
694 if (!getDevicePropertyInfo(property, type)) in setDevicePropertyValue()
711 (jint)property, longValue, stringValue); in setDevicePropertyValue()
725 uint32_t format, uint32_t property, in getObjectPropertyList() argument
736 static_cast<jint>(property), in getObjectPropertyList()
1096 MtpObjectProperty property; member
1137 bool MtpDatabase::getObjectPropertyInfo(MtpObjectProperty property, int& type) { in getObjectPropertyInfo() argument
1141 if (entry->property == property) { in getObjectPropertyInfo()
1149 bool MtpDatabase::getDevicePropertyInfo(MtpDeviceProperty property, int& type) { in getDevicePropertyInfo() argument
1153 if (entry->property == property) { in getDevicePropertyInfo()
1200 MtpProperty* MtpDatabase::getObjectPropertyDesc(MtpObjectProperty property, in getObjectPropertyDesc() argument
1219 switch (property) { in getObjectPropertyDesc()
1222 result = new MtpProperty(property, MTP_TYPE_UINT16, false, format); in getObjectPropertyDesc()
1226 result = new MtpProperty(property, MTP_TYPE_UINT16); in getObjectPropertyDesc()
1232 result = new MtpProperty(property, MTP_TYPE_UINT32); in getObjectPropertyDesc()
1235 result = new MtpProperty(property, MTP_TYPE_UINT64); in getObjectPropertyDesc()
1238 result = new MtpProperty(property, MTP_TYPE_UINT128); in getObjectPropertyDesc()
1248 result = new MtpProperty(property, MTP_TYPE_STR); in getObjectPropertyDesc()
1253 result = new MtpProperty(property, MTP_TYPE_STR); in getObjectPropertyDesc()
1258 result = new MtpProperty(property, MTP_TYPE_STR, true); in getObjectPropertyDesc()
1261 result = new MtpProperty(property, MTP_TYPE_UINT16); in getObjectPropertyDesc()
1265 result = new MtpProperty(property, MTP_TYPE_UINT32); in getObjectPropertyDesc()
1269 result = new MtpProperty(property, MTP_TYPE_UINT16); in getObjectPropertyDesc()
1273 result = new MtpProperty(property, MTP_TYPE_UINT32); in getObjectPropertyDesc()
1281 MtpProperty* MtpDatabase::getDevicePropertyDesc(MtpDeviceProperty property) { in getDevicePropertyDesc() argument
1288 (jint)property, mLongBuffer, mStringBuffer); in getDevicePropertyDesc()
1290 switch (property) { in getDevicePropertyDesc()
1299 result = new MtpProperty(property, MTP_TYPE_STR, writable); in getDevicePropertyDesc()
1310 result = new MtpProperty(property, MTP_TYPE_UINT8); in getDevicePropertyDesc()
1320 result = new MtpProperty(property, MTP_TYPE_UINT32); in getDevicePropertyDesc()
1326 ALOGE("Unrecognized property %x", property); in getDevicePropertyDesc()