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);
1122 LIBMTP_property_t const attribute_id) in LIBMTP_Get_String_From_Object() argument
1124 return get_string_from_object(device, object_id, attribute_id); in LIBMTP_Get_String_From_Object()
1137 … LIBMTP_property_t const attribute_id, uint64_t const value_default) in LIBMTP_Get_u64_From_Object() argument
1139 …return get_u64_from_object(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), v… in LIBMTP_Get_u64_From_Object()
1152 LIBMTP_property_t const attribute_id, uint32_t const value_default) in LIBMTP_Get_u32_From_Object() argument
1154 …return get_u32_from_object(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), v… in LIBMTP_Get_u32_From_Object()
1167 LIBMTP_property_t const attribute_id, uint16_t const value_default) in LIBMTP_Get_u16_From_Object() argument
1169 …return get_u16_from_object(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), v… in LIBMTP_Get_u16_From_Object()
1182 LIBMTP_property_t const attribute_id, uint8_t const value_default) in LIBMTP_Get_u8_From_Object() argument
1184 …return get_u8_from_object(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), va… in LIBMTP_Get_u8_From_Object()
1197 LIBMTP_property_t const attribute_id, char const * const string) in LIBMTP_Set_Object_String() argument
1199 …return set_object_string(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), str… in LIBMTP_Set_Object_String()
1213 LIBMTP_property_t const attribute_id, uint32_t const value) in LIBMTP_Set_Object_u32() argument
1215 …return set_object_u32(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), value); in LIBMTP_Set_Object_u32()
1228 LIBMTP_property_t const attribute_id, uint16_t const value) in LIBMTP_Set_Object_u16() argument
1230 …return set_object_u16(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), value); in LIBMTP_Set_Object_u16()
1243 LIBMTP_property_t const attribute_id, uint8_t const value) in LIBMTP_Set_Object_u8() argument
1245 return set_object_u8(device, object_id, map_libmtp_property_to_ptp_property(attribute_id), value); in LIBMTP_Set_Object_u8()
1259 uint16_t const attribute_id) in get_string_from_object() argument
1271 prop = ptp_find_object_prop_in_cache(params, object_id, attribute_id); in get_string_from_object()
1279 ret = ptp_mtp_getobjectpropvalue(params, object_id, attribute_id, &propval, PTP_DTC_STR); in get_string_from_object()
1302 uint16_t const attribute_id, uint64_t const value_default) in get_u64_from_object() argument
1314 prop = ptp_find_object_prop_in_cache(params, object_id, attribute_id); in get_u64_from_object()
1319 attribute_id, in get_u64_from_object()
1341 uint16_t const attribute_id, uint32_t const value_default) in get_u32_from_object() argument
1353 prop = ptp_find_object_prop_in_cache(params, object_id, attribute_id); in get_u32_from_object()
1358 attribute_id, in get_u32_from_object()
1379 uint16_t const attribute_id, uint16_t const value_default) in get_u16_from_object() argument
1393 prop = ptp_find_object_prop_in_cache(params, object_id, attribute_id); in get_u16_from_object()
1398 attribute_id, in get_u16_from_object()
1420 uint16_t const attribute_id, uint8_t const value_default) in get_u8_from_object() argument
1434 prop = ptp_find_object_prop_in_cache(params, object_id, attribute_id); in get_u8_from_object()
1439 attribute_id, in get_u8_from_object()
1461 uint16_t const attribute_id, char const * const string) in set_object_string() argument
1477 ret = ptp_mtp_setobjectpropvalue(params, object_id, attribute_id, &propval, PTP_DTC_STR); in set_object_string()
1497 uint16_t const attribute_id, uint32_t const value) in set_object_u32() argument
1514 ret = ptp_mtp_setobjectpropvalue(params, object_id, attribute_id, &propval, PTP_DTC_UINT32); in set_object_u32()
1533 uint16_t const attribute_id, uint16_t const value) in set_object_u16() argument
1549 ret = ptp_mtp_setobjectpropvalue(params, object_id, attribute_id, &propval, PTP_DTC_UINT16); in set_object_u16()
1568 uint16_t const attribute_id, uint8_t const value) in set_object_u8() argument
1584 ret = ptp_mtp_setobjectpropvalue(params, object_id, attribute_id, &propval, PTP_DTC_UINT8); in set_object_u8()