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()
104 uint32_t MtpPacket::getUInt32(int offset) const { in getUInt32()
115 void MtpPacket::putUInt16(int offset, uint16_t value) { in putUInt16()
125 void MtpPacket::putUInt32(int offset, uint32_t value) { in putUInt32()
137 uint16_t MtpPacket::getContainerCode() const { in getContainerCode()
141 void MtpPacket::setContainerCode(uint16_t code) { in setContainerCode()
145 uint16_t MtpPacket::getContainerType() const { in getContainerType()
149 MtpTransactionID MtpPacket::getTransactionID() const { in getTransactionID()
153 void MtpPacket::setTransactionID(MtpTransactionID id) { in setTransactionID()
157 uint32_t MtpPacket::getParameter(int index) const { in getParameter()
165 void MtpPacket::setParameter(int index, uint32_t value) { in setParameter()
179 int MtpPacket::transfer(struct usb_request* request) { in transfer()