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

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/daemon/
H A DCommunicationException.java26 package com.sun.jmx.snmp.daemon;
H A DSnmpInformHandler.java26 package com.sun.jmx.snmp.daemon ;
H A DCommunicatorServerMBean.java27 package com.sun.jmx.snmp.daemon;
H A DSnmpSubNextRequestHandler.java26 package com.sun.jmx.snmp.daemon;
48 import com.sun.jmx.snmp.daemon.SnmpAdaptorServer;
H A DClientHandler.java27 package com.sun.jmx.snmp.daemon;
H A DSnmpSubBulkRequestHandler.java27 package com.sun.jmx.snmp.daemon;
51 import com.sun.jmx.snmp.daemon.SnmpAdaptorServer;
H A DSnmpMibTree.java27 package com.sun.jmx.snmp.daemon;
H A DSnmpSubRequestHandler.java27 package com.sun.jmx.snmp.daemon;
H A DSnmpAdaptorServerMBean.java27 package com.sun.jmx.snmp.daemon;
632 * @return A vector of {@link com.sun.jmx.snmp.daemon.SnmpInformRequest} objects.
H A DSnmpRequestHandler.java27 package com.sun.jmx.snmp.daemon;
H A DCommunicatorServer.java27 package com.sun.jmx.snmp.daemon;
H A DSnmpAdaptorServer.java27 package com.sun.jmx.snmp.daemon;
92 * <LI>using the {@link com.sun.jmx.snmp.daemon.CommunicatorServer#setPort
2236 * @return A vector of {@link com.sun.jmx.snmp.daemon.SnmpInformRequest}
/openjdk7/jdk/src/share/classes/sun/rmi/runtime/
H A DNewThreadAction.java38 * prefixed with "RMI "), and whether or not it will be a daemon
81 private final boolean daemon; field in class:NewThreadAction
84 String name, boolean daemon)
89 this.daemon = daemon;
100 * @param daemon if true, new thread will be a daemon thread;
101 * if false, new thread will not be a daemon thread
103 public NewThreadAction(Runnable runnable, String name, boolean daemon) { argument
104 this(systemThreadGroup, runnable, name, daemon);
83 NewThreadAction(ThreadGroup group, Runnable runnable, String name, boolean daemon) argument
121 NewThreadAction(Runnable runnable, String name, boolean daemon, boolean user) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/misc/
H A DGC.java54 /* The daemon thread that implements the latency-target mechanism,
55 * or null if there is presently no daemon thread
57 private static Thread daemon = null; field in class:GC
59 /* The lock object for the latencyTarget and daemon fields. The daemon
96 GC.daemon = null;
129 /* Create a new daemon thread in the root thread group */
141 GC.daemon = d;
155 if (daemon == null) {
156 /* Create a new daemon threa
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DThreadGroup.java62 boolean daemon; field in class:ThreadGroup
123 this.daemon = parent.daemon;
186 * Tests if this thread group is a daemon thread group. A
187 * daemon thread group is automatically destroyed when its last
190 * @return <code>true</code> if this thread group is a daemon thread group;
195 return daemon;
209 * Changes the daemon status of this thread group.
214 * A daemon thread group is automatically destroyed when its last
217 * @param daemon i
226 setDaemon(boolean daemon) argument
[all...]
H A DThread.java52 * may or may not also be marked as a daemon. When code running in
55 * creating thread, and is a daemon thread if and only if the
56 * creating thread is a daemon.
59 * non-daemon thread (which typically calls the method named
67 * <li>All threads that are not daemon threads have died, either by
156 /* Whether or not the thread is a daemon thread. */
157 private boolean daemon = false; field in class:Thread
392 this.daemon = parent.isDaemon();
550 * <p>The newly created thread is initially marked as being a daemon
552 * as a daemon threa
[all...]
/openjdk7/hotspot/src/share/vm/services/
H A DthreadService.cpp82 PerfDataManager::create_variable(JAVA_THREADS, "daemon",
99 void ThreadService::add_thread(JavaThread* thread, bool daemon) { argument
113 if (daemon) {
118 void ThreadService::remove_thread(JavaThread* thread, bool daemon) { argument
128 if (daemon) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp1109 void JavaThread::allocate_threadObj(Handle thread_group, char* thread_name, bool daemon, TRAPS) { argument
1147 if (daemon) {
1840 // on the thread (if the thread is the last thread in a daemon ThreadGroup the
1900 // Remove from list of active threads list, and notify VM thread if we are the last non-daemon thread
2810 if (thread_oop != NULL && java_lang_Thread::is_daemon(thread_oop)) st->print("daemon ");
2829 if (java_lang_Thread::is_daemon(thread_obj)) st->print(" daemon");
3896 // + Wait until we are the last non-daemon thread to execute
3924 // Wait until we are the last non-daemon thread to execute
3931 // for another non-daemon thread to finish, then the FlatProfiler
3988 // Now, all Java threads are gone except daemon thread
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Djni.cpp5254 static jint attach_current_thread(JavaVM *vm, void **penv, void *_args, bool daemon) { argument
5301 Threads::add(thread, daemon);
5319 thread->allocate_threadObj(thread_group, thread_name, daemon, THREAD);

Completed in 93 milliseconds