Searched defs:status (Results 76 - 100 of 166) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDragSourceContext.java466 * and status, otherwise this method does nothing.
470 * @param status one of the fields <code>DEFAULT</code>,
475 protected synchronized void updateCurrentCursor(int sourceAct, int targetAct, int status) { argument
488 switch (status) {
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.inline.hpp98 int status; local
100 if((status = ::readdir_r(dirp, dbuf, &p)) != 0) {
101 errno = status;
/openjdk7/jdk/src/share/back/
H A DReferenceTypeImpl.c533 jint status; local
541 status = classStatus(clazz);
542 (void)outStream_writeInt(out, map2jdwpClassStatus(status));
H A DVirtualMachineImpl.c131 jint status = classStatus(clazz); local
138 if ((status & wanted) == 0) {
166 jint status = classStatus(clazz); local
170 (void)outStream_writeInt(out, map2jdwpClassStatus(status));
222 jint status = classStatus(clazz); local
227 if ((status & wanted) != 0) {
245 jint status = classStatus(clazz); local
262 (void)outStream_writeInt(out, map2jdwpClassStatus(status));
/openjdk7/hotspot/src/share/vm/utilities/
H A DyieldingWorkgroup.hpp146 Status status() const { return _status; } function in class:YieldingFlexibleGangTask
H A DvmError.cpp215 void VMError::report_coredump_status(const char* message, bool status) { argument
216 coredump_status = status;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DLabel.java139 * Flags that indicate the status of this label.
151 int status; field in class:Label
291 if ((status & RESOLVED) == 0) {
318 if ((status & RESOLVED) == 0) {
392 this.status |= RESOLVED;
457 if ((status & Label.VISITED) != 0) {
487 if ((status & VISITED) == 0) {
488 status |= VISITED;
509 if ((status & VISITED) != 0) {
512 status |
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DWSHTTPConnection.java125 public abstract void setStatus(int status); argument
160 * Once this method is called, the status code and response
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DPortableConnectionImpl.java59 private int status; field in class:PortableConnectionImpl
105 public void setStatus(int status) { argument
106 this.status = status;
112 return status;
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/solaris/native/java/lang/
H A Djava_props_macosx.c112 OSStatus status = SessionGetInfo(callerSecuritySession, &session_id, &session_info); local
113 if (status != noErr) return false;
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DIocp.java438 CompletionStatus status) throws IOException;
437 getQueuedCompletionStatus(long completionPort, CompletionStatus status) argument
/openjdk7/jdk/src/windows/native/sun/net/www/protocol/http/ntlm/
H A DNTLMAuthSequence.c44 static void endSequence (PCredHandle credHand, PCtxtHandle ctxHandle, JNIEnv *env, jobject status);
157 (JNIEnv *env, jobject this, jlong crdHandle, jbyteArray lastToken, jobject status)
228 endSequence (pCred, pCtx, env, status);
236 endSequence (pCred, pCtx, env, status);
246 endSequence (pCred, pCtx, env, status);
251 endSequence (pCred, pCtx, env, status);
257 static void endSequence (PCredHandle credHand, PCtxtHandle ctxHandle, JNIEnv *env, jobject status) { argument
269 (*env)->SetBooleanField(env, status, status_seqCompleteID, JNI_TRUE);
156 Java_sun_net_www_protocol_http_ntlm_NTLMAuthSequence_getNextToken(JNIEnv *env, jobject this, jlong crdHandle, jbyteArray lastToken, jobject status) argument
/openjdk7/jdk/test/sun/security/ssl/javax/net/ssl/NewAPIs/SSLEngine/
H A DCheckStatus.java89 Status status, HandshakeStatus hsStatus,
93 if ((status != null) && (result.getStatus() != status)) {
94 throw new Exception("Unexpected Status: need = " + status +
87 checkResult(ByteBuffer bbIn, ByteBuffer bbOut, SSLEngineResult result, Status status, HandshakeStatus hsStatus, int consumed, int produced) argument
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dmain.cpp422 int status = 0; local
425 status = 1;
437 fprintf(u.errstrm, "unpacker completed with status=%d\n", status);
445 return status;
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_parseImage.c59 int status; local
87 if ((status = awt_parseRaster(env, jraster, &imageP->raster)) <= 0) {
89 return status;
100 if ((status = awt_parseColorModel(env, jcmodel, imageP->imageType,
108 if ((status = setHints(env, imageP)) <= 0) {
115 return status;
184 /* int 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/jdk/src/share/classes/sun/tools/javac/
H A DSourceMember.java56 * The status of the field
58 int status; field in class:SourceMember
401 getName() + ", status = " + status);
403 if (status == PARSED) {
406 status = CHECKED;
413 if (status == PARSED) {
415 status = ERROR;
424 getName() + ", status = " + status);
[all...]
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/
H A DMain.java80 boolean status; field in class:Main
605 boolean status = true;
621 status = false;
663 return status;
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLSurfaceData.c325 GLenum error, status; local
351 status = j2d_glCheckFramebufferStatusEXT(GL_FRAMEBUFFER_EXT);
353 if (status == GL_FRAMEBUFFER_COMPLETE_EXT) {
362 " framebuffer is incomplete: depth=%d status=%x",
363 depthSize, status);
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/
H A DScanDirConfig.java175 private volatile SaveState status = CREATED; field in class:ScanDirConfig
228 status=LOADED;
239 status = SAVED;
356 status = MODIFIED;
379 status = MODIFIED;
394 status = MODIFIED;
402 return status;
/openjdk7/jdk/src/share/classes/java/lang/
H A DSecurityManager.java738 * halt with the specified status code.
741 * <code>exit</code> method of class <code>Runtime</code>. A status
746 * <code>RuntimePermission("exitVM."+status)</code> permission.
753 * @param status the exit status.
756 * the specified status.
760 public void checkExit(int status) { argument
761 checkPermission(new RuntimePermission("exitVM."+status));
/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/hotspot/src/os/bsd/dtrace/
H A Djvm_dtrace.c62 #define JVM_ERR_DOOR_CANT_READ_STATUS "cannot read door command status"
63 #define JVM_ERR_DOOR_CMD_STATUS "door command error status"
462 /* read status code for a door command */
470 print_debug("door cmd status: read status failed\n");
480 print_debug("door cmd status: read status overflow\n");
490 int fd, status = 0; local
546 status = read_status(fd);
547 // non-zero status i
[all...]
/openjdk7/hotspot/src/os/solaris/dtrace/
H A Djvm_dtrace.c62 #define JVM_ERR_DOOR_CANT_READ_STATUS "cannot read door command status"
63 #define JVM_ERR_DOOR_CMD_STATUS "door command error status"
462 /* read status code for a door command */
470 print_debug("door cmd status: read status failed\n");
480 print_debug("door cmd status: read status overflow\n");
490 int fd, status = 0; local
546 status = read_status(fd);
547 // non-zero status i
[all...]

Completed in 85 milliseconds

1234567