Home | History | Annotate | Download | only in execserver

Lines Matching refs:deUint8

75 	virtual void	write			(std::vector<deUint8>& buf) const = DE_NULL;
77 static void parseHeader (const deUint8* data, int dataSize, MessageType& type, int& messageSize);
78 static void writeHeader (MessageType type, int messageSize, deUint8* dst, int bufSize);
81 void writeNoData (std::vector<deUint8>& buf) const;
92 SimpleMessage (const deUint8* data, int dataSize) : Message((MessageType)MsgType) { DE_UNREF(data); XS_CHECK_MSG(dataSize == 0, "No payload expected"); }
96 void write (std::vector<deUint8>& buf) const { writeNoData(buf); }
108 HelloMessage (const deUint8* data, int dataSize);
112 void write (std::vector<deUint8>& buf) const;
123 ExecuteBinaryMessage (const deUint8* data, int dataSize);
127 void write (std::vector<deUint8>& buf) const;
135 ProcessLogDataMessage (const deUint8* data, int dataSize);
138 void write (std::vector<deUint8>& buf) const;
146 ProcessLaunchFailedMessage (const deUint8* data, int dataSize);
150 void write (std::vector<deUint8>& buf) const;
158 ProcessFinishedMessage (const deUint8* data, int dataSize);
162 void write (std::vector<deUint8>& buf) const;
170 InfoMessage (const deUint8* data, int dataSize);
173 void write (std::vector<deUint8>& buf) const;
182 TestMessage (const deUint8* data, int dataSize);
185 void write (std::vector<deUint8>& buf) const;