Home
last modified time | relevance | path

Searched refs:RemoteTargetExternal (Results 1 – 5 of 5) sorted by relevance

/external/llvm/tools/lli/
DRemoteTargetExternal.cpp31 bool RemoteTargetExternal::allocateSpace(size_t Size, unsigned Alignment, in allocateSpace()
52 bool RemoteTargetExternal::loadData(uint64_t Address, const void *Data, size_t Size) { in loadData()
76 bool RemoteTargetExternal::loadCode(uint64_t Address, const void *Data, size_t Size) { in loadCode()
100 bool RemoteTargetExternal::executeCode(uint64_t Address, int32_t &RetVal) { in executeCode()
114 void RemoteTargetExternal::stop() { in stop()
119 bool RemoteTargetExternal::SendAllocateSpace(uint32_t Alignment, uint32_t Size) { in SendAllocateSpace()
135 bool RemoteTargetExternal::SendLoadSection(uint64_t Addr, in SendLoadSection()
155 bool RemoteTargetExternal::SendExecute(uint64_t Addr) { in SendExecute()
170 bool RemoteTargetExternal::SendTerminate() { in SendTerminate()
175 bool RemoteTargetExternal::Receive(LLIMessageType Msg) { in Receive()
[all …]
DRemoteTargetExternal.h31 class RemoteTargetExternal : public RemoteTarget {
108 RemoteTargetExternal(std::string &Name) : RemoteTarget(), ChildName(Name) {} in RemoteTargetExternal() function
109 ~RemoteTargetExternal() override {} in ~RemoteTargetExternal()
DCMakeLists.txt43 RemoteTargetExternal.cpp
DAndroid.mk15 RemoteTargetExternal.cpp \
Dlli.cpp652 Target.reset(new RemoteTargetExternal(ChildExecPath)); in main()