Lines Matching refs:hdr
60 CoreCmdHeader hdr;
61 hdr.bytes = dataLen;
62 hdr.cmdID = cmdID;
63 mToCoreSocket.writeAsync(&hdr, sizeof(hdr));
209 ClientCmdHeader hdr;
210 hdr.bytes = dataLen;
211 hdr.cmdID = cmdID;
212 hdr.userID = usrID;
214 mToClientSocket.writeAsync(&hdr, sizeof(hdr));
221 if (!mToClient.makeSpaceNonBlocking(dataLen + sizeof(hdr))) {