Home | History | Annotate | Download | only in CoreIPC

Lines Matching refs:ArgumentDecoder

39 class ArgumentDecoder {
41 ArgumentDecoder(const uint8_t* buffer, size_t bufferSize);
42 ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>&);
43 ~ArgumentDecoder();
53 // The data in the data reference here will only be valid for the lifetime of the ArgumentDecoder object.
107 ArgumentDecoder(const ArgumentDecoder*);
108 ArgumentDecoder* operator=(const ArgumentDecoder*);
124 template<> inline bool ArgumentDecoder::decode(bool& n)
129 template<> inline bool ArgumentDecoder::decode(uint32_t& n)
134 template<> inline bool ArgumentDecoder::decode(uint64_t& n)
139 template<> inline bool ArgumentDecoder::decode(int32_t& n)
144 template<> inline bool ArgumentDecoder::decode(int64_t& n)
149 template<> inline bool ArgumentDecoder::decode(float& n)
154 template<> inline bool ArgumentDecoder::decode(double& n)