Searched defs:priority (Results 26 - 33 of 33) sorted by relevance

12

/openjdk7/jdk/src/share/classes/java/io/
H A DObjectInputStream.java562 * later callbacks. Within a priority, callbacks are processed in
2189 final int priority; field in class:ObjectInputStream.ValidationList.Callback
2193 Callback(ObjectInputValidation obj, int priority, Callback next, argument
2197 this.priority = priority;
2216 void register(ObjectInputValidation obj, int priority) argument
2224 while (cur != null && priority < cur.priority) {
2230 prev.next = new Callback(obj, priority, cur, acc);
2232 list = new Callback(obj, priority, lis
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.cpp1421 void FrameValues::describe(int owner, intptr_t* location, const char* description, int priority) { argument
1425 fv.priority = priority;
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 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...]
/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/classfile/
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/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
/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

Completed in 106 milliseconds

12