Searched refs:status (Results 176 - 200 of 335) sorted by relevance

1234567891011>>

/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/share/classes/java/util/concurrent/
H A DForkJoinWorkerThread.java324 * This method may be useful for applications that track status or
619 if (cj != null && cj.status >= 0)
622 if (cs != null && cs.status >= 0)
706 * @return completion status on exit
712 if ((s = joinMe.status) < 0) {
747 if (t != joinMe && t.status >= 0)
777 if (ws != null && ws.length > m && joinMe.status >= 0) {
796 if (joinMe.status < 0)
804 if (task.status < 0)
819 if (--levels > 0 && task.status >
[all...]
/openjdk7/jdk/src/share/classes/javax/management/monitor/
H A DGaugeMonitor.java122 return status;
124 public final synchronized void setStatus(int status) { argument
125 this.status = status;
131 private int status; field in class:GaugeMonitor.GaugeMonitorObservedObject
/openjdk7/hotspot/src/share/vm/adlc/
H A DarchDesc.hpp125 void gen_match(FILE *fp, MatchList &mlist, ProductionState &status, Dict &operands_chained_from);
128 Dict &operands_chained_from, ProductionState &status);
130 const char *result_type, ProductionState &status);
131 Expr *calc_cost(FILE *fp, const char *spaces, MatchList &mList, ProductionState &status);
235 void gen_dfa_state_body(FILE *fp, Dict &minmize, ProductionState &status, Dict &chained, int i); // Driver for constructing the DFA state bodies
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DServerConnectionImpl.java65 private int status; field in class:ServerConnectionImpl
112 public void setStatus(int status) { argument
113 this.status = status;
119 return status;
/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/solaris/classes/sun/awt/X11/
H A DMotifDnDDropTargetProtocol.java94 int status = 0;
105 status = wpg.execute(XErrorHandler.IgnoreBadWindowHandler.getInstance());
121 if (status == (int)XConstants.Success && wpg.getData() != 0 &&
198 int status = 0;
207 status = wpg.execute(XErrorHandler.IgnoreBadWindowHandler.getInstance());
223 if (status == (int)XConstants.Success && wpg.getData() != 0 &&
270 int status = 0;
279 status = wpg.execute(XErrorHandler.IgnoreBadWindowHandler.getInstance());
295 if (status == (int)XConstants.Success && wpg.getData() != 0 &&
328 int status
[all...]
H A DXDragSourceContextPeer.java178 int status;
181 status = XlibWrapper.XGetWindowAttributes(XToolkit.getDisplay(),
184 if (status == 0) {
198 status = XlibWrapper.XGrabPointer(XToolkit.getDisplay(), rootWindow,
204 if (status != XConstants.GrabSuccess) {
206 throwGrabFailureException("Cannot grab pointer", status);
210 status = XlibWrapper.XGrabKeyboard(XToolkit.getDisplay(), rootWindow,
216 if (status != XConstants.GrabSuccess) {
218 throwGrabFailureException("Cannot grab keyboard", status);
H A DXDragSourceProtocol.java185 int status = XlibWrapper.XGetWindowAttributes(XToolkit.getDisplay(),
190 if ((status == 0) ||
/openjdk7/hotspot/agent/src/os/bsd/
H A DMacosxDebuggerLocal.m441 int status;
444 ret = waitpid(pid, &status, 0);
446 if (WIFSTOPPED(status)) {
450 if (WSTOPSIG(status) == SIGSTOP) {
454 if (!ptrace_continue(pid, WSTOPSIG(status))) {
455 fprintf(stderr, "attach: Failed to correctly attach to VM. VM might HANG! [PTRACE_CONT failed, stopped by %d]\n", WSTOPSIG(status));
459 fprintf(stderr, "attach: waitpid(): Child process exited/terminated (status = 0x%x)\n", status);
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DCachedRowSetWriter.java186 private ArrayList status; field in class:CachedRowSetWriter
308 status = new ArrayList(sz);
310 status.add(0,null);
341 status.add(rows, Integer.valueOf(SyncResolver.DELETE_ROW_CONFLICT));
344 // so update status accordingly
345 status.add(rows, Integer.valueOf(SyncResolver.NO_ROW_CONFLICT));
353 status.add(rows, Integer.valueOf(SyncResolver.INSERT_ROW_CONFLICT));
356 // so update status accordingly
357 status.add(rows, Integer.valueOf(SyncResolver.NO_ROW_CONFLICT));
362 status
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapClient.java193 if (res.status == LdapClient.LDAP_SUCCESS) {
206 res.status = LdapClient.LDAP_SUCCESS;
214 if (res.status == LdapClient.LDAP_SUCCESS) {
237 if (res.status == LdapClient.LDAP_SUCCESS) {
255 (res.status == LdapClient.LDAP_PROTOCOL_ERROR) &&
266 if (res.status == LdapClient.LDAP_SUCCESS) {
292 if (res.status == LdapClient.LDAP_NO_SUCH_OBJECT) {
294 getErrorMessage(res.status, res.errorMessage));
323 res.status = LDAP_OPERATIONS_ERROR;
559 res.status
[all...]
/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/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJCodeModel.java240 * @param status
243 public void build( File destDir, PrintStream status ) throws IOException {
244 build(destDir,destDir,status);
255 * @param status
258 public void build( File srcDir, File resourceDir, PrintStream status ) throws IOException {
261 if(status!=null) {
262 src = new ProgressCodeWriter(src, status );
263 res = new ProgressCodeWriter(res, status );
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DSchemaValidatorConfiguration.java125 throw new XMLConfigurationException(state.status, featureId);
169 throw new XMLConfigurationException(state.status, propertyId);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynFixedImpl.java74 if (status == STATUS_DESTROYED) {
101 if (status == STATUS_DESTROYED) {
H A DDynSequenceImpl.java130 if (status == STATUS_DESTROYED) {
161 if (status == STATUS_DESTROYED) {
H A DDynAnyComplexImpl.java87 if (status == STATUS_DESTROYED) {
109 if (status == STATUS_DESTROYED) {
122 if (status == STATUS_DESTROYED) {
136 if (status == STATUS_DESTROYED) {
210 if (status == STATUS_DESTROYED) {
/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);
/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/macosx/native/sun/awt/
H A Dawt.m220 OSStatus status = SessionGetInfo(callerSecuritySession, &session_id, &session_info);
221 if (status != noErr) return NO;
415 jint status = (*jvm)->GetEnv(jvm, (void **)&env, JNI_VERSION_1_4);
416 if (status != JNI_OK || env == NULL) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodWriter.java485 labels.status |= Label.PUSHED;
721 currentBlock.status |= Label.RET;
893 label.getFirst().status |= Label.TARGET;
902 if ((label.status & Label.SUBROUTINE) == 0) {
903 label.status |= Label.SUBROUTINE;
906 currentBlock.status |= Label.JSR;
926 if ((label.status & Label.RESOLVED) != 0
944 nextInsn.status |= Label.TARGET;
981 if ((label.status & Label.DEBUG) != 0) {
988 currentBlock.status |
[all...]
/openjdk7/jdk/test/java/awt/Graphics/
H A DTextAAHintsTest.java124 int status = image.validate(getGraphicsConfiguration());
125 if (status == VolatileImage.IMAGE_INCOMPATIBLE) {
/openjdk7/jdk/test/java/rmi/testlibrary/
H A DJavaVM.java175 * all output is collected, and returns its exit status.
181 int status = vm.waitFor();
184 return status;
188 * Starts the subprocess, waits for it to exit, and returns its exit status.
215 // Restore the interrupted status
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/msg/
H A DSAXMessages_sv.properties48 true-not-supported = True-status f\u00F6r funktionen ''{0}'' st\u00F6ds inte.
49 false-not-supported = False-status f\u00F6r funktionen ''{0}'' st\u00F6ds inte.

Completed in 91 milliseconds

1234567891011>>