Home | History | Annotate | Download | only in bionic

Lines Matching defs:out

24  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
109 // ...and work out the netmask from the prefix length.
161 ifaddrs** out = reinterpret_cast<ifaddrs**>(context);
167 ifaddrs_storage* new_addr = new ifaddrs_storage(out);
197 const ifaddrs_storage* addr = reinterpret_cast<const ifaddrs_storage*>(*out);
205 ifaddrs_storage* new_addr = new ifaddrs_storage(out);
236 int getifaddrs(ifaddrs** out) {
237 // We construct the result directly into `out`, so terminate the list.
238 *out = nullptr;
242 bool okay = nc.SendRequest(RTM_GETLINK) && nc.ReadResponses(__getifaddrs_callback, out) &&
243 nc.SendRequest(RTM_GETADDR) && nc.ReadResponses(__getifaddrs_callback, out);
245 freeifaddrs(*out);
247 *out = nullptr;