Home
last modified time | relevance | path

Searched refs:MsgType (Results 1 – 9 of 9) sorted by relevance

/external/llvm/tools/lli/ChildTarget/
DChildTarget.cpp51 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/
DRemoteTargetExternal.cpp139 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/
DMessage.h44 enum class MsgType : std::uint8_t enum
51 CMessage(MsgType ucMsgId);
78 MsgType getMsgId() const;
138 MsgType _ucMsgId;
DAnswerMessage.cpp38 : base(bSuccess ? MsgType::ESuccessAnswer : MsgType::EFailureAnswer), _strAnswer(strAnswer) in CAnswerMessage()
64 return getMsgId() == MsgType::ESuccessAnswer; in success()
DMessage.cpp40 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()
DRequestMessage.cpp42 : base(MsgType::ECommandRequest), _strCommand(strCommand) in CRequestMessage()
/external/deqp/execserver/
DxsProtocol.hpp88 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/
DphDal4Nfc.c380 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/
Dcap_gphoto2.cpp200 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()