OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LLIMessageType
(Results
1 - 4
of
4
) sorted by null
/external/llvm/tools/lli/
RemoteTargetMessage.h
10
// Definition of the
LLIMessageType
enum which is used for communication with a
61
enum
LLIMessageType
{
RemoteTargetExternal.h
123
bool Receive(
LLIMessageType
Msg);
124
bool Receive(
LLIMessageType
Msg, int32_t &Data);
125
bool Receive(
LLIMessageType
Msg, uint64_t &Data);
128
bool ReceiveHeader(
LLIMessageType
Msg);
130
bool SendHeader(
LLIMessageType
Msg);
RemoteTargetExternal.cpp
139
LLIMessageType
MsgType = IsCode ? LLI_LoadCodeSection : LLI_LoadDataSection;
175
bool RemoteTargetExternal::Receive(
LLIMessageType
Msg) {
187
bool RemoteTargetExternal::Receive(
LLIMessageType
Msg, int32_t &Data) {
198
bool RemoteTargetExternal::Receive(
LLIMessageType
Msg, uint64_t &Data) {
209
bool RemoteTargetExternal::ReceiveHeader(
LLIMessageType
ExpectedMsgType) {
268
bool RemoteTargetExternal::SendHeader(
LLIMessageType
MsgType) {
/external/llvm/tools/lli/ChildTarget/
ChildTarget.cpp
17
LLIMessageType
waitForIncomingMessage();
18
void handleMessage(
LLIMessageType
messageType);
51
LLIMessageType
MsgType;
67
LLIMessageType
LLIChildTarget::waitForIncomingMessage() {
70
return (
LLIMessageType
)MsgType;
74
void LLIChildTarget::handleMessage(
LLIMessageType
messageType) {
Completed in 317 milliseconds