Home | History | Annotate | Download | only in lli

Lines Matching full:address

32                                  uint64_t &Address) {
39 if (!Receive(LLI_AllocationResult, Address)) {
43 if (Address == 0) {
48 format("%llx", Address) << "\n");
52 bool RemoteTargetExternal::loadData(uint64_t Address, const void *Data, size_t Size) {
53 DEBUG(dbgs() << "Message [load data] addr: 0x" << format("%llx", Address) <<
55 if (!SendLoadSection(Address, Data, (uint32_t)Size, false)) {
76 bool RemoteTargetExternal::loadCode(uint64_t Address, const void *Data, size_t Size) {
77 DEBUG(dbgs() << "Message [load code] addr: 0x" << format("%llx", Address) <<
79 if (!SendLoadSection(Address, Data, (uint32_t)Size, true)) {
100 bool RemoteTargetExternal::executeCode(uint64_t Address, int32_t &RetVal) {
101 DEBUG(dbgs() << "Message [exectue code] addr: " << Address << "\n");
102 if (!SendExecute(Address)) {