Home
last modified time | relevance | path

Searched refs:protocol (Results 1 – 20 of 20) sorted by relevance

/lk-master/external/lib/lwip/netif/ppp/
A Dauth.c422 if (protp->protocol != PPP_LCP && protp->lowerdown != NULL) { in link_down()
425 if (protp->protocol < 0xC000 && protp->close != NULL) { in link_down()
554 if (protp->protocol != PPP_CCP) { in network_phase()
571 auth_peer_fail(int unit, u16_t protocol) in auth_peer_fail() argument
573 LWIP_UNUSED_ARG(protocol); in auth_peer_fail()
588 auth_peer_success(int unit, u16_t protocol, char *name, int namelen) in auth_peer_success() argument
593 switch (protocol) { in auth_peer_success()
627 auth_withpeer_fail(int unit, u16_t protocol) in auth_withpeer_fail() argument
631 LWIP_UNUSED_ARG(protocol); in auth_withpeer_fail()
651 auth_withpeer_success(int unit, u16_t protocol) in auth_withpeer_success() argument
[all …]
A Dppp.c770 u_short protocol = PPP_IP; in pppifOutputOverEthernet() local
815 u_short protocol = PPP_IP; in pppifOutput() local
904 c = (protocol >> 8) & 0xFF; in pppifOutput()
908 c = protocol & 0xFF; in pppifOutput()
941 pd, protocol)); in pppifOutput()
1606 u16_t protocol; in pppInput() local
1627 if(!((protocol == PPP_LQR) || (protocol == PPP_PAP) || (protocol == PPP_CHAP)) || in pppInput()
1634 switch(protocol) { in pppInput()
1691 if (protp->protocol == protocol && protp->enabled_flag) { in pppInput()
1707 protocol = htons(protocol); in pppInput()
[all …]
A Dfsm.h80 u_short protocol; /* Data Link Layer Protocol field value */ member
A Dfsm.c394 f->protocol)); in fsm_input()
402 f->protocol)); in fsm_input()
407 f->protocol)); in fsm_input()
414 f->protocol, f->state, ppperr_strerr[f->state])); in fsm_input()
881 MAKEHEADER(outp, f->protocol); in fsm_sdata()
A Dppp_impl.h239 u_short protocol; /* PPP protocol number */ member
A Dlcp.c247 f->protocol = PPP_LCP; in lcp_init()
474 if (protp->protocol == prot && protp->enabled_flag) { in lcp_rprotrej()
A Dipcp.c183 f->protocol = PPP_IPCP; in ipcp_init()
/lk-master/external/platform/lpc15xx/lpcopen/lpc_chip_15xx/inc/usbd/
A Dusbd_hiduser.h251 ErrorCode_t (*HID_SetProtocol)( USBD_HANDLE_T hHid, USB_SETUP_PACKET* pSetup, uint8_t protocol);
397 uint8_t protocol; member
407 ErrorCode_t (*HID_SetProtocol)( USBD_HANDLE_T hHid, USB_SETUP_PACKET* pSetup, uint8_t protocol);
/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Src/
A Dstm32f7xx_hal_sai.c203 static HAL_StatusTypeDef SAI_InitI2S(SAI_HandleTypeDef *hsai, uint32_t protocol, uint32_t datasize,…
204 static HAL_StatusTypeDef SAI_InitPCM(SAI_HandleTypeDef *hsai, uint32_t protocol, uint32_t datasize,…
274 assert_param(IS_SAI_SUPPORTED_PROTOCOL(protocol)); in HAL_SAI_InitProtocol()
277 switch (protocol) { in HAL_SAI_InitProtocol()
281 status = SAI_InitI2S(hsai, protocol, datasize, nbslot); in HAL_SAI_InitProtocol()
285 status = SAI_InitPCM(hsai, protocol, datasize, nbslot); in HAL_SAI_InitProtocol()
1310 assert_param(IS_SAI_SUPPORTED_PROTOCOL(protocol)); in SAI_InitI2S()
1326 switch (protocol) { in SAI_InitI2S()
1366 if (protocol == SAI_I2S_LSBJUSTIFIED) { in SAI_InitI2S()
1395 assert_param(IS_SAI_SUPPORTED_PROTOCOL(protocol)); in SAI_InitPCM()
[all …]
/lk-master/external/lib/lwip/core/
A Draw.c93 if ((pcb->protocol == proto) && in raw_input()
267 err = ip_output_if (q, src_ip, ipaddr, pcb->ttl, pcb->tos, pcb->protocol, netif); in raw_sendto()
342 pcb->protocol = proto; in raw_new()
/lk-master/external/lib/lwip/include/lwip/
A Draw.h69 u8_t protocol; member
A Dsockets.h338 int lwip_socket(int domain, int type, int protocol);
/lk-master/external/lib/lwip/
A DFILES4 core/ - The core of the TPC/IP stack; protocol implementations,
/lk-master/external/platform/nrfx/drivers/src/
A Dnrfx_nfct.c283 nrf_nfct_selres_protocol_t protocol; in nrfx_nfct_reset() local
288 protocol = nrf_nfct_selres_protocol_get(NRF_NFCT); in nrfx_nfct_reset()
299 nrf_nfct_selres_protocol_set(NRF_NFCT, protocol); in nrfx_nfct_reset()
/lk-master/external/lib/lwip/netif/
A DFILES23 protocol. It requires a sio (serial I/O) module to work.
/lk-master/external/lib/lwip/api/
A Dsockets.c948 lwip_socket(int domain, int type, int protocol) argument
958 conn = netconn_new_with_proto_and_callback(NETCONN_RAW, (u8_t)protocol, event_callback);
960 domain == PF_INET ? "PF_INET" : "UNKNOWN", protocol));
963 conn = netconn_new_with_callback( (protocol == IPPROTO_UDPLITE) ?
966 domain == PF_INET ? "PF_INET" : "UNKNOWN", protocol));
971 domain == PF_INET ? "PF_INET" : "UNKNOWN", protocol));
979 domain, type, protocol));
A Dapi_msg.c116 buf->port = pcb->protocol; in recv_raw()
1409 *(msg->msg.ad.port) = msg->conn->pcb.raw->protocol;
/lk-master/lib/minip/
A Dtcp.c45 uint8_t protocol; member
358 pheader.protocol = IP_PROTO_TCP; in tcp_input()
721 pheader.protocol = IP_PROTO_TCP; in tcp_send()
/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Inc/
A Dstm32f7xx_hal_sai.h665 HAL_StatusTypeDef HAL_SAI_InitProtocol(SAI_HandleTypeDef *hsai, uint32_t protocol, uint32_t datasiz…
/lk-master/external/platform/stellaris/ti-driverlib/
A DMANIFEST.TXT197 Software Name: ZStack ZigBee protocol stack

Completed in 43 milliseconds