Lines Matching refs:pvMsg

41 typedef void (*tpfAppSocketCb) (SOCKET sock, uint8 u8Msg, void *pvMsg);
618 static void handle_wifi_con_state_changed(void *pvMsg) in handle_wifi_con_state_changed() argument
621 (tstrM2mWifiStateChanged *)pvMsg; in handle_wifi_con_state_changed()
654 static void handle_wifi_dhcp_conf(void *pvMsg) in handle_wifi_dhcp_conf() argument
656 uint8_t *pu8IPAddress = (uint8_t *)pvMsg; in handle_wifi_dhcp_conf()
683 static void handle_scan_result(void *pvMsg) in handle_scan_result() argument
685 tstrM2mWifiscanResult *pstrScanResult = (tstrM2mWifiscanResult *)pvMsg; in handle_scan_result()
722 static void handle_scan_done(void *pvMsg) in handle_scan_done() argument
724 tstrM2mScanDone *pstrInfo = (tstrM2mScanDone *)pvMsg; in handle_scan_done()
755 static void winc1500_wifi_cb(uint8_t message_type, void *pvMsg) in winc1500_wifi_cb() argument
762 handle_wifi_con_state_changed(pvMsg); in winc1500_wifi_cb()
765 handle_wifi_dhcp_conf(pvMsg); in winc1500_wifi_cb()
768 handle_scan_result(pvMsg); in winc1500_wifi_cb()
771 handle_scan_done(pvMsg); in winc1500_wifi_cb()
781 static void handle_socket_msg_connect(struct socket_data *sd, void *pvMsg) in handle_socket_msg_connect() argument
783 tstrSocketConnectMsg *strConnMsg = (tstrSocketConnectMsg *)pvMsg; in handle_socket_msg_connect()
803 struct socket_data *sd, void *pvMsg) in handle_socket_msg_recv() argument
805 tstrSocketRecvMsg *pstrRx = (tstrSocketRecvMsg *)pvMsg; in handle_socket_msg_recv()
829 static void handle_socket_msg_bind(struct socket_data *sd, void *pvMsg) in handle_socket_msg_bind() argument
831 tstrSocketBindMsg *bind_msg = (tstrSocketBindMsg *)pvMsg; in handle_socket_msg_bind()
845 static void handle_socket_msg_listen(struct socket_data *sd, void *pvMsg) in handle_socket_msg_listen() argument
847 tstrSocketListenMsg *listen_msg = (tstrSocketListenMsg *)pvMsg; in handle_socket_msg_listen()
861 static void handle_socket_msg_accept(struct socket_data *sd, void *pvMsg) in handle_socket_msg_accept() argument
863 tstrSocketAcceptMsg *accept_msg = (tstrSocketAcceptMsg *)pvMsg; in handle_socket_msg_accept()
929 static void winc1500_socket_cb(SOCKET sock, uint8 message, void *pvMsg) in winc1500_socket_cb() argument
942 handle_socket_msg_connect(sd, pvMsg); in winc1500_socket_cb()
949 if (!handle_socket_msg_recv(sock, sd, pvMsg)) { in winc1500_socket_cb()
955 handle_socket_msg_bind(sd, pvMsg); in winc1500_socket_cb()
960 handle_socket_msg_listen(sd, pvMsg); in winc1500_socket_cb()
965 handle_socket_msg_accept(sd, pvMsg); in winc1500_socket_cb()