Searched refs:status (Results 1 - 25 of 335) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRoleStatus.java74 * Returns true if given value corresponds to a known role status, false
77 * @param status a status code.
79 * @return true if this value is a known role status.
81 public static boolean isRoleStatus(int status) { argument
82 if (status != NO_ROLE_WITH_NAME &&
83 status != ROLE_NOT_READABLE &&
84 status != ROLE_NOT_WRITABLE &&
85 status != LESS_THAN_MIN_ROLE_DEGREE &&
86 status !
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DHeadTail.java36 private int status; field in class:HeadTail
44 public HeadTail(Name head, Name tail, int status) { argument
45 this.status = status;
50 public void setStatus(int status) { argument
51 this.status = status;
63 return this.status;
H A DStringHeadTail.java34 private int status; field in class:StringHeadTail
42 public StringHeadTail(String head, String tail, int status) { argument
43 this.status = status;
48 public void setStatus(int status) { argument
49 this.status = status;
61 return this.status;
/openjdk7/jdk/test/sun/tools/jconsole/
H A DResourceCheckTest.sh32 status=1
39 echo "exit status was $status"
40 exit $status
106 status=$?
107 echo "test status was: $status"
108 if [ $status -eq "0" ];
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIFocus.java54 static void testForFailure(final int status) { argument
55 if (status == SUCCESS) return;
57 switch(status) {
60 default: throw new RuntimeException("JRSUI draw focus problem: " + status);
/openjdk7/jdk/test/java/awt/PrintJob/Text/
H A Dstringwidth.sh11 status=1
14 status=$?
15 if [ $status -ne "0" ]; then
16 exit "$status"
/openjdk7/jdk/test/java/rmi/registry/altSecurityManager/
H A DTestSecurityManager.java42 public void checkExit(int status) { argument
/openjdk7/jdk/src/macosx/native/com/apple/laf/
H A DJRSUIFocus.m45 OSStatus status = HIThemeBeginFocus(cgRef, ringStyle, NULL);
46 return status == noErr ? apple_laf_JRSUIFocus_SUCCESS : status;
60 OSStatus status = HIThemeEndFocus(cgRef);
61 return status == noErr ? apple_laf_JRSUIFocus_SUCCESS : status;
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DSysexMessage.java34 * follows: the system exclusive message status byte (0xF0 or 0xF7), all
37 * the length of the system exclusive data plus two: one byte for the status
40 * As dictated by the Standard MIDI Files specification, two status byte values are legal
57 * exclusive message should have the status value 0xF0. If this message contains all
59 * for the message, it should end with the status byte 0xF7 (EOX).
61 * <code>SysexMessages</code> with a status value of 0xF7. The <code>SysexMessage</code>
66 * using MIDI wire protocol, only the initial 0xF0 status byte, the system exclusive
67 * data itself, and the final 0xF7 (EOX) byte should be propagated; any 0xF7 status
126 * exclusive status byte (0xF0 or 0xF7).
130 * @param data the system exclusive message data including the status byt
165 SysexMessage(int status, byte[] data, int length) argument
208 setMessage(int status, byte[] data, int length) argument
[all...]
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/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DFeatureState.java37 public final Status status; field in class:FeatureState
48 public FeatureState(Status status, boolean state) { argument
49 this.status = status;
53 public static FeatureState of(Status status) { argument
54 return new FeatureState(status, false);
62 return this.status.isExceptional();
H A DPropertyState.java36 public final Status status; field in class:PropertyState
46 public PropertyState(Status status, Object state) { argument
47 this.status = status;
51 public static PropertyState of(Status status) { argument
52 return new PropertyState(status, null);
60 return this.status.isExceptional();
/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/test/com/sun/jdi/
H A DImmutableResourceTest.sh34 status=1
41 echo "exit status was $status"
42 exit $status
108 status=$?
109 echo "test status was: $status"
110 if [ $status -eq "0" ];
H A DSuspendNoFlagTest.sh38 status=1
45 echo "exit status was $status"
46 exit $status
98 status=$?
99 echo "test status was: $status"
100 if [ $status -eq "0" ] ;
101 then pass "status = 0 and no timeout occured"
/openjdk7/jdk/test/sun/tools/native2ascii/resources/
H A DImmutableResourceTest.sh34 status=1
41 echo "exit status was $status"
42 exit $status
108 status=$?
109 echo "test status was: $status"
110 if [ $status -eq "0" ];
/openjdk7/jdk/test/java/util/logging/
H A DAnonLoggerWeakRefLeak.sh59 status="$?"
61 if [ "$status" != 0 ]; then
74 status="$?"
76 if [ "$status" = 0 ]; then
78 status=1
81 status=0
85 if [ "$status" != 0 ]; then
110 status="$?"
112 if [ "$status" = 0 ]; then
126 status
[all...]
H A DLoggerWeakRefLeak.sh59 status="$?"
61 if [ "$status" != 0 ]; then
74 status="$?"
76 if [ "$status" = 0 ]; then
78 status=1
81 status=0
85 if [ "$status" != 0 ]; then
110 status="$?"
112 if [ "$status" = 0 ]; then
126 status
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpStatusException.java34 * This exception includes a status error code as defined in the SNMP protocol.
75 * Constructs a new <CODE>SnmpStatusException</CODE> with the specified status error.
76 * @param status The error status.
78 public SnmpStatusException(int status) { argument
79 errorStatus = status ;
83 * Constructs a new <CODE>SnmpStatusException</CODE> with the specified status error and status index.
84 * @param status The error status
87 SnmpStatusException(int status, int index) argument
[all...]
/openjdk7/jdk/test/java/io/BufferedInputStream/
H A DCloseStream.java59 if (status == OPEN) {
60 status = CLOSED;
65 if (status == CLOSED)
72 private int status = OPEN; field in class:MyInputStream
/openjdk7/jdk/src/share/classes/sun/security/timestamp/
H A DTSResponse.java48 * status PKIStatusInfo,
52 * status PKIStatus,
187 private int status; field in class:TSResponse
200 * @param status A buffer containing the ASN.1 BER encoded response.
209 * Retrieve the status code returned by the TSA.
212 return status;
216 * Retrieve the status messages returned by the TSA.
218 * @return If null then no status messages were received.
235 switch (status) {
256 return ("unknown status cod
[all...]
/openjdk7/hotspot/src/os/linux/vm/
H A Ddecoder_linux.cpp31 int status; local
38 if ((result = abi::__cxa_demangle(symbol, NULL, NULL, &status)) != NULL) {
/openjdk7/jdk/test/sun/tools/jcmd/
H A Djcmd-big-script.sh49 status="$?"
51 if [ "$status" != 0 ]; then
52 echo "jcmd command returned non-zero exit code (status=$status). Failed."
58 status="$?"
60 if [ "$status" = 0 ]; then
/openjdk7/jdk/test/sun/tools/common/
H A DCommonTests.sh38 status=0
51 status=1
68 status=1
87 status=1
103 status=1
116 status=1
130 status=1
150 status=1
164 status=1
176 status
[all...]
/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);

Completed in 128 milliseconds

1234567891011>>