Searched refs:nrofprops (Results 1 – 4 of 4) sorted by relevance
/external/libmtp/src/ |
D | libmtp.c | 2140 int i, j, nrofprops; in get_all_metadata_fast() local 2163 ret = ptp_mtp_getobjectproplist(params, 0xffffffff, &props, &nrofprops); in get_all_metadata_fast() 2179 if (props == NULL && nrofprops != 0) { in get_all_metadata_fast() 2192 for (i=0;i<nrofprops;i++) { in get_all_metadata_fast() 2203 for (j=0;j<nrofprops;j++) { in get_all_metadata_fast() 5684 int nrofprops = 0; local 5704 prop = ptp_get_new_object_prop_entry(&props,&nrofprops); 5716 prop = ptp_get_new_object_prop_entry(&props,&nrofprops); 5723 prop = ptp_get_new_object_prop_entry(&props,&nrofprops); 5730 prop = ptp_get_new_object_prop_entry(&props,&nrofprops); [all …]
|
D | ptp.c | 2573 …p_mtp_getobjectproplist (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops) in ptp_mtp_getobjectproplist() argument 2589 if (ret == PTP_RC_OK) *nrofprops = ptp_unpack_OPL(params, opldata, props, oplsize); in ptp_mtp_getobjectproplist() 2597 uint16_t objecttype, uint64_t objectsize, MTPProperties *props, int nrofprops) in ptp_mtp_sendobjectproplist() argument 2614 oplsize = ptp_pack_OPL(params,props,nrofprops,&opldata); in ptp_mtp_sendobjectproplist() 2625 ptp_mtp_setobjectproplist (PTPParams* params, MTPProperties *props, int nrofprops) in ptp_mtp_setobjectproplist() argument 2636 oplsize = ptp_pack_OPL(params,props,nrofprops,&opldata); in ptp_mtp_setobjectproplist() 4619 ptp_get_new_object_prop_entry(MTPProperties **props, int *nrofprops) { in ptp_get_new_object_prop_entry() argument 4624 newprops = malloc(sizeof(MTPProperties)*(*nrofprops+1)); in ptp_get_new_object_prop_entry() 4626 newprops = realloc(*props,sizeof(MTPProperties)*(*nrofprops+1)); in ptp_get_new_object_prop_entry() 4630 prop = &newprops[*nrofprops]; in ptp_get_new_object_prop_entry() [all …]
|
D | ptp.h | 2123 …_mtp_getobjectproplist (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops); 2125 uint16_t objecttype, uint64_t objectsize, MTPProperties *props, int nrofprops); 2126 uint16_t ptp_mtp_setobjectproplist (PTPParams* params, MTPProperties *props, int nrofprops); 2555 MTPProperties *ptp_get_new_object_prop_entry(MTPProperties **props, int *nrofprops); 2557 void ptp_destroy_object_prop_list(MTPProperties *props, int nrofprops);
|
D | ptp-pack.c | 976 ptp_pack_OPL (PTPParams *params, MTPProperties *props, int nrofprops, unsigned char** opldataptr) in ptp_pack_OPL() argument 992 while (nrofprops-- && noitems < MAX_MTP_PROPS) { in ptp_pack_OPL()
|