Lines Matching refs:xpl
4866 MTPProperties *xpl; in ptp_object_want()
4873 xpl = &props[j]; in ptp_object_want()
4874 switch (xpl->property) { in ptp_object_want()
4876 if (xpl->datatype != PTP_DTC_UINT32) { in ptp_object_want()
4877 ptp_debug (params, "ptp2/mtpfast: parentobject has type 0x%x???", xpl->datatype); in ptp_object_want()
4880 oinfo.ParentObject = xpl->propval.u32; in ptp_object_want()
4881 ptp_debug (params, "ptp2/mtpfast: parent 0x%x", xpl->propval.u32); in ptp_object_want()
4884 if (xpl->datatype != PTP_DTC_UINT16) { in ptp_object_want()
4885 ptp_debug (params, "ptp2/mtpfast: objectformat has type 0x%x???", xpl->datatype); in ptp_object_want()
4888 oinfo.ObjectFormat = xpl->propval.u16; in ptp_object_want()
4889 ptp_debug (params, "ptp2/mtpfast: ofc 0x%x", xpl->propval.u16); in ptp_object_want()
4892 switch (xpl->datatype) { in ptp_object_want()
4894 oinfo.ObjectCompressedSize = xpl->propval.u32; in ptp_object_want()
4897 oinfo.ObjectCompressedSize = xpl->propval.u64; in ptp_object_want()
4900 ptp_debug (params, "ptp2/mtpfast: objectsize has type 0x%x???", xpl->datatype); in ptp_object_want()
4903 ptp_debug (params, "ptp2/mtpfast: objectsize %u", xpl->propval.u32); in ptp_object_want()
4906 if (xpl->datatype != PTP_DTC_UINT32) { in ptp_object_want()
4907 ptp_debug (params, "ptp2/mtpfast: storageid has type 0x%x???", xpl->datatype); in ptp_object_want()
4910 oinfo.StorageID = xpl->propval.u32; in ptp_object_want()
4911 ptp_debug (params, "ptp2/mtpfast: storageid 0x%x", xpl->propval.u32); in ptp_object_want()
4914 if (xpl->datatype != PTP_DTC_UINT16) { in ptp_object_want()
4915 ptp_debug (params, "ptp2/mtpfast: protectionstatus has type 0x%x???", xpl->datatype); in ptp_object_want()
4918 oinfo.ProtectionStatus = xpl->propval.u16; in ptp_object_want()
4919 ptp_debug (params, "ptp2/mtpfast: protection 0x%x", xpl->propval.u16); in ptp_object_want()
4922 if (xpl->datatype != PTP_DTC_STR) { in ptp_object_want()
4923 ptp_debug (params, "ptp2/mtpfast: filename has type 0x%x???", xpl->datatype); in ptp_object_want()
4926 if (xpl->propval.str) { in ptp_object_want()
4927 ptp_debug (params, "ptp2/mtpfast: filename %s", xpl->propval.str); in ptp_object_want()
4928 oinfo.Filename = strdup(xpl->propval.str); in ptp_object_want()
4934 if (xpl->datatype != PTP_DTC_STR) { in ptp_object_want()
4935 ptp_debug (params, "ptp2/mtpfast: datecreated has type 0x%x???", xpl->datatype); in ptp_object_want()
4938 ptp_debug (params, "ptp2/mtpfast: capturedate %s", xpl->propval.str); in ptp_object_want()
4939 oinfo.CaptureDate = ptp_unpack_PTPTIME (xpl->propval.str); in ptp_object_want()
4942 if (xpl->datatype != PTP_DTC_STR) { in ptp_object_want()
4943 ptp_debug (params, "ptp2/mtpfast: datemodified has type 0x%x???", xpl->datatype); in ptp_object_want()
4946 ptp_debug (params, "ptp2/mtpfast: moddate %s", xpl->propval.str); in ptp_object_want()
4947 oinfo.ModificationDate = ptp_unpack_PTPTIME (xpl->propval.str); in ptp_object_want()
4950 if ((xpl->property & 0xfff0) == 0xdc00) in ptp_object_want()
4951 ptp_debug (params, "ptp2/mtpfast:case %x type %x unhandled", xpl->property, xpl->datatype); in ptp_object_want()