• Home
  • Raw
  • Download

Lines Matching refs:xpl

6788 		MTPProperties 	*xpl;  in ptp_object_want()
6795 xpl = &props[j]; in ptp_object_want()
6796 switch (xpl->property) { in ptp_object_want()
6798 if (xpl->datatype != PTP_DTC_UINT32) { in ptp_object_want()
6799 ptp_debug (params, "ptp2/mtpfast: parentobject has type 0x%x???", xpl->datatype); in ptp_object_want()
6802 oinfo.ParentObject = xpl->propval.u32; in ptp_object_want()
6803 ptp_debug (params, "ptp2/mtpfast: parent 0x%x", xpl->propval.u32); in ptp_object_want()
6806 if (xpl->datatype != PTP_DTC_UINT16) { in ptp_object_want()
6807 ptp_debug (params, "ptp2/mtpfast: objectformat has type 0x%x???", xpl->datatype); in ptp_object_want()
6810 oinfo.ObjectFormat = xpl->propval.u16; in ptp_object_want()
6811 ptp_debug (params, "ptp2/mtpfast: ofc 0x%x", xpl->propval.u16); in ptp_object_want()
6814 switch (xpl->datatype) { in ptp_object_want()
6816 oinfo.ObjectCompressedSize = xpl->propval.u32; in ptp_object_want()
6819 oinfo.ObjectCompressedSize = xpl->propval.u64; in ptp_object_want()
6822 ptp_debug (params, "ptp2/mtpfast: objectsize has type 0x%x???", xpl->datatype); in ptp_object_want()
6825 ptp_debug (params, "ptp2/mtpfast: objectsize %u", xpl->propval.u32); in ptp_object_want()
6828 if (xpl->datatype != PTP_DTC_UINT32) { in ptp_object_want()
6829 ptp_debug (params, "ptp2/mtpfast: storageid has type 0x%x???", xpl->datatype); in ptp_object_want()
6832 oinfo.StorageID = xpl->propval.u32; in ptp_object_want()
6833 ptp_debug (params, "ptp2/mtpfast: storageid 0x%x", xpl->propval.u32); in ptp_object_want()
6836 if (xpl->datatype != PTP_DTC_UINT16) { in ptp_object_want()
6837 ptp_debug (params, "ptp2/mtpfast: protectionstatus has type 0x%x???", xpl->datatype); in ptp_object_want()
6840 oinfo.ProtectionStatus = xpl->propval.u16; in ptp_object_want()
6841 ptp_debug (params, "ptp2/mtpfast: protection 0x%x", xpl->propval.u16); in ptp_object_want()
6844 if (xpl->datatype != PTP_DTC_STR) { in ptp_object_want()
6845 ptp_debug (params, "ptp2/mtpfast: filename has type 0x%x???", xpl->datatype); in ptp_object_want()
6848 if (xpl->propval.str) { in ptp_object_want()
6849 ptp_debug (params, "ptp2/mtpfast: filename %s", xpl->propval.str); in ptp_object_want()
6850 oinfo.Filename = strdup(xpl->propval.str); in ptp_object_want()
6856 if (xpl->datatype != PTP_DTC_STR) { in ptp_object_want()
6857 ptp_debug (params, "ptp2/mtpfast: datecreated has type 0x%x???", xpl->datatype); in ptp_object_want()
6860 ptp_debug (params, "ptp2/mtpfast: capturedate %s", xpl->propval.str); in ptp_object_want()
6861 oinfo.CaptureDate = ptp_unpack_PTPTIME (xpl->propval.str); in ptp_object_want()
6864 if (xpl->datatype != PTP_DTC_STR) { in ptp_object_want()
6865 ptp_debug (params, "ptp2/mtpfast: datemodified has type 0x%x???", xpl->datatype); in ptp_object_want()
6868 ptp_debug (params, "ptp2/mtpfast: moddate %s", xpl->propval.str); in ptp_object_want()
6869 oinfo.ModificationDate = ptp_unpack_PTPTIME (xpl->propval.str); in ptp_object_want()
6872 if ((xpl->property & 0xfff0) == 0xdc00) in ptp_object_want()
6873 ptp_debug (params, "ptp2/mtpfast:case %x type %x unhandled", xpl->property, xpl->datatype); in ptp_object_want()