Searched defs:trigger (Results 1 - 1 of 1) sorted by relevance

/art/runtime/arch/x86/
H A Dfault_handler_x86.cc337 // where xxx is the offset of the suspend trigger.
339 uint32_t trigger = Thread::ThreadSuspendTriggerOffset<8>().Int32Value(); local
341 uint32_t trigger = Thread::ThreadSuspendTriggerOffset<4>().Int32Value();
346 uint8_t checkinst1[] = {0x65, 0x48, 0x8b, 0x04, 0x25, static_cast<uint8_t>(trigger & 0xff),
347 static_cast<uint8_t>((trigger >> 8) & 0xff), 0, 0};
349 uint8_t checkinst1[] = {0x64, 0x8b, 0x05, static_cast<uint8_t>(trigger & 0xff),
350 static_cast<uint8_t>((trigger >> 8) & 0xff), 0, 0};
393 // Now remove the suspend trigger that caused this fault.
395 VLOG(signals) << "removed suspend trigger invoking test suspend";

Completed in 5 milliseconds