Home
last modified time | relevance | path

Searched refs:nlFamily (Results 1 – 13 of 13) sorted by relevance

/hardware/interfaces/wifi/netlinkinterceptor/libnlinterceptor/
Dlibnlinterceptor.cpp37 : nlFamily(sock.nlFamily), portId(sock.portId) {} in InterceptedSocket()
39 InterceptedSocket::InterceptedSocket(uint32_t nlFamily, uint32_t portId) in InterceptedSocket() argument
40 : nlFamily(nlFamily), portId(portId) {} in InterceptedSocket()
43 return os << "family: " << sock.nlFamily << ", portId: " << sock.portId; in operator <<()
47 if (nlFamily != other.nlFamily) { in operator <()
48 return nlFamily < other.nlFamily; in operator <()
64 .nlFamily = static_cast<int32_t>(nlFamily), in operator AidlInterceptedSocket()
148 *interceptedSocket = {.nlFamily = maybeSocket->nlFamily, in android_nlinterceptor_createSocket()
154 closeSocket({sock.nlFamily, sock.portId}); in android_nlinterceptor_closeSocket()
159 return subscribe({sock.nlFamily, sock.portId}, group); in android_nlinterceptor_subscribe()
[all …]
/hardware/interfaces/wifi/netlinkinterceptor/aidl/aidl_api/NetlinkInterceptor/current/android/hardware/net/nlinterceptor/
DIInterceptor.aidl37 int createSocket(in int nlFamily, in int clientNlPid, in String clientName); in createSocket() argument
38 void closeSocket(in int nlFamily, in int interceptorNlPid); in closeSocket() argument
39 void subscribeGroup(in int nlFamily, in int interceptorNlPid, in int nlGroup); in subscribeGroup() argument
40 void unsubscribeGroup(in int nlFamily, in int interceptorNlPid, in int nlGroup); in unsubscribeGroup() argument
/hardware/interfaces/wifi/netlinkinterceptor/aidl/default/
DNetlinkInterceptor.cpp27 auto nlFamily = static_cast<uint32_t>(nlFamilyAidl); in createSocket() local
32 std::make_unique<InterceptorRelay>(nlFamily, clientNlPid, clientName); in createSocket()
38 << ", " << nlFamily << ":" << clientNlPid; in createSocket()
42 if (mClientMap.find({nlFamily, interceptorNlPid}) != mClientMap.end()) { in createSocket()
54 .emplace(InterceptedSocket(nlFamily, interceptorNlPid), in createSocket()
63 interceptedSocket->nlFamily = nlFamily; in createSocket()
DInterceptorRelay.cpp33 InterceptorRelay::InterceptorRelay(uint32_t nlFamily, uint32_t clientNlPid, in InterceptorRelay() argument
36 mNlSocket(std::make_optional<nl::Socket>(nlFamily, 0, 0)), in InterceptorRelay()
DInterceptorRelay.h36 InterceptorRelay(uint32_t nlFamily, uint32_t clientNlPid,
DNetlinkInterceptor.h39 int32_t nlFamily, int32_t clientNlPid, const std::string& clientName,
/hardware/interfaces/wifi/netlinkinterceptor/libnlinterceptor/include/libnlinterceptor/
Dlibnlinterceptor.h35 uint32_t nlFamily; member
40 InterceptedSocket(uint32_t nlFamily, uint32_t portId);
110 uint32_t nlFamily; member
/hardware/interfaces/wifi/netlinkinterceptor/aidl/aidl_api/android.hardware.net.nlinterceptor/current/android/hardware/net/nlinterceptor/
DInterceptedSocket.aidl37 int nlFamily;
DIInterceptor.aidl37 …android.hardware.net.nlinterceptor.InterceptedSocket createSocket(in int nlFamily, in int clientNl… in createSocket() argument
/hardware/interfaces/wifi/netlinkinterceptor/aidl/aidl_api/android.hardware.net.nlinterceptor/1/android/hardware/net/nlinterceptor/
DInterceptedSocket.aidl37 int nlFamily;
DIInterceptor.aidl37 …android.hardware.net.nlinterceptor.InterceptedSocket createSocket(in int nlFamily, in int clientNl… in createSocket() argument
/hardware/interfaces/wifi/netlinkinterceptor/aidl/android/hardware/net/nlinterceptor/
DInterceptedSocket.aidl27 int nlFamily;
DIInterceptor.aidl53 InterceptedSocket createSocket(in int nlFamily, in int clientNlPid, in String clientName); in createSocket() argument