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

1234567

/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLEngineResult.java154 private final Status status; field in class:SSLEngineResult
162 * @param status
166 * the current handshaking status.
175 * if the <code>status</code> or <code>handshakeStatus</code>
179 public SSLEngineResult(Status status, HandshakeStatus handshakeStatus, argument
182 if ((status == null) || (handshakeStatus == null) ||
187 this.status = status;
199 return status;
203 * Gets the handshake status o
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImageFilter.java333 * @param status the status of image loading
339 public void imageComplete(int status) { argument
341 switch(status) {
397 consumer.imageComplete(status);
H A DImageConsumer.java196 * @param status the status of image loading
199 void imageComplete(int status); argument
H A DImageFilter.java192 public void imageComplete(int status) { argument
193 consumer.imageComplete(status);
/openjdk7/jdk/src/share/classes/java/lang/
H A DShutdown.java137 static void halt(int status) { argument
139 halt0(status);
143 static native void halt0(int status); argument
179 * which should pass a nonzero status code.
181 static void exit(int status) { argument
184 if (status != 0) runFinalizersOnExit = false;
192 if (status != 0) {
193 /* Halt immediately on nonzero status */
194 halt(status);
206 halt(status);
[all...]
H A DRuntime.java67 * serves as a status code; by convention, a nonzero status code indicates
82 * with the given status code if the status is nonzero; otherwise, it
88 * @param status
89 * Termination status. By convention, a nonzero status code
95 * exiting with the specified status
104 public void exit(int status) { argument
107 security.checkExit(status);
270 halt(int status) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DUnsolicitedResponseImpl.java45 int status, String msg, String matchedDN, Control[] controls) {
56 exception = LdapCtx.mapErrorCode(status, msg);
102 * sent by the server. If null, a "success" status was indicated by
44 UnsolicitedResponseImpl(String oid, byte[] berVal, Vector ref, int status, String msg, String matchedDN, Control[] controls) argument
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DFastShortMessage.java85 public void setMessage(int status) throws InvalidMidiDataException { argument
87 int dataLength = getDataLength(status); // can throw InvalidMidiDataException
89 super.setMessage(status); // throws Exception
91 packedMsg = (packedMsg & 0xFFFF00) | (status & 0xFF);
95 public void setMessage(int status, int data1, int data2) throws InvalidMidiDataException { argument
96 getDataLength(status); // can throw InvalidMidiDataException
97 packedMsg = (status & 0xFF) | ((data1 & 0xFF) << 8) | ((data2 & 0xFF) << 16);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DThreadInfo.java44 private int status; field in class:ThreadInfo
70 return status;
104 status = thread.status();
123 status = ThreadReference.THREAD_STATUS_UNKNOWN;
H A DEventRequestSpec.java52 int status = STATUS_UNRESOLVED; field in class:EventRequestSpec
82 status = STATUS_RESOLVED;
85 status = STATUS_ERROR;
105 status = STATUS_RESOLVED;
108 status = STATUS_ERROR;
125 return status == STATUS_RESOLVED;
132 return status == STATUS_UNRESOLVED;
139 return status == STATUS_ERROR;
143 switch (status) {
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DVDrawingArea.c216 Status status; local
251 status = XGetWMColormapWindows (XtDisplay (w), XtWindow (parent),
254 /* If status is zero, add this window and shell to the list
256 if (status == 0) {
299 Status status; local
317 status = XGetWMColormapWindows (XtDisplay (widget), XtWindow (parent),
320 /* If status is zero, then there were no colormap windows for
323 if (status == 0)
H A Dawt_Mlib.c48 int status; local
/openjdk7/jdk/test/java/rmi/reliability/juicer/
H A DAppleUserImpl.java90 private static Exception status = null; field in class:AppleUserImpl
112 public void reportException(Exception status) throws RemoteException { argument
114 this.status = status;
222 status = e;
348 while (status == null && !finished) {
353 if (status != null) {
355 + "juicer server reported an exception", status);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynAnyImpl.java67 // Destroyable is the default status for free standing DynAnys.
68 protected byte status = STATUS_DESTROYABLE; field in class:DynAnyImpl
131 status = newStatus;
144 if (status == STATUS_DESTROYED) {
154 if (status == STATUS_DESTROYED) {
168 if (status == STATUS_DESTROYED) {
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DShortMessage.java30 * two data bytes following its status byte. The types of MIDI message
37 * you specify a MIDI status or data byte. If you know the numeric value, you
41 * the upper four bits of the status byte are specified by a command value and
196 * @param status the MIDI status byte
197 * @throws InvalidMidiDataException if {@code status} does not specify
198 * a valid MIDI status byte for a message that requires no data bytes
205 public ShortMessage(int status) throws InvalidMidiDataException { argument
207 setMessage(status); // can throw InvalidMidiDataException
218 * @param status th
231 ShortMessage(int status, int data1, int data2) argument
291 setMessage(int status) argument
316 setMessage(int status, int data1, int data2) argument
457 getDataLength(int status) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DImageDecoder.java144 protected int imageComplete(int status, boolean done) { argument
153 cq.consumer.imageComplete(status);
/openjdk7/jdk/src/share/classes/java/text/
H A DChoiceFormat.java92 * ParsePosition status = new ParsePosition(0);
94 * status.setIndex(0);
96 * + form.parse(form.format(i),status));
371 FieldPosition status) {
372 return format((double)number, toAppendTo, status);
379 * @param status ignore no useful status is returned.
382 FieldPosition status) {
400 * @param status an input-output parameter. On input, the
401 * status
370 format(long number, StringBuffer toAppendTo, FieldPosition status) argument
381 format(double number, StringBuffer toAppendTo, FieldPosition status) argument
409 parse(String text, ParsePosition status) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DStringMonitor.java74 return status;
76 public final synchronized void setStatus(int status) { argument
77 this.status = status;
80 private int status; field in class:StringMonitor.StringMonitorObservedObject
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DparMarkBitMap.cpp178 IterationStatus status = live_closure->do_addr(bit_to_addr(cur_beg), size);
179 if (status != incomplete) {
180 assert(status == would_overflow || status == full, "sanity");
181 return status;
226 IterationStatus status = live_closure->do_addr(bit_to_addr(cur_beg), size); local
227 if (status != incomplete) {
228 assert(status == would_overflow || status == full, "sanity");
229 return status;
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DThreadReference.java41 /** Thread status is unknown */
131 * Returns the thread's status. If the thread is not suspended the
132 * thread's current status is returned. If the thread is suspended, the
133 * thread's status before the suspension is returned (or
147 int status(); method in interface:ThreadReference
293 * {@link Object#wait}. The {@link #status} method can be used
/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.cpp36 int status; local
42 if ((result = abi::__cxa_demangle(symbol, NULL, NULL, &status)) != NULL) {
/openjdk7/jdk/src/share/back/
H A DThreadReferenceImpl.c123 status(PacketInputStream *in, PacketOutputStream *out) function
671 (void *)status,
H A DclassTrack.c268 jint status; local
273 status = classStatus(klass);
274 if ( (status & wanted) != 0 ) {
/openjdk7/hotspot/src/share/vm/utilities/
H A Ddecoder.hpp34 // status code for decoding native C frame
57 virtual decoder_status status() const { function in class:AbstractDecoder
65 static bool is_error(decoder_status status) { argument
66 return (status > 0);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DDriver.java124 * Performs schema compilation and prints the status/error into the
135 * @param status
151 public static int run(String[] args, final PrintStream status, final PrintStream out) argument
163 if(status!=null)
164 status.println(msg);
188 * Performs schema compilation and prints the status/error into the

Completed in 2259 milliseconds

1234567