Lines Matching defs:when

591     // if we don't abort the user is likely to think they're talking to us when they're actually
724 // This prevents us from having any pending deoptimization request when the debugger attaches
1280 // TODO: fix when annotalysis correctly handles non-member functions.
2302 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2880 // We need to be sure no exception is pending when calling JdwpState::PostLocationEvent.
3060 // Step into method calls. We break when the line number
3074 // Step over method calls. We break when the line number is
3098 // Return from the current method. We break when the frame
3364 VLOG(jdwp) << "No need for deoptimization when fully running with interpreter for method "
3379 // Therefore we must not hold any lock when we call it.
3607 // of the step, thus we only force interpreter when we are not below of
3871 * require one "resume" for each "suspend", but when asked to execute
3876 * It's unclear what this means when the event specifies "resume all"
3965 // Attaches the DebugInvokeReq to the target thread so it executes the method when
4131 // Attach the reply to DebugInvokeReq so it can be sent to the debugger when the event thread
4302 * Send a notification when a thread starts, stops, or changes its name.
4304 * Because we broadcast the full set of threads when the notifications are
4395 int Dbg::DdmHandleHpifChunk(HpifWhen when) {
4396 if (when == HPIF_WHEN_NOW) {
4397 DdmSendHeapInfo(when);
4401 if (when != HPIF_WHEN_NEVER && when != HPIF_WHEN_NEXT_GC && when != HPIF_WHEN_EVERY_GC) {
4402 LOG(ERROR) << "invalid HpifWhen value: " << static_cast<int>(when);
4406 gDdmHpifWhen = when;
4410 bool Dbg::DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) {
4411 if (when != HPSG_WHEN_NEVER && when != HPSG_WHEN_EVERY_GC) {
4412 LOG(ERROR) << "invalid HpsgWhen value: " << static_cast<int>(when);
4422 gDdmNhsgWhen = when;
4425 gDdmHpsgWhen = when;
4432 // If there's a one-shot 'when', reset it.
4450 * [u1]: capture reason (same as 'when' value from server)
4738 Dbg::HpsgWhen when = native ? gDdmNhsgWhen : gDdmHpsgWhen;
4740 if (when == HPSG_WHEN_NEVER) {