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

1234567

/openjdk7/jdk/test/tools/launcher/
H A DTestHelper.java485 PrintWriter status; field in class:TestHelper.TestResult
496 status = new PrintWriter(sw);
497 status.println("Executed command: " + str + "\n");
508 status.println(TEST_PREFIX + x);
512 status.println(" " + x);
549 status.println("++++Begin Test Info++++");
550 status.println("Test Status: " + (testStatus ? "PASS" : "FAIL"));
551 status.println("++++Test Environment++++");
555 status.println("++++Test Output++++");
559 status
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_class.c85 ClassStatus status; /* Current class status (bit mask) */ member in struct:ClassInfo
266 "0x%08x: Class %s, SN=%u, status=0x%08x, ref=%p,"
271 info->status,
291 ClassStatus status; local
295 status = (ClassStatus)(long)(ptrdiff_t)arg;
297 info->status &= (~status);
308 if ( ! ( info->status & CLASS_IN_LOAD_LIST ) ) {
309 if ( ! (info->status
382 class_add_status(ClassIndex index, ClassStatus status) argument
421 class_all_status_remove(ClassStatus status) argument
653 jint status; local
[all...]
H A Dhprof_trace.c78 jint status; /* Status of dump of trace */ member in struct:TraceInfo
171 "total_cost=(%d,%d), status=0x%08x\n",
178 info->status);
264 if ( info->status != 0 ) {
273 info->status = 1;
/openjdk7/jdk/src/share/demo/jfc/Notepad/
H A DNotepad.java278 * Create a status bar
282 status = new StatusBar();
283 return status;
446 private JComponent status; field in class:Notepad
745 status.removeAll();
749 status.add(progress);
750 status.revalidate();
777 status.removeAll();
778 status.revalidate();
815 status
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DType.java140 private int status = STATUS_PENDING; field in class:Type
247 * Return the status of this type.
250 return status;
254 * Set the status of this type.
256 public void setStatus(int status) { argument
257 this.status = status;
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletPanel.java106 * The current status. One of:
115 protected int status; field in class:AppletPanel
225 status = APPLET_ERROR;
377 // status being APPLET_DISPOSE, APPLET_ERROR,
424 // init, that is why we need to check status w/ APPLET_DESTROY
425 if (status != APPLET_LOAD && status != APPLET_DESTROY) {
464 status = APPLET_INIT;
470 if (status != APPLET_INIT && status !
937 showAppletStatus(String status) argument
941 showAppletStatus(String status, Object arg) argument
944 showAppletStatus(String status, Object arg1, Object arg2) argument
[all...]
H A DAppletViewer.java133 * The status line.
138 * output status messages to this stream
270 showStatus(amh.getMessage("status.start"));
486 * Show status.
488 public void showStatus(String status) { argument
489 label.setText(status);
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageRepresentation.java683 public void imageComplete(int status) { argument
689 switch (status) {
726 image.infoDone(status);
/openjdk7/jdk/src/share/classes/java/io/
H A DFile.java168 * Enum type that indicates the status of a file path.
175 private transient PathStatus status = null; field in class:File
186 if (status == null) {
187 status = (this.path.indexOf('\u0000') < 0) ? PathStatus.CHECKED
190 return status == PathStatus.INVALID;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DForkJoinTask.java121 * <p>The execution status of tasks may be queried at several levels
196 * responsible for maintaining their "status" field amidst relays
199 * status maintenance (2) execution and awaiting completion (3)
206 * The status field holds run control status bits packed into a
209 * values until completed, upon which status holds value
222 /** The run status of this task */
223 volatile int status; // accessed directly by pool and workers field in class:ForkJoinTask
234 * @return completion status on exit
238 if ((s = status) <
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.hpp289 int status; local
290 status = pthread_cond_init (_cond, NULL);
291 assert_status(status == 0, status, "cond_init");
292 status = pthread_mutex_init (_mutex, NULL);
293 assert_status(status == 0, status, "mutex_init");
319 int status; local
320 status = pthread_cond_init (_cond, NULL);
321 assert_status(status
[all...]
H A Dos_bsd.inline.hpp143 int status; local
150 if((status = ::readdir_r(dirp, dbuf, &p)) != 0) {
151 errno = status;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.hpp275 int status; local
276 status = pthread_cond_init (_cond, NULL);
277 assert_status(status == 0, status, "cond_init");
278 status = pthread_mutex_init (_mutex, NULL);
279 assert_status(status == 0, status, "mutex_init");
305 int status; local
306 status = pthread_cond_init (_cond, NULL);
307 assert_status(status
[all...]
H A Dos_linux.inline.hpp147 int status; local
154 if((status = ::readdir_r(dirp, dbuf, &p)) != 0) {
155 errno = status;
/openjdk7/hotspot/src/os/solaris/vm/
H A DattachListener_solaris.cpp436 int status = os::Solaris::mutex_init(&_mutex); local
437 assert_status(status==0, status, "mutex_init");
439 status = ::sema_init(&_wakeup, 0, NULL, NULL);
440 assert_status(status==0, status, "sema_init");
/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_MidiUtils.c209 int status = MIDI_SUCCESS; local
212 status = MIDIObjectGetIntegerProperty(endpoint, kMIDIPropertyDriverVersion, &driverVersion);
213 if (status != MIDI_SUCCESS) return status;
221 status = MIDIObjectGetStringProperty(endpoint, propertyID, &pname);
222 if (status != MIDI_SUCCESS) return status;
288 // Except that 0xFD is an invalid status code.
304 // Not a status byte -- check our history.
/openjdk7/jdk/src/solaris/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c212 int status, actual_format; local
220 status = XGetWindowProperty(splash->display,
224 if (status == Success && actual_type != None && prop != NULL) {
664 unsigned long status; member in struct:PROPMOTIFWMHINTS
/openjdk7/jdk/src/solaris/native/sun/xawt/
H A DXWindow.c1134 Status status = 0; local
1138 status = XQueryTree(awt_display,
1145 if (status == 0) return None;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt.h255 jint status = m_pVM->AttachCurrentThread( local
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.c323 s->status = FINISH_STATE;
351 (strm->state->wrap == 1 && strm->state->status != INIT_STATE))
402 s->status = s->wrap ? INIT_STATE : BUSY_STATE;
591 (s->status == FINISH_STATE && flush != Z_FINISH)) {
601 if (s->status == INIT_STATE) {
618 s->status = BUSY_STATE;
643 s->status = EXTRA_STATE;
664 s->status = BUSY_STATE;
676 if (s->status == EXTRA_STATE) {
698 s->status
886 int status; local
[all...]
H A Ddeflate.h82 /* Stream status */
120 int status; /* as the name implies */ member in struct:internal_state
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DPCSC.java71 // returns the ATR of the card, updates status[] with reader state and protocol
73 (long cardId, byte[] status)
72 SCardStatus(long cardId, byte[] status) argument
/openjdk7/jdk/src/share/classes/java/text/
H A DDecimalFormat.java169 * their special status. Two exceptions are the currency sign and quote, which
1267 boolean[] status = new boolean[STATUS_LENGTH];
1268 if (!subparse(text, pos, positivePrefix, negativePrefix, digitList, false, status)) {
1273 if (status[STATUS_INFINITE]) {
1274 if (status[STATUS_POSITIVE] == (multiplier >= 0)) {
1284 } else if (status[STATUS_POSITIVE]) {
1303 if (!status[STATUS_POSITIVE]) {
1314 if (digitList.fitsIntoLong(status[STATUS_POSITIVE], isParseIntegerOnly())) {
1340 if (!status[STATUS_POSITIVE] && !gotLongMinimum) {
1401 * @param status Upo
1404 subparse(String text, ParsePosition parsePosition, String positivePrefix, String negativePrefix, DigitList digits, boolean isExponent, boolean status[]) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DReferenceTypeImpl.java51 private int status = 0; field in class:ReferenceTypeImpl
271 // this status flag is updated through the ClassPrepareEvent,
273 if (status == 0) {
281 if ((status & JDWP.ClassStatus.VERIFIED) == 0) {
284 return (status & JDWP.ClassStatus.VERIFIED) != 0;
290 if ((status & INITIALIZED_OR_FAILED) == 0) {
293 return (status & JDWP.ClassStatus.INITIALIZED) != 0;
299 if ((status & INITIALIZED_OR_FAILED) == 0) {
302 return (status & JDWP.ClassStatus.ERROR) != 0;
1051 void decodeStatus(int status) { argument
1100 setStatus(int status) argument
[all...]
/openjdk7/jdk/src/share/back/
H A DeventHelper.c378 jint status; local
387 status = classStatus(evinfo->clazz);
393 (void)outStream_writeInt(out, map2jdwpClassStatus(status));

Completed in 272 milliseconds

1234567