Home
last modified time | relevance | path

Searched refs:AssociationDesc (Results 1 – 24 of 24) sorted by relevance

/dports/java/icedtea-web/icedtea-web-1.6.2/netx/net/sourceforge/jnlp/
H A DAssociationDesc.java19 public final class AssociationDesc { class
27 public AssociationDesc(String mimeType, String[] extensions) throws ParseException { in AssociationDesc() method in AssociationDesc
H A DInformationDesc.java215 public AssociationDesc[] getAssociations() { in getAssociations()
218 return associations.toArray(new AssociationDesc[associations.size()]); in getAssociations()
H A DParser.java783 private AssociationDesc getAssociation(Node node) throws ParseException { in getAssociation()
787 return new AssociationDesc(mimeType, extensions); in getAssociation()
/dports/java/icedtea-web/icedtea-web-1.6.2/tests/netx/unit/net/sourceforge/jnlp/
H A DInformationDescTest.java198 assertArrayEquals(new AssociationDesc[0], info.getAssociations()); in testGetAssociation()
200 AssociationDesc association = new AssociationDesc(null, null); in testGetAssociation()
202 assertArrayEquals(new AssociationDesc[] { association }, info.getAssociations()); in testGetAssociation()
H A DParserBasic.java151 AssociationDesc[] associations = info.getAssociations(); in testInformationAssociation()
154 AssociationDesc association = associations[0]; in testInformationAssociation()
/dports/sysutils/android-file-transfer/android-file-transfer-linux-4.2/mtp/ptp/
H A DMessages.h153 u32 AssociationDesc; member
163 ParentObject(), AssociationType(), AssociationDesc(), in ObjectInfo()
184 stream >> AssociationDesc; in Read()
208 stream << AssociationDesc; in Write()
H A DObjectProperty.values.h12 ENUM_VALUE(AssociationDesc, 0xdc06)
H A DSession.cpp406 case ObjectProperty::AssociationDesc: in GetObjectIntegerProperty()
407 return info.AssociationDesc; in GetObjectIntegerProperty()
/dports/sysutils/android-file-transfer-qt5/android-file-transfer-linux-4.2/mtp/ptp/
H A DMessages.h153 u32 AssociationDesc; member
163 ParentObject(), AssociationType(), AssociationDesc(), in ObjectInfo()
184 stream >> AssociationDesc; in Read()
208 stream << AssociationDesc; in Write()
H A DObjectProperty.values.h12 ENUM_VALUE(AssociationDesc, 0xdc06)
H A DSession.cpp406 case ObjectProperty::AssociationDesc: in GetObjectIntegerProperty()
407 return info.AssociationDesc; in GetObjectIntegerProperty()
/dports/sysutils/android-file-transfer/android-file-transfer-linux-4.2/python/
H A Daftl.cpp190 DEF_READONLY(msg::ObjectInfo, AssociationDesc) in PYBIND11_MODULE()
/dports/sysutils/android-file-transfer-qt5/android-file-transfer-linux-4.2/python/
H A Daftl.cpp190 DEF_READONLY(msg::ObjectInfo, AssociationDesc) in PYBIND11_MODULE()
/dports/lang/micropython/micropython-1.17/ports/stm32/usbhost/Class/MTP/Inc/
H A Dusbh_mtp_ptp.h759 uint32_t AssociationDesc; member
/dports/multimedia/libmtp/libmtp-1.1.18/src/
H A Dptp-pack.c670 htod32a(&oidata[PTP_oi_AssociationDesc],oi->AssociationDesc); in ptp_pack_OI()
782 oi->AssociationDesc=dtoh32a(&data[PTP_oi_AssociationDesc]); in ptp_unpack_OI()
3033 oif->AssociationDesc = dtoh32ap(params,data+curoffset+26); in ptp_unpack_ptp11_manifest()
H A Dptp.h1141 uint32_t AssociationDesc; member
1158 uint32_t AssociationDesc; member
H A Dptp.c2697 ob->oi.AssociationDesc = oifs[i].AssociationDesc; in ptp_list_folder()
7599 ob->oi.AssociationDesc = prop->propval.u32; in ptp_object_want()
H A Dlibmtp.c7372 if (ob->oi.AssociationDesc != 0x00000000U) {
7373 LIBMTP_INFO("MTP extended association type 0x%08x encountered\n", ob->oi.AssociationDesc);
/dports/graphics/libgphoto2/libgphoto2-2.5.26/camlibs/ptp2/
H A Dptp-pack.c670 htod32a(&oidata[PTP_oi_AssociationDesc],oi->AssociationDesc); in ptp_pack_OI()
782 oi->AssociationDesc=dtoh32a(&data[PTP_oi_AssociationDesc]); in ptp_unpack_OI()
3056 oif->AssociationDesc = dtoh32ap(params,data+curoffset+26); in ptp_unpack_ptp11_manifest()
H A Dptp.h1375 uint32_t AssociationDesc; member
1392 uint32_t AssociationDesc; member
H A Dptp.c2795 ob->oi.AssociationDesc = oifs[i].AssociationDesc; in ptp_list_folder()
8655 ob->oi.AssociationDesc = prop->propval.u32; in ptp_object_want()
H A Dlibrary.c9121 GP_LOG_D (" AssociationDesc: 0x%08x", oi->AssociationDesc); in debug_objectinfo()
/dports/lang/micropython/micropython-1.17/ports/stm32/usbhost/Class/MTP/Src/
H A Dusbh_mtp_ptp.c621 object_info->AssociationDesc=LE32(&data[PTP_oi_AssociationDesc]); in PTP_GetObjectInfo()
/dports/java/icedtea-web/icedtea-web-1.6.2/
H A DChangeLog15469 * netx/net/sourceforge/jnlp/AssociationDesc.java,