Searched refs:errmsg (Results 1 – 5 of 5) sorted by relevance
/libcore/ojluni/src/main/native/ |
D | net_util.c | 274 char errmsg[255]; in NET_SockaddrToInetAddress() local 275 snprintf(errmsg, sizeof(errmsg), "Unknown socket family: %d", him->sa_family); in NET_SockaddrToInetAddress() 276 JNU_ThrowByName(env, "java/net/SocketException", errmsg); in NET_SockaddrToInetAddress()
|
D | java_util_zip_ZipFile.c | 330 char errmsg[128]; in ZipFile_read() local 331 snprintf(errmsg, sizeof(errmsg), "errno: %d, error: %s\n", errno, in ZipFile_read() 333 JNU_ThrowIOExceptionWithLastError(env, errmsg); in ZipFile_read()
|
D | UNIXProcess_md.c | 487 char *errmsg; in throwIOException() local 497 errmsg = NEW(char, newsize); in throwIOException() 498 snprintf(errmsg, newsize, format, errnum, detail); in throwIOException() 499 s = JNU_NewStringPlatform(env, errmsg); in throwIOException() 506 free(errmsg); in throwIOException()
|
D | net_util_md.c | 265 char errmsg[255]; in NET_ThrowByNameWithLastError() local 266 snprintf(errmsg, sizeof(errmsg), "errno: %d, error: %s\n", errno, in NET_ThrowByNameWithLastError() 268 JNU_ThrowByNameWithLastError(env, name, errmsg); in NET_ThrowByNameWithLastError()
|
/libcore/ojluni/src/main/java/sun/net/ftp/impl/ |
D | FtpClient.java | 721 String errmsg = e.getMessage(); in openDataConnection() 722 if (!errmsg.startsWith("PASV") && !errmsg.startsWith("EPSV")) { in openDataConnection()
|