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 220 void *rawAddress;
228 rawAddress = &sin->sin_addr;
237 rawAddress = &sin6->sin6_addr;
253 memcpy(address, rawAddress, rawLength);
RouteController.cpp 370 uint8_t rawAddress[sizeof(in6_addr)];
373 int rawLength = parsePrefix(destination, &family, rawAddress, sizeof(rawAddress),
380 if (static_cast<size_t>(rawLength) > sizeof(rawAddress)) {
381 ALOGE("impossible! address too long (%d vs %zu)", rawLength, sizeof(rawAddress));
435 { rawAddress, static_cast<size_t>(rawLength) },
    [all...]

Completed in 179 milliseconds