Searched defs:status (Results 151 - 166 of 166) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/sun/print/
H A DServiceDialog.java86 * Waiting print status (user response pending).
91 * Approve print status (user activated "Print" or "OK").
96 * Cancel print status (user activated "Cancel");
113 private int status; field in class:ServiceDialog
330 * Returns the current status of the dialog (whether the user has selected
334 return status;
343 if (status == APPROVE) {
356 if (status == APPROVE) {
364 * Sets the current status flag for the dialog and disposes it (thus
367 public void dispose(int status) { argument
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivation.java812 transient int status = NORMAL; field in class:Activation.GroupEntry
872 if (child != null && status != CREATING) {
877 status = NORMAL;
1015 } else if (child != null && status == NORMAL) {
1016 status = TERMINATE;
1046 status = NORMAL;
1052 if (child != null && status != TERMINATING) {
1054 status = TERMINATING;
1067 switch (status) {
1226 status
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTAccessor.java300 /** Sets the synchronous status of focus requests on lightweight
303 void setLWRequestStatus(Window changed, boolean status); argument
/openjdk7/hotspot/src/share/vm/runtime/
H A Darguments.cpp1753 bool status = true; local
1771 status = false;
1774 return status;
1780 bool status = true; local
1781 status = status && verify_min_value(StackYellowPages, 1, "StackYellowPages");
1782 status = status && verify_min_value(StackRedPages, 1, "StackRedPages");
1784 status = status
1794 bool status = true; local
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Toolkit.cpp1270 int status = *static_cast<int*>(param); local
1272 AwtToolkit::GetInstance().QuitMessageLoop(status);
1275 void AwtToolkit::QuitMessageLoop(int status) { argument
1282 InvokeFunction(DoQuitMessageLoop, &status);
1292 if (status == EXIT_ALL_ENCLOSING_LOOPS) {
1308 m_messageLoopResult = status;
1835 : status(None), wrongThread(false), threadId(0),
1854 if (status > Preloading) {
1875 if (status > None) {
1876 // the thread is already running (status
[all...]
H A Dawt_Window.cpp1653 MsgRouting AwtWindow::WmShowWindow(BOOL show, UINT status) argument
1674 if (show && (status == SW_PARENTOPENING)) {
1679 return AwtCanvas::WmShowWindow(show, status);
2587 * the current visibility status of the window.
H A Dawt_Component.cpp2046 MsgRouting AwtComponent::WmShowWindow(BOOL show, UINT status) argument
3013 // is unaffected by the dead status. We do this by
/openjdk7/jdk/src/share/classes/sun/security/tools/policytool/
H A DPolicyTool.java1186 * displays a dialog box describing the status of an event
1188 void displayStatusDialog(Window w, String status) { argument
1198 Label label = new Label(status);
2305 // display status
2711 // display status
3535 // display status
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnv.cpp260 jint status = klass->jvmti_class_status(); local
261 if (status & (JVMTI_CLASS_STATUS_ERROR)) {
264 if (status & (JVMTI_CLASS_STATUS_ARRAY)) {
2393 jint status = klass->jvmti_class_status(); local
2394 if (status & (JVMTI_CLASS_STATUS_ERROR)) {
2397 if (status & (JVMTI_CLASS_STATUS_ARRAY)) {
2425 jint status = klass->jvmti_class_status(); local
2426 if (status & (JVMTI_CLASS_STATUS_ERROR)) {
2429 if (status & (JVMTI_CLASS_STATUS_ARRAY)) {
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MToolkit.c797 /* If something went wrong, restore the original status */
1516 Status status; local
1518 status = XQueryTree(awt_display, child, &root, &parent,
1520 if (status == 0) return False; /* should be an error of some sort? */
2384 int status; local
2429 status = XGetWindowProperty(dpy, owner,
2435 if (status != Success) {
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXlibWrapper.c745 int32_t status; local
764 status = Xutf8TextListToTextProperty((Display *)jlong_to_ptr(display), &cname, 1,
767 status = XmbTextListToTextProperty((Display *)jlong_to_ptr(display), &cname, 1,
772 if (status == Success || status > 0) {
846 /* Request status */
847 int status; local
857 status = XGetWindowProperty((Display*)jlong_to_ptr(display), window,
861 if (status != Success || string == NULL) {
931 Status status; local
1348 int status; local
1379 jint status; local
1397 jint status; local
1553 Status status; local
2140 jboolean status; local
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaClasses.cpp921 // Write the thread status value to threadStatus field in java.lang.Thread java class.
923 java_lang_Thread::ThreadStatus status) {
926 java_thread->int_field_put(_thread_status_offset, status);
930 // Read thread status value from threadStatus field in java.lang.Thread java class.
940 // enough info for a valid unknown status.
990 assert(JDK_Version::is_gte_jdk15x_version() && _thread_status_offset != 0, "Must have thread status");
991 ThreadStatus status = (java_lang_Thread::ThreadStatus)java_thread->int_field(_thread_status_offset); local
992 switch (status) {
922 set_thread_status(oop java_thread, java_lang_Thread::ThreadStatus status) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.cpp3064 ParMarkBitMap::IterationStatus status; local
3065 status = mbm->iterate(&update_closure, &fill_closure, beg_addr, end_addr,
3067 if (status == ParMarkBitMap::incomplete) {
3388 IterationStatus status = bitmap->iterate(&closure, cur_addr, end_addr); local
3390 if (status == ParMarkBitMap::incomplete) {
3400 status = closure.do_addr(obj_beg, bitmap->obj_size(obj_beg, obj_end));
3401 assert(status != ParMarkBitMap::would_overflow, "sanity");
3405 status = ParMarkBitMap::would_overflow;
3409 if (status == ParMarkBitMap::would_overflow) {
3413 status
3521 ParMarkBitMap::IterationStatus status; local
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1565 int status = gettimeofday(&time, NULL); local
1584 int status = gettimeofday(&time, NULL); local
1585 assert(status != -1, "bsd error");
1691 int status = Bsd::clock_gettime(CLOCK_MONOTONIC, &tp); local
1692 assert(status == 0, "gettime error");
1697 int status = gettimeofday(&time, NULL); local
1698 assert(status != -1, "bsd error");
4004 int status = pthread_kill(osthread->pthread_id(), SR_signum); local
4005 assert_status(status == 0, status, "pthread_kil
4792 int status = getrlimit(RLIMIT_NOFILE, &nbr_files); local
5586 int status = gettimeofday(&now, NULL); local
5627 int status = pthread_mutex_lock(_mutex); local
5667 int status = pthread_mutex_lock(_mutex); local
5733 int status = pthread_mutex_lock(_mutex); local
5794 int status = gettimeofday(&now, NULL); local
5874 int status ; local
5928 int s, status ; local
5997 int status; local
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1372 int status = gettimeofday(&time, NULL); local
1393 int status = gettimeofday(&time, NULL); local
1394 assert(status != -1, "linux error");
1482 int status = Linux::clock_gettime(CLOCK_MONOTONIC, &tp); local
1483 assert(status == 0, "gettime error");
1488 int status = gettimeofday(&time, NULL); local
1489 assert(status != -1, "linux error");
3850 int status = pthread_kill(osthread->pthread_id(), SR_signum); local
3851 assert_status(status == 0, status, "pthread_kil
4602 int status = getrlimit(RLIMIT_NOFILE, &nbr_files); local
4751 int status = pthread_cond_timedwait(_cond, _mutex, _abstime); local
5325 int status = gettimeofday(&now, NULL); local
5366 int status = pthread_mutex_lock(_mutex); local
5406 int status = pthread_mutex_lock(_mutex); local
5472 int status = pthread_mutex_lock(_mutex); local
5533 int status = gettimeofday(&now, NULL); local
5613 int status ; local
5667 int s, status ; local
[all...]
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1275 int status; local
1334 status = thr_create(NULL, stack_size, java_start, thread, flags, &tid);
1335 if (status != 0) {
1601 int status = thr_continue(thread->osthread()->thread_id()); local
1602 assert_status(status == 0, status, "thr_continue failed");
1780 int fd = ::open("/proc/self/status", O_RDONLY);
1784 pstatus_t status;
1785 int res = os::read(fd, (void*) &status, sizeof(pstatus_t));
1790 return status
2282 jboolean status = false; local
4269 int status = 0; local
4303 int status = thr_getprio(thread->osthread()->thread_id(), &p); local
4409 int status = thr_kill(osthread->thread_id(), os::Solaris::SIGinterrupt()); local
4464 int status = thr_kill(osthread->thread_id(), os::Solaris::SIGasync()); local
5478 int status = getrlimit(RLIMIT_NOFILE, &nbr_files); local
6247 int status = gettimeofday(&now, NULL); local
6312 int status = os::Solaris::mutex_lock(_mutex); local
6354 int status = os::Solaris::mutex_lock(_mutex); local
6359 int status = os::Solaris::cond_timedwait(_cond, _mutex, &abst); local
6398 int status = os::Solaris::mutex_lock(_mutex); local
6449 int status = gettimeofday(&now, NULL); local
6529 int status ; local
6589 int s, status ; local
6643 int status; local
[all...]

Completed in 436 milliseconds

1234567