Home
last modified time | relevance | path

Searched refs:nrofprops (Results 1 – 4 of 4) sorted by relevance

/external/libmtp/src/
Dlibmtp.c2609 int i, j, nrofprops; in get_all_metadata_fast() local
2633 ret = ptp_mtp_getobjectproplist(params, 0xffffffff, &props, &nrofprops); in get_all_metadata_fast()
2649 if (props == NULL && nrofprops != 0) { in get_all_metadata_fast()
2662 for (i=0;i<nrofprops;i++) { in get_all_metadata_fast()
2673 for (j=0;j<nrofprops;j++) { in get_all_metadata_fast()
6257 int nrofprops = 0; local
6281 prop = ptp_get_new_object_prop_entry(&props,&nrofprops);
6293 prop = ptp_get_new_object_prop_entry(&props,&nrofprops);
6300 prop = ptp_get_new_object_prop_entry(&props,&nrofprops);
6307 prop = ptp_get_new_object_prop_entry(&props,&nrofprops);
[all …]
Dptp.c3740 …p_mtp_getobjectproplist (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops) in ptp_mtp_getobjectproplist() argument
3753 *nrofprops = ptp_unpack_OPL(params, data, props, size); in ptp_mtp_getobjectproplist()
3759 …etobjectproplist_single (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops) in ptp_mtp_getobjectproplist_single() argument
3772 *nrofprops = ptp_unpack_OPL(params, data, props, size); in ptp_mtp_getobjectproplist_single()
3779 uint16_t objecttype, uint64_t objectsize, MTPProperties *props, int nrofprops) in ptp_mtp_sendobjectproplist() argument
3791 size = ptp_pack_OPL(params,props,nrofprops,&data); in ptp_mtp_sendobjectproplist()
3802 ptp_mtp_setobjectproplist (PTPParams* params, MTPProperties *props, int nrofprops) in ptp_mtp_setobjectproplist() argument
3809 size = ptp_pack_OPL(params,props,nrofprops,&data); in ptp_mtp_setobjectproplist()
6456 ptp_get_new_object_prop_entry(MTPProperties **props, int *nrofprops) in ptp_get_new_object_prop_entry() argument
6461 newprops = realloc(*props,sizeof(MTPProperties)*(*nrofprops+1)); in ptp_get_new_object_prop_entry()
[all …]
Dptp.h2746 …_mtp_getobjectproplist (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops);
2747 …tobjectproplist_single (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops);
2749 uint16_t objecttype, uint64_t objectsize, MTPProperties *props, int nrofprops);
2750 uint16_t ptp_mtp_setobjectproplist (PTPParams* params, MTPProperties *props, int nrofprops);
3355 MTPProperties *ptp_get_new_object_prop_entry(MTPProperties **props, int *nrofprops);
3357 void ptp_destroy_object_prop_list(MTPProperties *props, int nrofprops);
Dptp-pack.c1273 ptp_pack_OPL (PTPParams *params, MTPProperties *props, int nrofprops, unsigned char** opldataptr) in ptp_pack_OPL() argument
1289 while (nrofprops-- && noitems < MAX_MTP_PROPS) { in ptp_pack_OPL()