Searched refs:MsgType (Results 1 – 9 of 9) sorted by relevance
/external/llvm/tools/lli/ChildTarget/ |
D | ChildTarget.cpp | 51 LLIMessageType MsgType; in main() local 53 MsgType = ThisChild.waitForIncomingMessage(); in main() 54 ThisChild.handleMessage(MsgType); in main() 55 } while (MsgType != LLI_Terminate && in main() 56 MsgType != LLI_Error); in main() 68 int32_t MsgType = -1; in waitForIncomingMessage() local 69 if (ReadBytes(&MsgType, 4) > 0) in waitForIncomingMessage() 70 return (LLIMessageType)MsgType; in waitForIncomingMessage() 175 uint32_t MsgType = (uint32_t)LLI_ChildActive; in sendChildActive() local 176 int rc = WriteBytes(&MsgType, 4); in sendChildActive() [all …]
|
/external/llvm/tools/lli/ |
D | RemoteTargetExternal.cpp | 139 LLIMessageType MsgType = IsCode ? LLI_LoadCodeSection : LLI_LoadDataSection; in SendLoadSection() local 140 if (!SendHeader(MsgType)) { in SendLoadSection() 214 uint32_t MsgType; in ReceiveHeader() local 215 if (!ReadBytes(&MsgType, 4)) { in ReceiveHeader() 219 if (MsgType != (uint32_t)ExpectedMsgType) { in ReceiveHeader() 224 ErrorMsg += MsgType; in ReceiveHeader() 268 bool RemoteTargetExternal::SendHeader(LLIMessageType MsgType) { in SendHeader() argument 273 if (!WriteBytes(&MsgType, 4)) { in SendHeader()
|
/external/parameter-framework/upstream/remote-processor/ |
D | Message.h | 44 enum class MsgType : std::uint8_t enum 51 CMessage(MsgType ucMsgId); 78 MsgType getMsgId() const; 138 MsgType _ucMsgId;
|
D | AnswerMessage.cpp | 38 : base(bSuccess ? MsgType::ESuccessAnswer : MsgType::EFailureAnswer), _strAnswer(strAnswer) in CAnswerMessage() 64 return getMsgId() == MsgType::ESuccessAnswer; in success()
|
D | Message.cpp | 40 CMessage::CMessage(MsgType ucMsgId) : _ucMsgId(ucMsgId), _uiIndex(0) in CMessage() 44 CMessage::CMessage() : _ucMsgId(MsgType::EInvalid), _uiIndex(0) in CMessage() 49 CMessage::MsgType CMessage::getMsgId() const in getMsgId()
|
D | RequestMessage.cpp | 42 : base(MsgType::ECommandRequest), _strCommand(strCommand) in CRequestMessage()
|
/external/deqp/execserver/ |
D | xsProtocol.hpp | 88 template <int MsgType> 92 …SimpleMessage (const deUint8* data, size_t dataSize) : Message((MessageType)MsgType) { DE_UNREF(da… in SimpleMessage() 93 SimpleMessage (void) : Message((MessageType)MsgType) {} in SimpleMessage()
|
/external/libnfc-nxp/Linux_x86/ |
D | phDal4Nfc.c | 380 static int MsgType= PHDAL4NFC_WRITE_MESSAGE; in phDal4Nfc_Write() local 381 int * pmsgType=&MsgType; in phDal4Nfc_Write() 713 static int MsgType= PHDAL4NFC_READ_MESSAGE; in phDal4Nfc_ReaderThread() local 714 int * pmsgType=&MsgType; in phDal4Nfc_ReaderThread()
|
/external/opencv3/modules/videoio/src/ |
D | cap_gphoto2.cpp | 200 enum MsgType enum in cv::gphoto2::DigitalCameraCapture 208 void message(MsgType msgType, const char * msg, 1167 void DigitalCameraCapture::message(MsgType msgType, const char * msg, in message()
|