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

1234567891011>>

/openjdk10/jdk/src/java.management/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...]
/openjdk10/jdk/src/java.naming/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;
/openjdk10/jdk/test/sanity/client/lib/jemmy/src/org/netbeans/jemmy/
H A DTestCompletedException.java35 private int status; field in class:TestCompletedException
40 * @param st Exit status.
47 : "failed with status " + Integer.toString(st)),
49 status = st;
55 * @param st Exit status.
62 : "failed with status " + Integer.toString(st)
64 status = st;
68 * Returns status.
70 * @return test status
73 return status;
[all...]
/openjdk10/jdk/test/java/util/TimeZone/
H A DBug8066652.sh60 status=$?
61 if [ $status -eq 0 ]
68 exit $status
/openjdk10/jdk/src/java.desktop/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);
/openjdk10/jdk/test/java/awt/PrintJob/Text/
H A Dstringwidth.sh32 status=1
35 status=$?
36 if [ $status -ne "0" ]; then
37 exit "$status"
/openjdk10/hotspot/test/serviceability/jvmti/GetNamedModule/MyPackage/
H A DGetNamedModuleTest.java51 int status = check();
52 if (status != 0) {
53 throw new RuntimeException("Non-zero status returned from the agent: " + status);
/openjdk10/hotspot/test/serviceability/jvmti/StartPhase/AllowedFunctions/
H A DAllowedFunctions.java49 int status = check();
50 if (status != 0) {
51 throw new RuntimeException("Non-zero status returned from the agent: " + status);
/openjdk10/hotspot/test/serviceability/jvmti/ModuleAwareAgents/ClassLoadPrepare/
H A DMAAClassLoadPrepare.java49 int status = check();
50 if (status != 0) {
51 throw new RuntimeException("Non-zero status returned from the agent: " + status);
/openjdk10/hotspot/test/serviceability/jvmti/ModuleAwareAgents/ThreadStart/
H A DMAAThreadStart.java46 int status = check();
47 if (status != 0) {
48 throw new RuntimeException("Non-zero status returned from the agent: " + status);
/openjdk10/hotspot/test/serviceability/jvmti/IsModifiableModule/MyPackage/
H A DIsModifiableModuleTest.java51 int status = check();
52 if (status != 0) {
53 throw new RuntimeException("Non-zero status returned from the agent: " + status);
/openjdk10/hotspot/test/serviceability/jvmti/ModuleAwareAgents/ClassFileLoadHook/
H A DMAAClassFileLoadHook.java48 int status = check();
49 if (status != 0) {
50 throw new RuntimeException("Non-zero status returned from the agent: " + status);
/openjdk10/jdk/src/java.desktop/share/classes/javax/sound/midi/
H A DSysexMessage.java34 * exclusive message status byte (0xF0 or 0xF7), all message data bytes, and
37 * data plus two: one byte for the status byte and one for the end-of-exclusive
40 * As dictated by the Standard MIDI Files specification, two status byte values
56 * exclusive message should have the status value 0xF0. If this message contains
57 * all the system exclusive data for the message, it should end with the status
59 * in one or more {@code SysexMessages} with a status value of 0xF7. The
65 * transmitted using MIDI wire protocol, only the initial 0xF0 status byte, the
67 * propagated; any 0xF7 status bytes used to indicate that a
118 * The first byte of the data array must be a valid system exclusive status
122 * @param data the system exclusive message data including the status byt
157 SysexMessage(int status, byte[] data, int length) argument
202 setMessage(int status, byte[] data, int length) argument
[all...]
H A DShortMessage.java30 * bytes following its status byte. The types of MIDI message that satisfy this
37 * specify a MIDI status or data byte. If you know the numeric value, you can
41 * of the status byte are specified by a command value and the lower four bits
197 * @param status the MIDI status byte
198 * @throws InvalidMidiDataException if {@code status} does not specify a
199 * valid MIDI status byte for a message that requires no data bytes
206 public ShortMessage(int status) throws InvalidMidiDataException { argument
208 setMessage(status); // can throw InvalidMidiDataException
218 * @param status th
231 ShortMessage(int status, int data1, int data2) argument
289 setMessage(int status) argument
311 setMessage(int status, int data1, int data2) argument
450 getDataLength(int status) argument
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/util/
H A DFeatureState.java30 public final Status status; field in class:FeatureState
41 public FeatureState(Status status, boolean state) { argument
42 this.status = status;
46 public static FeatureState of(Status status) { argument
47 return new FeatureState(status, false);
55 return this.status.isExceptional();
H A DPropertyState.java30 public final Status status; field in class:PropertyState
40 public PropertyState(Status status, Object state) { argument
41 this.status = status;
45 public static PropertyState of(Status status) { argument
46 return new PropertyState(status, null);
54 return this.status.isExceptional();
/openjdk10/jdk/test/sun/awt/image/OffScreenImageSource/
H A DImageFilterTest.java78 public void imageComplete(int status) { argument
81 if (status == SINGLEFRAMEDONE) {
85 if (status == STATICIMAGEDONE) {
91 if (status == IMAGEERROR) {
97 if (status == SINGLEFRAMEDONE) {
103 if (status == IMAGEERROR) {
109 if (status == STATICIMAGEDONE) {
115 if (status == SINGLEFRAMEDONE) {
119 if (status == STATICIMAGEDONE) {
125 if (status
[all...]
/openjdk10/jdk/test/com/sun/jdi/
H A DImmutableResourceTest.sh36 status=1
43 echo "exit status was $status"
44 exit $status
110 status=$?
111 echo "test status was: $status"
112 if [ $status -eq "0" ];
/openjdk10/jdk/test/java/awt/image/
H A DImageIconHang.java40 int status = mt.statusID(1, false);
42 System.out.println("Status: " + status);
44 if (status != MediaTracker.ERRORED) {
/openjdk10/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
/openjdk10/jdk/test/java/rmi/registry/altSecurityManager/
H A DTestSecurityManager.java44 public void checkExit(int status) { argument
/openjdk10/jdk/src/java.base/share/classes/javax/net/ssl/
H A DSSLEngineResult.java160 * This handshake status only applies to DTLS.
168 private final Status status; field in class:SSLEngineResult
177 * @param status
181 * the current handshaking status.
190 * if the {@code status} or {@code handshakeStatus}
194 public SSLEngineResult(Status status, HandshakeStatus handshakeStatus, argument
196 this(status, handshakeStatus, bytesConsumed, bytesProduced, -1);
202 * @param status
206 * the current handshaking status.
220 * if the {@code status} o
226 SSLEngineResult(Status status, HandshakeStatus handshakeStatus, int bytesConsumed, int bytesProduced, long sequenceNumber) argument
[all...]
/openjdk10/nashorn/test/src/jdk/nashorn/internal/runtime/doubleconv/test/
H A DFastDtoaTest.java69 boolean status;
72 status = DoubleConversion.fastDtoaShortest(min_double, buffer);
73 assertTrue(status);
79 status = DoubleConversion.fastDtoaShortest(max_double, buffer);
80 assertTrue(status);
86 status = DoubleConversion.fastDtoaShortest(4294967272.0, buffer);
87 assertTrue(status);
93 status = DoubleConversion.fastDtoaShortest(4.1855804968213567e298, buffer);
94 assertTrue(status);
99 status
[all...]
/openjdk10/hotspot/src/os/linux/vm/
H A Ddecoder_linux.cpp31 int status; local
44 if ((result = abi::__cxa_demangle(symbol, NULL, NULL, &status)) != NULL) {

Completed in 520 milliseconds

1234567891011>>