Home | History | Annotate | Download | only in mtp

Lines Matching defs:const

41                     MtpStringBuffer(const char* src);
42 MtpStringBuffer(const uint16_t* src);
43 MtpStringBuffer(const MtpStringBuffer& src);
46 void set(const char* src);
47 void set(const uint16_t* src);
50 void writeToPacket(MtpDataPacket* packet) const;
52 inline int getCharCount() const { return mCharCount; }
53 inline int getByteCount() const { return mByteCount; }
55 inline operator const char*() const { return (const char *)mBuffer; }