Home
last modified time | relevance | path

Searched refs:errmsg (Results 1 – 5 of 5) sorted by relevance

/libcore/ojluni/src/main/native/
Dnet_util.c274 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()
Djava_util_zip_ZipFile.c330 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()
DUNIXProcess_md.c487 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()
Dnet_util_md.c265 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/
DFtpClient.java721 String errmsg = e.getMessage(); in openDataConnection()
722 if (!errmsg.startsWith("PASV") && !errmsg.startsWith("EPSV")) { in openDataConnection()