Lines Matching refs:MtpPacket
31 MtpPacket::MtpPacket(int bufferSize) in MtpPacket() function in android::MtpPacket
44 MtpPacket::~MtpPacket() { in ~MtpPacket()
49 void MtpPacket::reset() { in reset()
55 void MtpPacket::allocate(size_t length) { in allocate()
67 void MtpPacket::dump() { in dump()
87 void MtpPacket::copyFrom(const MtpPacket& src) { in copyFrom()
94 uint16_t MtpPacket::getUInt16(int offset) const { in getUInt16()
98 uint32_t MtpPacket::getUInt32(int offset) const { in getUInt32()
103 void MtpPacket::putUInt16(int offset, uint16_t value) { in putUInt16()
108 void MtpPacket::putUInt32(int offset, uint32_t value) { in putUInt32()
115 uint16_t MtpPacket::getContainerCode() const { in getContainerCode()
119 void MtpPacket::setContainerCode(uint16_t code) { in setContainerCode()
123 uint16_t MtpPacket::getContainerType() const { in getContainerType()
127 MtpTransactionID MtpPacket::getTransactionID() const { in getTransactionID()
131 void MtpPacket::setTransactionID(MtpTransactionID id) { in setTransactionID()
135 uint32_t MtpPacket::getParameter(int index) const { in getParameter()
143 void MtpPacket::setParameter(int index, uint32_t value) { in setParameter()
155 int MtpPacket::transfer(struct usb_request* request) { in transfer()