Searched refs:pause (Results 1 - 25 of 28) sorted by relevance

12

/openjdk7/jdk/src/share/demo/applets/SortDemo/
H A DSortAlgorithm.java69 protected void pause() throws Exception { method in class:SortAlgorithm
73 parent.pause(parent.h1, parent.h2);
79 protected void pause(int H1) throws Exception { method in class:SortAlgorithm
83 parent.pause(H1, parent.h2);
89 protected void pause(int H1, int H2) throws Exception { method in class:SortAlgorithm
93 parent.pause(H1, H2);
H A DBidirBubbleSortAlgorithm.java69 pause(st, limit);
86 pause(st, limit);
H A DBubbleSortAlgorithm.java64 pause(i, j);
H A DSortItem.java111 void pause() { method in class:SortItem
112 pause(-1, -1);
119 void pause(int H1) { method in class:SortItem
120 pause(H1, -1);
127 void pause(int H1, int H2) { method in class:SortItem
H A DQSortAlgorithm.java52 * A version of pause() that makes it easier to ensure that we pause
56 super.pause(lo, hi);
/openjdk7/jdk/src/share/classes/sun/management/jdp/
H A DJdpController.java52 * <li>com.sun.management.jdp.pause - set broadcast interval in seconds</li>
65 private final int pause; field in class:JdpController.JDPControllerRunner
68 private JDPControllerRunner(JdpBroadcaster bcast, JdpJmxPacket packet, int pause) { argument
71 this.pause = pause;
80 Thread.sleep(this.pause);
147 int pause = getInteger(
148 System.getProperty("com.sun.management.jdp.pause"), 5,
149 "Invalid jdp pause");
152 pause
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapRequest.java45 LdapRequest(int msgId, boolean pause) { argument
46 this(msgId, pause, -1);
49 LdapRequest(int msgId, boolean pause, int replyQueueCapacity) { argument
51 this.pauseAfterReceipt = pause;
93 * If a queue capacity has been set then trigger a pause when the
98 return true; // trigger the pause
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest4177735.java46 pause(DELAY);
49 pause(DELAY);
68 pause(DELAY);
74 private static void pause(long delay) { method in class:Test4177735
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcTraceSend.cpp245 void send_phase(PausePhase* pause) { argument
249 event.set_name(pause->name());
250 event.set_starttime(pause->start());
251 event.set_endtime(pause->end());
256 void visit(GCPhase* pause) { ShouldNotReachHere(); } argument
257 void visit(ConcurrentPhase* pause) { Unimplemented(); } argument
258 void visit(PausePhase* pause) { argument
261 switch (pause->level()) {
262 case 0: send_phase<EventGCPhasePause>(pause); break;
263 case 1: send_phase<EventGCPhasePauseLevel1>(pause); brea
[all...]
H A DgcTimer.cpp134 // FIXME: This should only be done for pause phases
136 jlong pause = phase->end() - phase->start(); local
137 _sum_of_pauses += pause;
138 _longest_pause = MAX2(pause, _longest_pause);
/openjdk7/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNoEventsTest.java48 static void pause(int timeout) { method in class:NoEventsTest
106 pause(1000);
111 pause(500);
116 pause(1000);
118 pause(500);
120 pause(500);
122 pause(500);
124 pause(500);
133 // pause(500);
135 pause(50
[all...]
/openjdk7/jdk/src/solaris/native/com/sun/media/sound/
H A DPLATFORM_API_SolarisOS_PCM.c234 info->info.play.pause = 1;
241 info->info.record.pause = 1;
283 if (isSource && audioInfo.play.pause) {
284 audioInfo.play.pause = 0;
287 if (!isSource && audioInfo.record.pause) {
288 audioInfo.record.pause = 0;
310 // pause
312 if (isSource && !audioInfo.play.pause) {
313 audioInfo.play.pause = 1;
316 if (!isSource && !audioInfo.record.pause) {
[all...]
/openjdk7/jdk/test/java/lang/management/MemoryMXBean/
H A DPending.java163 pause();
181 pause();
238 private static void pause() { method in class:Pending
/openjdk7/jdk/test/java/awt/Focus/AutoRequestFocusTest/
H A DAutoRequestFocusToFrontTest.java275 pause(100);
303 pause(100);
347 pause(100);
373 pause(100);
423 private static void pause(int msec) { method in class:AutoRequestFocusToFrontTest
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/
H A DAllThreadIds.java184 pause();
227 pause();
262 private static void pause() { method in class:AllThreadIds
/openjdk7/jdk/test/sun/management/jdp/
H A DJdpTest.sh147 -Dcom.sun.management.jdp.pause=5
170 -Dcom.sun.management.jdp.pause=5 \
198 jdp.pause=5 \
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof.h250 jboolean pause; /* pause=y|n */ member in struct:__anon533
325 jboolean pause_cpu_sampling; /* temp pause in cpu sampling */
H A Dhprof_init.c422 "pause=y|n Pause on onload & echo PID n\n"
695 } else if (strcmp(option, "pause") == 0) {
696 if ( !setBinarySwitch(&options, &(gdata->pause)) ) {
697 option_error("pause option value must be y|n");
1354 * Setting gdata->dump_in_process will cause cpu sampling to pause
2008 if ( gdata->pause ) {
/openjdk7/jdk/test/java/net/Authenticator/
H A DB4769350.java355 static void pause (int millis) { method in class:B4769350
/openjdk7/jaxp/src/org/w3c/dom/css/
H A DCSS2Properties.java1331 * See the pause property definition in CSS2.
1335 * See the pause property definition in CSS2.
1341 public void setPause(String pause) argument
1345 * See the pause-after property definition in CSS2.
1349 * See the pause-after property definition in CSS2.
1359 * See the pause-before property definition in CSS2.
1363 * See the pause-before property definition in CSS2.
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A Dos_windows_x86.cpp546 // pause == rep:nop
547 // On systems that don't support pause a rep:nop
550 pause ;
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp804 static void pause();
H A Darguments.cpp1356 tty->print_cr("Automatic selection of the low pause collector"
1357 " based on pause goal of %d (ms)", MaxGCPauseMillis);
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp5498 void os::pause() { function in class:os
5515 "Could not open pause file '%s', continuing immediately.\n", filename);
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp5237 void os::pause() { function in class:os
5254 "Could not open pause file '%s', continuing immediately.\n", filename);

Completed in 231 milliseconds

12