Searched refs:errnoException (Results 1 – 6 of 6) sorted by relevance
77 } catch (ErrnoException errnoException) { in available()78 if (errnoException.errno == ENOTTY) { in available()82 throw errnoException.rethrowAsIOException(); in available()106 } catch (ErrnoException errnoException) { in bind()107 if (errnoException.errno == EADDRINUSE || errnoException.errno == EADDRNOTAVAIL || in bind()108 errnoException.errno == EPERM || errnoException.errno == EACCES) { in bind()109 throw new BindException(errnoException.getMessage(), errnoException); in bind()111 throw new SocketException(errnoException.getMessage(), errnoException); in bind()136 } catch (ErrnoException errnoException) { in connect()137 if (errnoException.errno == EHOSTUNREACH) { in connect()[all …]
213 } catch (ErrnoException errnoException) { in setBlocking()214 throw errnoException.rethrowAsIOException(); in setBlocking()291 } catch (ErrnoException errnoException) { in canOpenReadOnly()
181 } catch (ErrnoException errnoException) { in socketListen()182 throw errnoException.rethrowAsSocketException(); in socketListen()207 } catch (ErrnoException errnoException) { in socketAccept()208 if (errnoException.errno == EAGAIN) { in socketAccept()210 e.initCause(errnoException); in socketAccept()212 } else if (errnoException.errno == EINVAL || errnoException.errno == EBADF) { in socketAccept()215 errnoException.rethrowAsSocketException(); in socketAccept()243 } catch (ErrnoException errnoException) { in socketClose0()270 } catch (ErrnoException errnoException) { in getMarkerFD()282 } catch (ErrnoException errnoException) { in socketShutdown()[all …]
202 } catch (ErrnoException errnoException) { in datagramSocketCreate()203 throw errnoException.rethrowAsSocketException(); in datagramSocketCreate()
588 } catch (ErrnoException errnoException) { in getFilePointer()589 throw errnoException.rethrowAsIOException(); in getFilePointer()619 } catch (ErrnoException errnoException) { in seek()620 throw errnoException.rethrowAsIOException(); in seek()636 } catch (ErrnoException errnoException) { in length()637 throw errnoException.rethrowAsIOException(); in length()668 } catch (ErrnoException errnoException) { in setLength()669 throw errnoException.rethrowAsIOException(); in setLength()
187 } catch (ErrnoException errnoException) { in loadData()