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

/art/runtime/arch/x86/
H A Dfault_handler_x86.cc324 // where xxx is the offset of the suspend trigger.
326 uint32_t trigger = Thread::ThreadSuspendTriggerOffset<8>().Int32Value(); local
328 uint32_t trigger = Thread::ThreadSuspendTriggerOffset<4>().Int32Value();
333 uint8_t checkinst1[] = {0x65, 0x48, 0x8b, 0x04, 0x25, static_cast<uint8_t>(trigger & 0xff),
334 static_cast<uint8_t>((trigger >> 8) & 0xff), 0, 0};
336 uint8_t checkinst1[] = {0x64, 0x8b, 0x05, static_cast<uint8_t>(trigger & 0xff),
337 static_cast<uint8_t>((trigger >> 8) & 0xff), 0, 0};
380 // Now remove the suspend trigger that caused this fault.
382 VLOG(signals) << "removed suspend trigger invoking test suspend";

Completed in 1782 milliseconds