Home
last modified time | relevance | path

Searched refs:is_loopback (Results 1 – 22 of 22) sorted by relevance

/third_party/boost/libs/asio/test/ip/
Daddress_v6.cpp54 b = addr1.is_loopback(); in test()
256 BOOST_ASIO_CHECK(!unspecified_address.is_loopback()); in test()
257 BOOST_ASIO_CHECK(loopback_address.is_loopback()); in test()
258 BOOST_ASIO_CHECK(!link_local_address.is_loopback()); in test()
259 BOOST_ASIO_CHECK(!site_local_address.is_loopback()); in test()
260 BOOST_ASIO_CHECK(!v4_mapped_address.is_loopback()); in test()
261 BOOST_ASIO_CHECK(!v4_compat_address.is_loopback()); in test()
262 BOOST_ASIO_CHECK(!mcast_global_address.is_loopback()); in test()
263 BOOST_ASIO_CHECK(!mcast_link_local_address.is_loopback()); in test()
264 BOOST_ASIO_CHECK(!mcast_node_local_address.is_loopback()); in test()
[all …]
Daddress_v4.cpp50 bool b = addr1.is_loopback(); in test()
217 BOOST_ASIO_CHECK(address_v4(0x7F000001).is_loopback()); in test()
218 BOOST_ASIO_CHECK(address_v4(0x7F000002).is_loopback()); in test()
219 BOOST_ASIO_CHECK(!address_v4(0x00000000).is_loopback()); in test()
220 BOOST_ASIO_CHECK(!address_v4(0x01020304).is_loopback()); in test()
Daddress.cpp56 b = addr1.is_loopback(); in test()
/third_party/glib/gio/
Dgunixmounts.c145 gboolean is_loopback; member
472 gboolean is_loopback) in create_unix_mount_point() argument
483 mount_point->is_loopback = is_loopback; in create_unix_mount_point()
1034 gboolean is_loopback = FALSE; in _g_get_unix_mount_points() local
1060 is_loopback = (userspace_flags & MNT_MS_LOOP) != 0; in _g_get_unix_mount_points()
1083 is_loopback); in _g_get_unix_mount_points()
1130 gboolean is_loopback = FALSE; in _g_get_unix_mount_points() local
1153 is_loopback = TRUE; in _g_get_unix_mount_points()
1174 is_loopback); in _g_get_unix_mount_points()
1215 gboolean is_loopback = FALSE; in _g_get_unix_mount_points() local
[all …]
/third_party/boost/libs/asio/include/boost/asio/ip/impl/
Daddress.ipp194 bool address::is_loopback() const BOOST_ASIO_NOEXCEPT
197 ? ipv4_address_.is_loopback()
198 : ipv6_address_.is_loopback();
Daddress_v4.ipp112 bool address_v4::is_loopback() const BOOST_ASIO_NOEXCEPT
Daddress_v6.ipp142 bool address_v6::is_loopback() const BOOST_ASIO_NOEXCEPT
/third_party/boost/boost/asio/ip/impl/
Daddress.ipp194 bool address::is_loopback() const BOOST_ASIO_NOEXCEPT
197 ? ipv4_address_.is_loopback()
198 : ipv6_address_.is_loopback();
Daddress_v4.ipp112 bool address_v4::is_loopback() const BOOST_ASIO_NOEXCEPT
Daddress_v6.ipp142 bool address_v6::is_loopback() const BOOST_ASIO_NOEXCEPT
/third_party/python/Lib/
Dipaddress.py1117 def is_loopback(self): member in _BaseNetwork
1125 return (self.network_address.is_loopback and
1126 self.broadcast_address.is_loopback)
1366 def is_loopback(self): member in IPv4Address
2038 def is_loopback(self): member in IPv6Address
2161 def is_loopback(self): member in IPv6Interface
2162 return self._ip == 1 and self.network.is_loopback
/third_party/python/Lib/test/
Dtest_ipaddress.py2213 '127.100.200.254/32').is_loopback)
2215 '127.42.0.0/16').is_loopback)
2216 self.assertEqual(False, ipaddress.ip_network('128.0.0.0').is_loopback)
2252 ipaddress.ip_address('127.100.200.254').is_loopback)
2253 self.assertEqual(True, ipaddress.ip_address('127.42.0.0').is_loopback)
2254 self.assertEqual(False, ipaddress.ip_address('128.0.0.0').is_loopback)
2284 self.assertEqual(True, ipaddress.ip_interface('0:0::0:01').is_loopback)
2285 self.assertEqual(False, ipaddress.ip_interface('::1/127').is_loopback)
2286 self.assertEqual(False, ipaddress.ip_network('::').is_loopback)
2287 self.assertEqual(False, ipaddress.ip_network('::2').is_loopback)
[all …]
/third_party/boost/boost/asio/ip/
Daddress_v4.hpp148 BOOST_ASIO_DECL bool is_loopback() const BOOST_ASIO_NOEXCEPT;
Daddress.hpp137 BOOST_ASIO_DECL bool is_loopback() const BOOST_ASIO_NOEXCEPT;
Daddress_v6.hpp146 BOOST_ASIO_DECL bool is_loopback() const BOOST_ASIO_NOEXCEPT;
/third_party/boost/libs/asio/include/boost/asio/ip/
Daddress.hpp137 BOOST_ASIO_DECL bool is_loopback() const BOOST_ASIO_NOEXCEPT;
Daddress_v4.hpp148 BOOST_ASIO_DECL bool is_loopback() const BOOST_ASIO_NOEXCEPT;
Daddress_v6.hpp146 BOOST_ASIO_DECL bool is_loopback() const BOOST_ASIO_NOEXCEPT;
/third_party/python/Doc/library/
Dipaddress.rst212 .. attribute:: is_loopback
307 .. attribute:: is_loopback
505 .. attribute:: is_loopback
717 .. attribute:: is_loopback
/third_party/boost/doc/html/
Dasio_HTML.manifest2190 boost_asio/reference/ip__address/is_loopback.html
2237 boost_asio/reference/ip__address_v4/is_loopback.html
2287 boost_asio/reference/ip__address_v6/is_loopback.html
/third_party/boost/libs/asio/doc/
Dhistory.qbk1182 * Made the `is_loopback()`, `is_unspecified()` and `is_multicast()` functions
Dreference.qbk83851 [[link boost_asio.reference.ip__address.is_loopback [*is_loopback]]]
84155 [section:is_loopback ip::address::is_loopback]
84157 [indexterm2 boost_asio.indexterm.ip__address.is_loopback..is_loopback..ip::address]
84161 bool is_loopback() const;
84755 [[link boost_asio.reference.ip__address_v4.is_loopback [*is_loopback]]]
85209 [section:is_loopback ip::address_v4::is_loopback]
85211 [indexterm2 boost_asio.indexterm.ip__address_v4.is_loopback..is_loopback..ip::address_v4]
85215 bool is_loopback() const;
85996 [[link boost_asio.reference.ip__address_v6.is_loopback [*is_loopback]]]
86394 [section:is_loopback ip::address_v6::is_loopback]
[all …]