Home | History | Annotate | Download | only in src

Lines Matching refs:nrofprops

3740 ptp_mtp_getobjectproplist (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops)
3753 *nrofprops = ptp_unpack_OPL(params, data, props, size);
3759 ptp_mtp_getobjectproplist_single (PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops)
3772 *nrofprops = ptp_unpack_OPL(params, data, props, size);
3779 uint16_t objecttype, uint64_t objectsize, MTPProperties *props, int nrofprops)
3791 size = ptp_pack_OPL(params,props,nrofprops,&data);
3802 ptp_mtp_setobjectproplist (PTPParams* params, MTPProperties *props, int nrofprops)
3809 size = ptp_pack_OPL(params,props,nrofprops,&data);
6456 ptp_get_new_object_prop_entry(MTPProperties **props, int *nrofprops)
6461 newprops = realloc(*props,sizeof(MTPProperties)*(*nrofprops+1));
6464 prop = &newprops[*nrofprops];
6471 (*nrofprops)++;
6492 ptp_destroy_object_prop_list(MTPProperties *props, int nrofprops)
6497 for (i=0;i<nrofprops;i++,prop++)
6706 int nrofprops = 0;
6721 ret = ptp_mtp_getobjectproplist_single (params, handle, &props, &nrofprops);
6725 ob->nrofmtpprops = nrofprops;
6794 for (j=0;j<nrofprops;j++) {