Home | History | Annotate | Download | only in Target

Lines Matching refs:Address

314     Address so_addr;
315 // Attempt to resolve our load address if possible, though it is ok if
318 // Try and resolve as a load address if possible
322 // The address didn't resolve, so just set this as an absolute address
330 Target::CreateBreakpoint (Address &addr, bool internal)
573 error.SetErrorStringWithFormat("invalid watch address: %" PRIu64, addr);
582 // Currently we only support one watchpoint per address, with total number
1226 Target::ReadMemoryFromFileCache (const Address& addr, void *dst, size_t dst_len, Error &error)
1253 error.SetErrorString("address isn't from a object file");
1256 error.SetErrorString("address isn't in a module");
1259 error.SetErrorString("address doesn't contain a section that points to a section in a object file");
1265 Target::ReadMemory (const Address& addr,
1275 // with the actual load address
1283 Address resolved_addr;
1289 // yet and anything we are given is a file address.
1290 file_addr = addr.GetOffset(); // "addr" doesn't have a section, so its offset is the file address
1299 load_addr = addr.GetOffset(); // "addr" doesn't have a section, so its offset is the load address
1349 // If the address is not section offset we have an address that
1350 // doesn't resolve to any address in any currently loaded shared
1369 Target::ReadCStringFromMemory (const Address& addr, std::string &out_str, Error &error)
1374 Address address(addr);
1377 size_t length = ReadCStringFromMemory (address, buf, sizeof(buf), error);
1387 address = Address(curr_addr);
1394 Target::ReadCStringFromMemory (const Address& addr, char *dst, size_t dst_max_len, Error &result_error)
1404 Address address(addr);
1413 size_t bytes_read = ReadMemory (address, false, curr_dst, bytes_to_read, error);
1431 address = Address(curr_addr);
1445 Target::ReadScalarIntegerFromMemory (const Address& addr,
1479 Target::ReadUnsignedIntegerFromMemory (const Address& addr,
1497 Target::ReadPointerFromMemory (const Address& addr,
1500 Address &pointer_addr)
1516 // yet and anything we are given is a file address.
1528 // an address with no section
1919 // Bit zero isn't set, check if the address is a multiple of 2?
1922 // The address is a multiple of 2 so it must be thumb, set bit zero
1927 // We checked the address and the address claims to be the alternate ISA
2342 { "disable-aslr" , OptionValue::eTypeBoolean , false, true , NULL, NULL, "Disable Address Space Layout Randomization (ASLR)" },