Home | History | Annotate | Download | only in handler

Lines Matching full:address

61 // Context information for the callbacks when validating address by listing
64 uintptr_t address;
67 AddressValidatingContext() : address(0UL), is_mapped(false) {
84 // It uses the module's adderss range to validate the address.
90 (addr->address >= module_info.start_addr) &&
91 (addr->address <= module_info.start_addr +
289 addr.address = current_esp;
387 // Check if the address is a valid virtual address.
388 // If the address is in any of the mapped modules, we take it as valid.
390 bool SolarisLwp::IsAddressMapped(uintptr_t address) const {
392 addr.address = address;