Searched refs:when (Results 1 - 4 of 4) sorted by last modified time

/art/runtime/
H A Ddebugger.cc539 * address: for dt_socket, "host:port", or just "port" when listening
544 * onthrow=<exception-name>: connect to debugger when exception thrown
545 * onuncaught=y|n: connect to debugger when uncaught exception thrown
633 LOG(ERROR) << "Must specify JDWP host and port when server=n: " << options;
656 // if we don't abort the user is likely to think they're talking to us when they're actually
792 // This prevents us from having any pending deoptimization request when the debugger attaches
1340 // TODO: fix when annotalysis correctly handles non-member functions.
2239 // Skip the JDWP thread. Some debuggers get bent out of shape when they can't suspend and
2849 // Step into method calls. We break when the line number
2863 // Step over method calls. We break when th
3952 DdmHandleHpifChunk(HpifWhen when) argument
3967 DdmHandleHpsgNhsgChunk(Dbg::HpsgWhen when, Dbg::HpsgWhat what, bool native) argument
4285 Dbg::HpsgWhen when; local
[all...]
H A Ddebugger.h64 /* boolean; only set when we're in the tail end of an event handler */
115 // This is used to support SD_INTO and SD_OVER single-step depths so we detect when a single-step
120 // The stack depth when this single-step was initiated. This is used to support SD_OVER and SD_OUT
224 * when the debugger attaches.
609 static int DdmHandleHpifChunk(HpifWhen when)
620 static bool DdmHandleHpsgNhsgChunk(HpsgWhen when, HpsgWhat what, bool native);
667 // Deoptimization requests to be processed each time the event list is updated. This is used when
675 // Note: we fully deoptimize on the first event only (when the counter is set to 1). We fully
676 // undeoptimize when the last event is unregistered (when th
[all...]
/art/runtime/native/
H A Dorg_apache_harmony_dalvik_ddmc_DdmVmInternal.cc157 static jint DdmVmInternal_heapInfoNotify(JNIEnv* env, jclass, jint when) { argument
159 return Dbg::DdmHandleHpifChunk(static_cast<Dbg::HpifWhen>(when));
162 static jboolean DdmVmInternal_heapSegmentNotify(JNIEnv*, jclass, jint when, jint what, jboolean native) { argument
163 return Dbg::DdmHandleHpsgNhsgChunk(static_cast<Dbg::HpsgWhen>(when), static_cast<Dbg::HpsgWhat>(what), native);
/art/test/092-locale/src/
H A DMain.java73 Date when = usaCal.getTime();
77 + fmt.format(when));
89 when = franceCal.getTime();
93 + fmt.format(when));

Completed in 104 milliseconds