HomeSort by relevance Sort by last modified time
    Searched refs:MsgType (Results 1 - 5 of 5) sorted by null

  /external/llvm/tools/lli/ChildTarget/
ChildTarget.cpp 51 LLIMessageType MsgType;
53 MsgType = ThisChild.waitForIncomingMessage();
54 ThisChild.handleMessage(MsgType);
55 } while (MsgType != LLI_Terminate &&
56 MsgType != LLI_Error);
68 int32_t MsgType = -1;
69 if (ReadBytes(&MsgType, 4) > 0)
70 return (LLIMessageType)MsgType;
175 uint32_t MsgType = (uint32_t)LLI_ChildActive;
176 int rc = WriteBytes(&MsgType, 4)
    [all...]
  /external/llvm/tools/lli/
RemoteTargetExternal.cpp 139 LLIMessageType MsgType = IsCode ? LLI_LoadCodeSection : LLI_LoadDataSection;
140 if (!SendHeader(MsgType)) {
214 uint32_t MsgType;
215 if (!ReadBytes(&MsgType, 4)) {
219 if (MsgType != (uint32_t)ExpectedMsgType) {
224 ErrorMsg += MsgType;
268 bool RemoteTargetExternal::SendHeader(LLIMessageType MsgType) {
273 if (!WriteBytes(&MsgType, 4)) {
  /external/deqp/execserver/
xsProtocol.hpp 88 template <int MsgType>
92 SimpleMessage (const deUint8* data, int dataSize) : Message((MessageType)MsgType) { DE_UNREF(data); XS_CHECK_MSG(dataSize == 0, "No payload expected"); }
93 SimpleMessage (void) : Message((MessageType)MsgType) {}
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc.c 380 static int MsgType= PHDAL4NFC_WRITE_MESSAGE;
381 int * pmsgType=&MsgType;
713 static int MsgType= PHDAL4NFC_READ_MESSAGE;
714 int * pmsgType=&MsgType;
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_callbacks.cc 277 template <class ParamType, class MsgType>
285 dispatcher_host->Send(new MsgType(*params));

Completed in 318 milliseconds