Home | History | Annotate | Download | only in src

Lines Matching refs:attribute_id

134 				    uint16_t const attribute_id);
136 uint16_t const attribute_id, uint64_t const value_default);
138 uint16_t const attribute_id, uint32_t const value_default);
140 uint16_t const attribute_id, uint16_t const value_default);
142 uint16_t const attribute_id, uint8_t const value_default);
144 uint16_t const attribute_id, char const * const string);
146 uint16_t const attribute_id, uint32_t const value);
148 uint16_t const attribute_id, uint16_t const value);
150 uint16_t const attribute_id, uint8_t const value);
1116 * @param attribute_id MTP attribute ID
1122 LIBMTP_property_t const attribute_id)
1124 return get_string_from_object(device, object_id, attribute_id);
1132 * @param attribute_id MTP attribute ID
1137 LIBMTP_property_t const attribute_id, uint64_t const value_default)
1139 return get_u64_from_object(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), value_default);
1147 * @param attribute_id MTP attribute ID
1152 LIBMTP_property_t const attribute_id, uint32_t const value_default)
1154 return get_u32_from_object(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), value_default);
1162 * @param attribute_id MTP attribute ID
1167 LIBMTP_property_t const attribute_id, uint16_t const value_default)
1169 return get_u16_from_object(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), value_default);
1177 * @param attribute_id MTP attribute ID
1182 LIBMTP_property_t const attribute_id, uint8_t const value_default)
1184 return get_u8_from_object(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), value_default);
1192 * @param attribute_id MTP attribute ID
1197 LIBMTP_property_t const attribute_id, char const * const string)
1199 return set_object_string(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), string);
1208 * @param attribute_id MTP attribute ID
1213 LIBMTP_property_t const attribute_id, uint32_t const value)
1215 return set_object_u32(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), value);
1223 * @param attribute_id MTP attribute ID
1228 LIBMTP_property_t const attribute_id, uint16_t const value)
1230 return set_object_u16(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), value);
1238 * @param attribute_id MTP attribute ID
1243 LIBMTP_property_t const attribute_id, uint8_t const value)
1245 return set_object_u8(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), value);
1253 * @param attribute_id PTP attribute ID
1259 uint16_t const attribute_id)
1271 prop = ptp_find_object_prop_in_cache(params, object_id, attribute_id);
1279 ret = ptp_mtp_getobjectpropvalue(params, object_id, attribute_id, &propval, PTP_DTC_STR);
1297 * @param attribute_id PTP attribute ID
1302 uint16_t const attribute_id, uint64_t const value_default)
1314 prop = ptp_find_object_prop_in_cache(params, object_id, attribute_id);
1319 attribute_id,
1336 * @param attribute_id PTP attribute ID
1341 uint16_t const attribute_id, uint32_t const value_default)
1353 prop = ptp_find_object_prop_in_cache(params, object_id, attribute_id);
1358 attribute_id,
1374 * @param attribute_id PTP attribute ID
1379 uint16_t const attribute_id, uint16_t const value_default)
1393 prop = ptp_find_object_prop_in_cache(params, object_id, attribute_id);
1398 attribute_id,
1415 * @param attribute_id PTP attribute ID
1420 uint16_t const attribute_id, uint8_t const value_default)
1434 prop = ptp_find_object_prop_in_cache(params, object_id, attribute_id);
1439 attribute_id,
1456 * @param attribute_id PTP attribute ID
1461 uint16_t const attribute_id, char const * const string)
1477 ret = ptp_mtp_setobjectpropvalue(params, object_id, attribute_id, &propval, PTP_DTC_STR);
1492 * @param attribute_id PTP attribute ID
1497 uint16_t const attribute_id, uint32_t const value)
1514 ret = ptp_mtp_setobjectpropvalue(params, object_id, attribute_id, &propval, PTP_DTC_UINT32);
1528 * @param attribute_id PTP attribute ID
1533 uint16_t const attribute_id, uint16_t const value)
1549 ret = ptp_mtp_setobjectpropvalue(params, object_id, attribute_id, &propval, PTP_DTC_UINT16);
1563 * @param attribute_id PTP attribute ID
1568 uint16_t const attribute_id, uint8_t const value)
1584 ret = ptp_mtp_setobjectpropvalue(params, object_id, attribute_id, &propval, PTP_DTC_UINT8);