Searched refs:priority (Results 26 - 45 of 45) sorted by relevance

12

/openjdk7/jdk/src/share/classes/com/sun/jndi/dns/
H A DResourceRecord.java425 int priority = getUShort(pos);
432 return (priority + " " + weight + " " + port + " " + target);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp962 ThreadPriority priority; local
970 priority = java_lang_Thread::priority(thread_obj());
992 info_ptr->priority = priority;
1121 JvmtiEnv::RunAgentThread(jthread thread, jvmtiStartFunction proc, const void* arg, jint priority) { argument
1126 if (priority < JVMTI_THREAD_MIN_PRIORITY || priority > JVMTI_THREAD_MAX_PRIORITY) {
1147 java_lang_Thread::set_priority(thread_hndl(), (ThreadPriority)priority);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dthread.cpp417 prio = java_lang_Thread::priority(thread_oop);
429 trace("get priority", thread);
430 ThreadPriority priority; local
432 (void)os::get_priority(thread, priority);
433 assert(MinPriority <= priority && priority <= MaxPriority, "non-Java priority found");
434 return priority;
437 void Thread::set_priority(Thread* thread, ThreadPriority priority) { argument
438 trace("set priority", threa
[all...]
H A Dos.hpp72 NoPriority = -1, // Initial non-priority value
73 MinPriority = 1, // Minimum priority
74 NormPriority = 5, // Normal (non-daemon) priority
75 NearMaxPriority = 9, // High priority, used for VMThread
76 MaxPriority = 10, // Highest priority, used for WatcherThread
78 CriticalPriority = 11 // Critical thread priority
422 static void yield(); // Yields to all threads with same priority
432 static void yield_all(int attempts = 0); // Yields to all other threads including lower priority
434 static OSReturn set_priority(Thread* thread, ThreadPriority priority);
435 static OSReturn get_priority(const Thread* const thread, ThreadPriority& priority);
[all...]
H A Dos.cpp196 int priority = java_to_os_priority[p]; local
197 return set_native_priority(thread, priority);
205 OSReturn os::get_priority(const Thread* const thread, ThreadPriority& priority) { argument
212 priority = (ThreadPriority)p;
H A Dframe.cpp1421 void FrameValues::describe(int owner, intptr_t* location, const char* description, int priority) { argument
1425 fv.priority = priority;
H A DvmThread.cpp189 // Assuming VMOperation queue is two-level priority queue. If there are
194 // simple counter based scheduling to prevent starvation of lower priority
281 // possible to set the VM thread priority higher than any Java thread.
666 op->set_calling_thread(prev_vm_operation->calling_thread(), prev_vm_operation->priority());
H A Dthread.hpp325 static void set_priority(Thread* thread, ThreadPriority priority);
992 // Prepare thread and add to priority queue. If a priority is
993 // not specified, use the priority of the thread object. Threads_lock
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStepPattern.java103 public void setPriority(double priority) { argument
104 _priority = priority;
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLContext.c521 GLclampf priority = 1.0f; local
527 j2d_glPrioritizeTextures(1, &texID, &priority);
H A DOGLTextRenderer.c199 GLclampf priority = 1.0f; local
220 j2d_glPrioritizeTextures(1, &gcinfo->cacheID, &priority);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageRepresentation.java182 * It is subclass' responsibility to propagate acceleration priority
946 public void setAccelerationPriority(float priority) { argument
948 bimage.setAccelerationPriority(priority);
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.hpp314 static ThreadPriority priority(oop java_thread);
315 static void set_priority(oop java_thread, ThreadPriority priority);
H A DjavaClasses.cpp861 ThreadPriority java_lang_Thread::priority(oop java_thread) { function in class:java_lang_Thread
866 void java_lang_Thread::set_priority(oop java_thread, ThreadPriority priority) { argument
867 java_thread->int_field_put(_priority_offset, priority);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DDirectAudioDevice.java1095 int priority = Thread.NORM_PRIORITY
1100 priority, // priority
H A DRealTimeSequencer.java1261 int priority = Thread.NORM_PRIORITY
1266 priority, // priority
/openjdk7/jdk/src/share/javavm/export/
H A Djvmti.h520 jint priority; member in struct:_jvmtiThreadInfo
1060 jint priority);
1868 jint priority) {
1869 return functions->RunAgentThread(this, thread, proc, arg, priority);
1865 RunAgentThread(jthread thread, jvmtiStartFunction proc, const void* arg, jint priority) argument
/openjdk7/jdk/src/windows/native/sun/java2d/opengl/J2D_GL/
H A Dwglext.h500 typedef void* (WINAPI * PFNWGLALLOCATEMEMORYNVPROC) (GLsizei size, GLfloat readfreq, GLfloat writefreq, GLfloat priority);
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DSSLContextImpl.java320 * Return the list of all available CipherSuites with a priority of
338 if (!suite.allowed || suite.priority < minPriority) {
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp1841 // takes priority over the console control handler for CTRL_CLOSE_EVENT.
3470 OSReturn os::set_native_priority(Thread* thread, int priority) { argument
3472 bool ret = SetThreadPriority(thread->osthread()->thread_handle(), priority) != 0;
3915 // initialize thread priority policy

Completed in 132 milliseconds

12