HomeSort by relevance Sort by last modified time
    Searched defs:rawAddress (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/native/
NetworkUtilities.cpp 49 const void* rawAddress;
55 rawAddress = &sin.sin_addr.s_addr;
60 rawAddress = &sin6.sin6_addr.s6_addr;
80 reinterpret_cast<const jbyte*>(rawAddress));
  /system/netd/server/
NetdConstants.cpp 200 void *rawAddress;
208 rawAddress = &sin->sin_addr;
217 rawAddress = &sin6->sin6_addr;
233 memcpy(address, rawAddress, rawLength);
RouteController.cpp 327 uint8_t rawAddress[sizeof(in6_addr)];
330 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
337 if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) {
338 ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress));
392 { rawAddress, static_cast<size_t>(rawLength) },
    [all...]

Completed in 113 milliseconds