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

1234567

/openjdk7/jdk/test/java/rmi/registry/altSecurityManager/
H A DTestSecurityManager.java42 public void checkExit(int status) { argument
/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/java/rmi/reliability/juicer/
H A DAppleUser.java34 void reportException(Exception status) throws RemoteException; argument
/openjdk7/jdk/test/sun/rmi/rmic/newrmic/equivalence/
H A DAppleUser.java29 public void reportException(Exception status) throws RemoteException; argument
H A DAppleUserImpl.java50 private static Exception status = null; field in class:AppleUserImpl
68 public void reportException(Exception status) throws RemoteException { argument
70 this.status = status;
178 status = e;
301 if (status != null) {
302 //TestLibrary.bomb("juicer server reported an exception", status);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dinit.cpp101 jint status = universe_init(); // dependent on codeCache_init and local
103 if (status != JNI_OK)
104 return status;
/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/test/sun/nio/cs/
H A DStreamEncoderClose.java62 private boolean status; field in class:StreamEncoderClose.MyBufferedOutputStream
64 status = false;
67 status = true;
70 if ( status == false ) {
/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...]
/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/jmx/snmp/
H A DSnmpSecurityException.java41 * The status of the exception. See {@link com.sun.jmx.snmp.SnmpDefinitions} for possible values.
43 public int status = SnmpDefinitions.snmpReqUnknownError; field in class:SnmpSecurityException
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/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/java2d/cmm/ProfileOp/
H A DReadProfileTest.java47 boolean status; field in class:ReadProfileTest
85 status = true;
93 status = false;
106 status = false;
120 return status;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
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();
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();
/openjdk7/hotspot/agent/src/share/classes/com/sun/java/swing/ui/
H A DCommonToolBar.java45 protected CommonToolBar(ActionManager manager, StatusBar status) argument
48 statusBar = status;
H A DCommonMenuBar.java43 protected CommonMenuBar(ActionManager manager, StatusBar status) argument
46 statusBar = status;
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapResult.java37 public int status; // %%% public for use by LdapSasl field in class:LdapResult
57 switch (status) {
59 status = LdapClient.LDAP_SUCCESS;
68 status = LdapClient.LDAP_SUCCESS;
/openjdk7/jdk/src/share/classes/java/applet/
H A DAppletContext.java139 * "status window". Many browsers and applet viewers
143 * @param status a string to display in the status window.
145 void showStatus(String status); argument
/openjdk7/hotspot/src/cpu/zero/vm/
H A DinterpreterRT_zero.cpp133 ffi_status status = local
140 assert(status == FFI_OK, "should be");
/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/src/share/classes/sun/tools/java/
H A DClassDeclaration.java34 * class is obtained in stages. The status field describes
58 int status; field in class:ClassDeclaration
70 * Get the status of the class
73 return status;
94 switch (status) {
127 getName() + ", status " + getStatus());
132 // would be good to add an additional status value, CS_BASICCHECKED.
138 switch (status) {
177 getName() + ", status " + getStatus());
179 switch (status) {
201 setDefinition(ClassDefinition definition, int status) argument
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DClassBrowserPanel.java100 public ClassBrowserToolBar(StatusBar status) { argument
101 super(HSDBActionManager.getInstance(), status);

Completed in 75 milliseconds

1234567