Searched refs:status (Results 151 - 175 of 335) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/giopmsgheaders/
H A DReplyMessage_1_0.java139 int status = istream.read_long();
141 switch (status) {
153 CompletionStatus.COMPLETED_MAYBE, new Integer(status) );
H A DReplyMessage_1_1.java140 int status = istream.read_long();
142 switch (status) {
154 CompletionStatus.COMPLETED_MAYBE, new Integer(status) );
/openjdk7/jdk/src/share/back/
H A DclassTrack.c268 jint status; local
273 status = classStatus(klass);
274 if ( (status & wanted) != 0 ) {
/openjdk7/jdk/src/share/classes/sun/security/smartcardio/
H A DCardImpl.java84 byte[] status = new byte[2];
85 byte[] atrBytes = SCardStatus(cardId, status);
87 this.protocol = status[1] & 0xff;
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/rmi/
H A DRemoteMonitoredVm.java257 MonitorStatus status = getMonitorStatus();
259 List inserted = status.getInserted();
260 List removed = status.getRemoved();
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DWindowPropertyGetter.java105 int status = XlibWrapper.XGetWindowProperty(XToolkit.getDisplay(), window, property.getAtom(),
109 if (isCachingSupported() && status == XConstants.Success && getData() != 0 && isCacheableProperty(property)) {
117 return status;
H A DXAtom.java372 int status = getter.execute();
373 if (status != XConstants.Success || getter.getData() == 0) {
434 int status = getter.execute();
435 if (status != XConstants.Success || getter.getData() == 0) {
468 int status = getter.execute();
469 if (status != XConstants.Success || getter.getData() == 0) {
604 int status = getter.execute();
605 if (status != XConstants.Success || getter.getData() == 0) {
676 int status = getter.execute();
677 if (status !
[all...]
H A DXTranslateCoordinates.java73 int status =
85 return status;
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DPrinterSurfaceData.m119 jint status = SD_FAILURE;
124 status = SD_SUCCESS;
126 return status;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp1275 int status; local
1334 status = thr_create(NULL, stack_size, java_start, thread, flags, &tid);
1335 if (status != 0) {
1601 int status = thr_continue(thread->osthread()->thread_id()); local
1602 assert_status(status == 0, status, "thr_continue failed");
1780 int fd = ::open("/proc/self/status", O_RDONLY);
1784 pstatus_t status;
1785 int res = os::read(fd, (void*) &status, sizeof(pstatus_t));
1790 return status
2282 jboolean status = false; local
4269 int status = 0; local
4303 int status = thr_getprio(thread->osthread()->thread_id(), &p); local
4409 int status = thr_kill(osthread->thread_id(), os::Solaris::SIGinterrupt()); local
4464 int status = thr_kill(osthread->thread_id(), os::Solaris::SIGasync()); local
5478 int status = getrlimit(RLIMIT_NOFILE, &nbr_files); local
6247 int status = gettimeofday(&now, NULL); local
6312 int status = os::Solaris::mutex_lock(_mutex); local
6354 int status = os::Solaris::mutex_lock(_mutex); local
6359 int status = os::Solaris::cond_timedwait(_cond, _mutex, &abst); local
6398 int status = os::Solaris::mutex_lock(_mutex); local
6449 int status = gettimeofday(&now, NULL); local
6529 int status ; local
6589 int s, status ; local
6643 int status; local
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynValueCommonImpl.java100 if (status == STATUS_DESTROYED) {
114 if (status == STATUS_DESTROYED) {
128 // Overridden to change to non-null status.
138 // Overridden to change to non-null status.
/openjdk7/hotspot/src/share/vm/interpreter/
H A Drewriter.cpp161 int status = _method_handle_invokers[cp_index]; local
162 assert(status >= -1 && status <= 1, "oob tri-state");
163 if (status == 0) {
170 status = +1;
172 status = -1;
174 _method_handle_invokers[cp_index] = status;
179 if (status > 0) {
/openjdk7/hotspot/src/cpu/zero/vm/
H A DinterpreterRT_zero.cpp133 ffi_status status = local
140 assert(status == FFI_OK, "should be");
/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/macosx/classes/apple/laf/
H A DJRSUIControl.java228 final int status = syncChanges(cfDictionaryPtr, localByteBuffer.ptr);
229 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
263 final int status = syncChanges(cfDictionaryPtr, localByteBuffer.ptr);
264 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
308 final int status = syncChanges(cfDictionaryPtr, localByteBuffer.ptr);
309 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
314 final int status = syncChanges(cfDictionaryPtr, localByteBuffer.ptr);
315 if (status != SUCCESS) throw new RuntimeException("JRSUI failed to sync changes into the native buffer: " + this);
/openjdk7/jdk/src/windows/classes/sun/tools/attach/
H A DWindowsVirtualMachine.java99 // completion status
105 // read completion status
106 int status = readInt(is);
107 if (status != 0) {
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DKeyStoreLoginModule.java180 private int status = UNINITIALIZED; field in class:KeyStoreLoginModule
217 status = INITIALIZED;
279 switch (status) {
332 status = AUTHENTICATED;
750 switch (status) {
779 status = LOGGED_IN;
808 switch (status) {
842 debugPrint("Entering logout " + status);
843 switch (status) {
852 // assert status !
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A DLCMS.c314 cmsBool status; local
335 status = cmsSaveProfileToMem(sProf.pf, dataArray, &pfSize);
339 if (!status) {
399 cmsBool status; local
417 status = _getHeaderInfo(sProf.pf, dataArray, bufSize);
421 if (!status) {
475 cmsBool status; local
497 status = _setHeaderInfo(sProf.pf, dataArray, tagSize);
499 status = _writeCookedTag(sProf.pf, sig.cms, dataArray, tagSize);
504 if (!status) {
671 cmsBool status = FALSE; local
723 cmsBool status; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_wm.c202 Status status; local
211 status = XInternAtoms(awt_display, (char**)names, ATOM_LIST_LENGTH,
213 if (status == 0) {
383 /* Request status */
384 int status; local
399 status = XGetWindowProperty(awt_display, w,
404 if (status != Success || list == NULL) {
433 /* Request status */
434 int status; local
451 status
481 int status; local
694 int status; local
790 int status; local
885 int status; local
1078 int status; local
1695 int status; local
1778 int status; local
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DjavaAssertions.hpp47 // account for any dynamic changes to assertion status.
57 typeArrayHandle status, TRAPS);
/openjdk7/hotspot/src/share/vm/utilities/
H A DvmError.hpp71 // Core dump status, false if we have been unable to write a core/minidump for some reason
118 // Report status of core/minidump
119 static void report_coredump_status(const char* message, bool status);
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/SSLEngineImpl/
H A DEmptyExtensionData.java112 SSLEngineResult.HandshakeStatus status = ssle.getHandshakeStatus();
113 if ( status == HandshakeStatus.NEED_UNWRAP) {
117 } else if ( status == HandshakeStatus.NEED_WRAP) {
122 throw new Exception("unexpected handshake status " + status);
/openjdk7/jdk/src/share/native/sun/font/layout/
H A DSunLayoutEngine.cpp139 LEErrorCode status = (LEErrorCode)0; local
140 engine->getGlyphs(glyphs + count, gmask, status);
141 engine->getGlyphPositions(positions + (count * 2), status);
142 engine->getCharIndices((le_int32*)(indices + count), baseIndex, status);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/
H A DHttpExchange.java208 * Sets the HTTP status code for the response.
213 * @param status the response code to send
216 public abstract void setStatus(int status); argument
/openjdk7/jdk/test/sun/security/pkcs11/KeyStore/
H A DBasic.sh190 # save error status
191 status=$?
194 exit $status

Completed in 76 milliseconds

1234567891011>>