Home
last modified time | relevance | path

Searched refs:m_errno (Results 1 – 25 of 76) sorted by relevance

1234

/dports/net-p2p/libtorrent/libtorrent-0.13.8/rak/
H A Derror_number.h61 error_number() : m_errno(0) {} in error_number()
62 error_number(int e) : m_errno(e) {} in error_number()
64 bool is_valid() const { return m_errno != 0; } in is_valid()
66 int value() const { return m_errno; } in value()
69 …bool is_blocked_momentary() const { return m_errno == e_again || m_errno == e_intr;… in is_blocked_momentary()
70 bool is_blocked_prolonged() const { return m_errno == e_deadlk; } in is_blocked_prolonged()
72 …bool is_closed() const { return m_errno == e_connreset || m_errno == e_c… in is_closed()
74 … is_bad_path() const { return m_errno == e_noent || m_errno == e_notdir || m_e… in is_bad_path()
78 static void set_global(error_number err) { errno = err.m_errno; } in set_global()
80 bool operator == (const error_number& e) const { return m_errno == e.m_errno; }
[all …]
/dports/net-p2p/rtorrent/rtorrent-0.9.8/rak/
H A Derror_number.h61 error_number() : m_errno(0) {} in error_number()
62 error_number(int e) : m_errno(e) {} in error_number()
64 bool is_valid() const { return m_errno != 0; } in is_valid()
66 int value() const { return m_errno; } in value()
69 …bool is_blocked_momentary() const { return m_errno == e_again || m_errno == e_intr;… in is_blocked_momentary()
70 bool is_blocked_prolonged() const { return m_errno == e_deadlk; } in is_blocked_prolonged()
72 …bool is_closed() const { return m_errno == e_connreset || m_errno == e_c… in is_closed()
74 … is_bad_path() const { return m_errno == e_noent || m_errno == e_notdir || m_e… in is_bad_path()
78 static void set_global(error_number err) { errno = err.m_errno; } in set_global()
80 bool operator == (const error_number& e) const { return m_errno == e.m_errno; }
[all …]
/dports/devel/libpo6/libpo6-0.8.0/po6/
H A Derror.h65 int m_errno;
71 : m_errno(0) in error()
79 : m_errno(num) in error()
87 : m_errno(num) in error()
96 : m_errno(e.m_errno) in error()
116 return m_errno;
122 m_errno = rhs.m_errno;
134 strncpy(m_msg, strerror_r(m_errno, m_msg, PO6_ERROR_MSG_LEN), PO6_ERROR_MSG_LEN); in use_strerror()
140 strerror_r(m_errno, m_msg, PO6_ERROR_MSG_LEN); in use_strerror()
151 char *msg = strerror(m_errno); in use_strerror()
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/network/utils/
H A Dpacket-socket.cc63 m_errno = ERROR_NOTERROR; in PacketSocket()
91 return m_errno; in GetErrno()
131 m_errno = ERROR_INVAL; in Bind()
145 m_errno = ERROR_INVAL; in DoBind()
150 m_errno = ERROR_BADF; in DoBind()
178 m_errno = ERROR_BADF; in ShutdownSend()
191 m_errno = ERROR_BADF; in ShutdownRecv()
204 m_errno = ERROR_BADF; in Close()
224 m_errno = ERROR_BADF; in Connect()
314 m_errno = ERROR_BADF; in SendTo()
[all …]
/dports/archivers/rvm/rvm-1.11/
H A Derror.cc185 m_errno = 0; in clear()
207 m_errno = a_i; in num()
212 return(m_errno); in num()
256 m_errno = a_e.num(); in assign()
282 if (m_errno != 0) in write()
283 a_out << " [" << m_errno << "]: " << strerror(m_errno); in write()
322 snprintf(buffer, buffer_len, "%d", m_errno); in str()
323 if (m_errno != 0) { in str()
327 es += strerror(m_errno); in str()
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/internet/model/
H A Dudp-socket-impl.cc83 m_errno (ERROR_NOTERROR), in UdpSocketImpl()
156 return m_errno; in GetErrno()
348 m_errno = ERROR_INVAL; in Bind()
439 m_errno = ERROR_NOTCONN; in Send()
470 m_errno = ERROR_SHUTDOWN; in DoSend()
483 m_errno = ERROR_AFNOSUPPORT; in DoSend()
512 m_errno = ERROR_MSGSIZE; in DoSendTo()
651 m_errno = errno_; in DoSendTo()
695 m_errno = ERROR_MSGSIZE; in DoSendTo()
773 m_errno = errno_; in DoSendTo()
[all …]
H A Dnsc-tcp-socket-impl.cc81 m_errno (ERROR_NOTERROR), in NscTcpSocketImpl()
106 m_errno (sock.m_errno), in NscTcpSocketImpl()
182 return m_errno; in GetErrno()
232 m_errno = ERROR_AFNOSUPPORT; in Bind6()
379 m_errno = ERROR_NOTCONN; in Send()
390 m_errno = ERROR_NOTCONN; in SendTo()
464 m_errno = ERROR_AGAIN; in Recv()
475 m_errno = ERROR_AGAIN; in Recv()
506 m_errno = ERROR_NOTCONN; in GetPeerName()
627 m_errno = ERROR_NOTERROR; in ReadPendingData()
[all …]
/dports/net-p2p/libtorrent/libtorrent-0.13.8/src/torrent/
H A Dexceptions.h107 connection_error(int err) : m_errno(err) {} in connection_error()
112 int get_errno() const { return m_errno; } in get_errno()
115 int m_errno;
120 address_info_error(int err) : m_errno(err) {} in address_info_error()
125 int get_errno() const { return m_errno; } in get_errno()
128 int m_errno;
/dports/sysutils/fusefs-securefs/securefs-0.12.0/sources/
H A Dexceptions.h56 int m_errno;
59 explicit VFSException(int errc) : m_errno(errc) {} in VFSException()
62 int error_number() const noexcept override { return m_errno; } in error_number()
76 int m_errno;
80 explicit POSIXException(int errc, std::string msg) : m_errno(errc), m_msg(std::move(msg)) {} in POSIXException()
83 int error_number() const noexcept override { return m_errno; } in error_number()
/dports/devel/cxxtools/cxxtools-2.2.1/src/
H A Dsystemerror.cpp41 , m_errno(err) in SystemError()
49 , m_errno(errno) in SystemError()
57 m_errno(0) in SystemError()
/dports/net/dictd/dictd-1.13.1/
H A Ddictdplugin_popen.cpp67 int m_errno; member in global_data
85 m_errno = 0; in global_data()
235 if (data -> m_errno){ in dictdb_error()
236 data -> m_err_msg += strerror (data -> m_errno); in dictdb_error()
319 data -> m_errno = errno; in dictdb_search()
344 data -> m_errno = errno; in dictdb_search()
/dports/textproc/dict/dictd-1.13.1/
H A Ddictdplugin_popen.cpp67 int m_errno; member in global_data
85 m_errno = 0; in global_data()
235 if (data -> m_errno){ in dictdb_error()
236 data -> m_err_msg += strerror (data -> m_errno); in dictdb_error()
319 data -> m_errno = errno; in dictdb_search()
344 data -> m_errno = errno; in dictdb_search()
/dports/textproc/dictfmt/dictd-1.13.1/
H A Ddictdplugin_popen.cpp67 int m_errno; member in global_data
85 m_errno = 0; in global_data()
235 if (data -> m_errno){ in dictdb_error()
236 data -> m_err_msg += strerror (data -> m_errno); in dictdb_error()
319 data -> m_errno = errno; in dictdb_search()
344 data -> m_errno = errno; in dictdb_search()
/dports/net-p2p/libtorrent/libtorrent-0.13.8/src/data/
H A Dhash_torrent.cc58 m_errno(0), in HashTorrent()
86 m_errno = 0; in clear()
213 m_errno = handle.error_number().value(); in queue()
216 m_position, quick, m_errno, handle.error_number().c_str()); in queue()
/dports/databases/xtrabackup/percona-xtrabackup-2.4.21/sql/
H A Drpl_binlog_sender.h85 int m_errno; variable
374 bool has_error() { return m_errno != 0; } in has_error()
380 m_errno= errorno; in set_error()
395 return m_errno == ER_MASTER_FATAL_ERROR_READING_BINLOG; in is_fatal_error()
/dports/www/trafficserver/trafficserver-9.1.1/iocore/net/
H A DP_UnixUDPConnection.h58 int m_errno = 0;
76 m_errno = 0; in init()
90 m_errno = e; in errorAndDie()
/dports/java/java-subversion/subversion-1.14.1/subversion/bindings/cxx/include/svnxx/
H A Dexception.hpp154 int code() const noexcept { return m_errno; } in code()
180 : m_errno(errval), in message()
187 int m_errno; member in apache::subversion::svnxx::error::message
/dports/security/subversion-gnome-keyring/subversion-1.14.1/subversion/bindings/cxx/include/svnxx/
H A Dexception.hpp154 int code() const noexcept { return m_errno; } in code()
180 : m_errno(errval), in message()
187 int m_errno; member in apache::subversion::svnxx::error::message
/dports/devel/p5-subversion/subversion-1.14.1/subversion/bindings/cxx/include/svnxx/
H A Dexception.hpp154 int code() const noexcept { return m_errno; } in code()
180 : m_errno(errval), in message()
187 int m_errno; member in apache::subversion::svnxx::error::message
/dports/devel/py-subversion/subversion-1.14.1/subversion/bindings/cxx/include/svnxx/
H A Dexception.hpp154 int code() const noexcept { return m_errno; } in code()
180 : m_errno(errval), in message()
187 int m_errno; member in apache::subversion::svnxx::error::message
/dports/databases/mysql57-client/mysql-5.7.36/sql/
H A Drpl_binlog_sender.h96 int m_errno; variable
389 bool has_error() { return m_errno != 0; } in has_error()
395 m_errno= errorno; in set_error()
410 return m_errno == ER_MASTER_FATAL_ERROR_READING_BINLOG; in is_fatal_error()
/dports/databases/percona57-server/percona-server-5.7.36-39/sql/
H A Drpl_binlog_sender.h96 int m_errno; variable
391 bool has_error() { return m_errno != 0; } in has_error()
397 m_errno= errorno; in set_error()
412 return m_errno == ER_MASTER_FATAL_ERROR_READING_BINLOG; in is_fatal_error()
/dports/databases/mysqlwsrep57-server/mysql-wsrep-wsrep_5.7.35-25.27/sql/
H A Drpl_binlog_sender.h96 int m_errno; variable
389 bool has_error() { return m_errno != 0; } in has_error()
395 m_errno= errorno; in set_error()
410 return m_errno == ER_MASTER_FATAL_ERROR_READING_BINLOG; in is_fatal_error()
/dports/databases/percona57-client/percona-server-5.7.36-39/sql/
H A Drpl_binlog_sender.h96 int m_errno; variable
391 bool has_error() { return m_errno != 0; } in has_error()
397 m_errno= errorno; in set_error()
412 return m_errno == ER_MASTER_FATAL_ERROR_READING_BINLOG; in is_fatal_error()
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/sql/
H A Drpl_binlog_sender.h98 int m_errno; variable
382 bool has_error() { return m_errno != 0; } in has_error()
387 m_errno = errorno; in set_error()
399 return m_errno == ER_MASTER_FATAL_ERROR_READING_BINLOG; in is_fatal_error()

1234