Searched refs:errmsg (Results 1 – 5 of 5) sorted by relevance
/libcore/ojluni/src/main/native/ |
D | ZipFile.c | 313 char errmsg[128]; in ZipFile_read() local 314 snprintf(errmsg, sizeof(errmsg), "len: %d, off: %d are not valid for array sized %lld\n", in ZipFile_read() 316 JNU_ThrowArrayIndexOutOfBoundsException(env, errmsg); in ZipFile_read() 331 char errmsg[128]; in ZipFile_read() local 332 snprintf(errmsg, sizeof(errmsg), "errno: %d, error: %s\n", errno, in ZipFile_read() 334 JNU_ThrowIOExceptionWithLastError(env, errmsg); in ZipFile_read()
|
D | net_util.c | 275 char errmsg[255]; in NET_SockaddrToInetAddress() local 276 snprintf(errmsg, sizeof(errmsg), "Unknown socket family: %d", him->sa_family); in NET_SockaddrToInetAddress() 277 JNU_ThrowByName(env, "java/net/SocketException", errmsg); in NET_SockaddrToInetAddress()
|
D | UNIXProcess_md.c | 504 char *errmsg; in throwIOException() local 516 errmsg = NEW(char, newsize); in throwIOException() 517 snprintf(errmsg, newsize, format, errnum, detail); in throwIOException() 518 s = JNU_NewStringPlatform(env, errmsg); in throwIOException() 525 free(errmsg); in throwIOException()
|
D | net_util_md.c | 272 char errmsg[255]; in NET_ThrowByNameWithLastError() local 273 snprintf(errmsg, sizeof(errmsg), "errno: %d, error: %s\n", errno, in NET_ThrowByNameWithLastError() 275 JNU_ThrowByNameWithLastError(env, name, errmsg); in NET_ThrowByNameWithLastError()
|
/libcore/ojluni/src/main/java/sun/net/ftp/impl/ |
D | FtpClient.java | 725 String errmsg = e.getMessage(); in openDataConnection() 726 if (!errmsg.startsWith("PASV") && !errmsg.startsWith("EPSV")) { in openDataConnection()
|