Searched refs:errorCode (Results 51 - 60 of 60) sorted by relevance

123

/openjdk7/jdk/src/share/back/
H A DoutStream.c80 stream->packet.type.reply.errorCode = 0x0;
466 stream->packet.type.reply.errorCode = (jshort)stream->error;
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DReferenceTypeImpl.java731 if (exc.errorCode() == JDWP.Error.ABSENT_INFORMATION) {
794 if (exc.errorCode() != JDWP.Error.ABSENT_INFORMATION) {
948 if (exc.errorCode() == JDWP.Error.ABSENT_INFORMATION) {
992 if (exc.errorCode() == JDWP.Error.ABSENT_INFORMATION) {
H A DVirtualMachineImpl.java319 switch (exc.errorCode()) {
445 switch (exc.errorCode()) {
/openjdk7/jdk/src/windows/native/java/net/
H A DTwoStacksPlainDatagramSocketImpl.c929 int fd, fd1, fduse, nsockets=0, errorCode; local
1123 errorCode = WSAGetLastError();
1125 if (errorCode == WSAEMSGSIZE) {
1203 int fd, fd1, fduse, errorCode; local
1416 errorCode = WSAGetLastError();
1418 if (errorCode == WSAEMSGSIZE) {
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapClient.java1430 * "[LDAP: error code <errorCode> - <errorMessage>]"
1432 * where <errorCode> is a numeric error code
1436 static String getErrorMessage(int errorCode, String errorMessage) { argument
1438 String message = "[LDAP: error code " + errorCode;
1449 if (ldap_error_message[errorCode] != null) {
1450 message = message + " - " + ldap_error_message[errorCode] +
H A DLdapCtx.java3046 * @param errorCode numeric LDAP error code
3051 public static NamingException mapErrorCode(int errorCode, argument
3054 if (errorCode == LdapClient.LDAP_SUCCESS)
3058 String message = LdapClient.getErrorMessage(errorCode, errorMessage);
3060 switch (errorCode) {
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A DLCMS.c124 void errorHandler(cmsContext ContextID, cmsUInt32Number errorCode, argument
130 "LCMS error %d: %s", errorCode, errorText);
/openjdk7/jdk/src/share/transport/shmem/
H A DshmemBase.c1042 CHECK_ERROR(sendBytes(connection, &packet->type.reply.errorCode, sizeof(jshort)));
1113 CHECK_ERROR(receiveBytes(connection, &packet->type.reply.errorCode, sizeof(jshort)));
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsNativeDispatcher.java963 static native String FormatMessage(int errorCode); argument
/openjdk7/jdk/src/windows/native/sun/nio/fs/
H A DWindowsNativeDispatcher.c194 Java_sun_nio_fs_WindowsNativeDispatcher_FormatMessage(JNIEnv* env, jclass this, jint errorCode) { argument
199 (DWORD)errorCode,

Completed in 74 milliseconds

123