Lines Matching refs:aConnection
109 extern "C" void otPlatDsoSend(otPlatDsoConnection *aConnection, otMessage *aMessage);
113 friend void otPlatDsoSend(otPlatDsoConnection *aConnection, otMessage *aMessage);
270 static void HandleConnected(Dso::Connection &aConnection) in HandleConnected() argument
272 static_cast<Connection &>(aConnection).HandleConnected(); in HandleConnected()
275 static void HandleSessionEstablished(Dso::Connection &aConnection) in HandleSessionEstablished() argument
277 static_cast<Connection &>(aConnection).HandleSessionEstablished(); in HandleSessionEstablished()
280 static void HandleDisconnected(Dso::Connection &aConnection) in HandleDisconnected() argument
282 static_cast<Connection &>(aConnection).HandleDisconnected(); in HandleDisconnected()
285 static Error ProcessRequestMessage(Dso::Connection &aConnection, in ProcessRequestMessage() argument
290 …return static_cast<Connection &>(aConnection).ProcessRequestMessage(aMessageId, aMessage, aPrimary… in ProcessRequestMessage()
293 static Error ProcessUnidirectionalMessage(Dso::Connection &aConnection, in ProcessUnidirectionalMessage() argument
297 …return static_cast<Connection &>(aConnection).ProcessUnidirectionalMessage(aMessage, aPrimaryTlvTy… in ProcessUnidirectionalMessage()
300 static Error ProcessResponseMessage(Dso::Connection &aConnection, in ProcessResponseMessage() argument
306 return static_cast<Connection &>(aConnection) in ProcessResponseMessage()
376 void otPlatDsoConnect(otPlatDsoConnection *aConnection, const otSockAddr *aPeerSockAddr) in otPlatDsoConnect() argument
378 Connection &conn = *static_cast<Connection *>(aConnection); in otPlatDsoConnect()
393 …peerConn = static_cast<Connection *>(otPlatDsoAccept(otPlatDsoGetInstance(aConnection), aPeerSockA… in otPlatDsoConnect()
408 otPlatDsoHandleConnected(aConnection); in otPlatDsoConnect()
414 void otPlatDsoSend(otPlatDsoConnection *aConnection, otMessage *aMessage) in otPlatDsoSend() argument
416 Connection &conn = *static_cast<Connection *>(aConnection); in otPlatDsoSend()
444 void otPlatDsoDisconnect(otPlatDsoConnection *aConnection, otPlatDsoDisconnectMode aMode) in otPlatDsoDisconnect() argument
446 Connection &conn = *static_cast<Connection *>(aConnection); in otPlatDsoDisconnect()