Home
last modified time | relevance | path

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

12

/system/bt/bta/pan/
Dbta_pan_ci.c129 void bta_pan_ci_rx_write(UINT16 handle, BD_ADDR dst, BD_ADDR src, UINT16 protocol, in bta_pan_ci_rx_write() argument
143 ((tBTA_PAN_DATA_PARAMS *)p_buf)->protocol = protocol; in bta_pan_ci_rx_write()
172 void bta_pan_ci_rx_writebuf(UINT16 handle, BD_ADDR dst, BD_ADDR src, UINT16 protocol, in bta_pan_ci_rx_writebuf() argument
179 ((tBTA_PAN_DATA_PARAMS *)p_buf)->protocol = protocol; in bta_pan_ci_rx_writebuf()
214 *p_protocol = ((tBTA_PAN_DATA_PARAMS *)p_buf)->protocol; in bta_pan_ci_readbuf()
276 void bta_pan_ci_rx_writebuf(UINT16 handle, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT_HDR *p_buf… in bta_pan_ci_rx_writebuf() argument
281 UNUSED(protocol); in bta_pan_ci_rx_writebuf()
Dbta_pan_act.c200 static void bta_pan_data_buf_ind_cback(UINT16 handle, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT… in bta_pan_data_buf_ind_cback() argument
232 ((tBTA_PAN_DATA_PARAMS *)p_new_buf)->protocol = protocol; in bta_pan_data_buf_ind_cback()
740 ((tBTA_PAN_DATA_PARAMS *)p_buf)->protocol, in bta_pan_tx_path()
801 ((tBTA_PAN_DATA_PARAMS *)p_data)->protocol, in bta_pan_write_buf()
Dbta_pan_int.h174 UINT16 protocol; member
/system/bt/btif/co/
Dbta_pan_co.c164 UINT16 protocol; in bta_pan_co_tx_path() local
186 if ((p_buf = bta_pan_ci_readbuf(handle, src, dst, &protocol, in bta_pan_co_tx_path()
202 btpan_tap_send(btpan_cb.tap_fd, src, dst, protocol, in bta_pan_co_tx_path()
244 UINT16 protocol, UINT8 *p_data, in bta_pan_co_tx_write() argument
251 UNUSED(protocol); in bta_pan_co_tx_write()
274 BD_ADDR dst, UINT16 protocol, BT_HDR *p_buf, in bta_pan_co_tx_writebuf() argument
281 UNUSED(protocol); in bta_pan_co_tx_writebuf()
/system/bt/stack/pan/
Dpan_main.c436 UINT16 protocol, in pan_data_ind_cb() argument
482 BNEP_Write (pan_cb.pcb[i].handle, dst, p_data, len, protocol, src, ext); in pan_data_ind_cb()
487 (*pan_cb.pan_data_ind_cb) (pcb->handle, src, dst, protocol, p_data, len, ext, TRUE); in pan_data_ind_cb()
500 BNEP_Write (pan_cb.pcb[i].handle, dst, p_data, len, protocol, src, ext); in pan_data_ind_cb()
513 (*pan_cb.pan_data_ind_cb) (pcb->handle, src, dst, protocol, p_data, len, ext, forward); in pan_data_ind_cb()
541 UINT16 protocol, in pan_data_buf_ind_cb() argument
572 handle, protocol, len, ext); in pan_data_buf_ind_cb()
592 BNEP_Write (pan_cb.pcb[i].handle, dst, p_data, len, protocol, src, ext); in pan_data_buf_ind_cb()
597 … (*pan_cb.pan_data_buf_ind_cb) (pcb->handle, src, dst, protocol, p_buf, ext, forward); in pan_data_buf_ind_cb()
600 … (*pan_cb.pan_data_ind_cb) (pcb->handle, src, dst, protocol, p_data, len, ext, forward); in pan_data_buf_ind_cb()
[all …]
Dpan_api.c504 tPAN_RESULT PAN_Write(UINT16 handle, BD_ADDR dst, BD_ADDR src, UINT16 protocol, UINT8 *p_data, UINT… in PAN_Write() argument
521 BNEP_Write (pan_cb.pcb[i].handle, dst, p_data, len, protocol, src, ext); in PAN_Write()
536 return PAN_WriteBuf(handle, dst, src, protocol, buffer, ext); in PAN_Write()
563 tPAN_RESULT PAN_WriteBuf (UINT16 handle, BD_ADDR dst, BD_ADDR src, UINT16 protocol, BT_HDR *p_buf, … in PAN_WriteBuf() argument
582 BNEP_Write(pan_cb.pcb[i].handle, dst, data, p_buf->len, protocol, src, ext); in PAN_WriteBuf()
606 result = BNEP_WriteBuf (pan_cb.pcb[i].handle, dst, p_buf, protocol, src, ext); in PAN_WriteBuf()
638 result = BNEP_WriteBuf (pcb->handle, dst, p_buf, protocol, src, ext); in PAN_WriteBuf()
Dpan_int.h120 UINT16 protocol,
127 UINT16 protocol,
/system/bt/stack/include/
Dpan_api.h123 UINT16 protocol,
143 UINT16 protocol,
352 UINT16 protocol,
382 UINT16 protocol,
Dbnep_api.h118 UINT16 protocol,
135 UINT16 protocol,
339 UINT16 protocol,
369 UINT16 protocol,
/system/bt/stack/bnep/
Dbnep_api.c358 UINT16 protocol, in BNEP_WriteBuf() argument
382 … if (bnep_is_packet_allowed (p_bcb, p_dest_addr, protocol, fw_ext_present, p_data) != BNEP_SUCCESS) in BNEP_WriteBuf()
411 if (protocol != BNEP_802_1_P_PROTOCOL) in BNEP_WriteBuf()
412 protocol = 0; in BNEP_WriteBuf()
436 bnepu_build_bnep_hdr (p_bcb, p_buf, protocol, p_src_addr, p_dest_addr, fw_ext_present); in BNEP_WriteBuf()
471 UINT16 protocol, in BNEP_Write() argument
492 … if (bnep_is_packet_allowed (p_bcb, p_dest_addr, protocol, fw_ext_present, p_data) != BNEP_SUCCESS) in BNEP_Write()
519 if (protocol != BNEP_802_1_P_PROTOCOL) in BNEP_Write()
520 protocol = 0; in BNEP_Write()
552 bnepu_build_bnep_hdr (p_bcb, p_buf, protocol, p_src_addr, p_dest_addr, fw_ext_present); in BNEP_Write()
Dbnep_int.h219 extern BOOLEAN bnepu_does_dest_support_prot (tBNEP_CONN *p_bcb, UINT16 protocol);
220 extern void bnepu_build_bnep_hdr (tBNEP_CONN *p_bcb, BT_HDR *p_buf, UINT16 protocol,
222 extern void test_bnepu_build_bnep_hdr (tBNEP_CONN *p_bcb, BT_HDR *p_buf, UINT16 protocol,
239 extern tBNEP_RESULT bnep_is_packet_allowed (tBNEP_CONN *p_bcb, BD_ADDR p_dest_addr, UINT16 protocol,
Dbnep_main.c472 UINT16 protocol = 0; in bnep_data_ind() local
556 BE_STREAM_TO_UINT16 (protocol, p); in bnep_data_ind()
595 BE_STREAM_TO_UINT16 (protocol, p); in bnep_data_ind()
602 BE_STREAM_TO_UINT16 (protocol, p); in bnep_data_ind()
609 BE_STREAM_TO_UINT16 (protocol, p); in bnep_data_ind()
651 … (*bnep_cb.p_data_buf_cb)(p_bcb->handle, p_src_addr, p_dst_addr, protocol, p_buf, fw_ext_present); in bnep_data_ind()
655 …(*bnep_cb.p_data_ind_cb)(p_bcb->handle, p_src_addr, p_dst_addr, protocol, p, rem_len, fw_ext_prese… in bnep_data_ind()
/system/bt/btif/include/
Dbtif_pan_internal.h69 UINT16 protocol; member
104 int btpan_tap_send(int tap_fd, const BD_ADDR src, const BD_ADDR dst, UINT16 protocol,
/system/bt/bta/include/
Dbta_pan_co.h139 …_co_tx_write(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, UINT8 *p_data,
155 …_tx_writebuf(UINT16 handle, UINT8 app_id, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT_HDR *p_buf,
Dbta_pan_ci.h99 extern void bta_pan_ci_rx_writebuf(UINT16 handle, BD_ADDR src, BD_ADDR dst, UINT16 protocol, BT_HDR…
/system/core/libnetutils/
Dpacket.c108 ip.protocol = IPPROTO_UDP; in send_packet()
193 } else if (packet.ip.protocol != IPPROTO_UDP) { in receive_packet()
195 ALOGD("IP protocol (%d) is not UDP", packet.ip.protocol); in receive_packet()
228 packet.ip.protocol = IPPROTO_UDP; in receive_packet()
/system/core/adb/
Dusb_osx.cpp115 UInt8 if_class, subclass, protocol; in AndroidInterfaceAdded() local
148 kr = (*iface)->GetInterfaceProtocol(iface, &protocol); in AndroidInterfaceAdded()
149 if(if_class != ADB_CLASS || subclass != ADB_SUBCLASS || protocol != ADB_PROTOCOL) { in AndroidInterfaceAdded()
151 …ng interface with incorrect class/subclass/protocol - %d, %d, %d\n", if_class, subclass, protocol); in AndroidInterfaceAdded()
Dprotocol.txt8 This replacement further simplifies the concept, reducing the protocol
17 The protocol is designed to be straightforward and well-defined enough
21 The protocol discards the layering aproto has and should allow the
25 --- protocol overview and basics ---------------------------------------
42 connection. The protocol depends on shared state and any break in the
59 The version is used to ensure protocol compatibility and maxdata
115 * "fs-bridge" - FUSE protocol filesystem bridge
224 endpoint at any given time. The protocol remains unchanged, but the
/system/netd/client/
DNetdClient.cpp86 int netdClientSocket(int domain, int type, int protocol) { in netdClientSocket() argument
87 int socketFd = libcSocket(domain, type, protocol); in netdClientSocket()
/system/core/fastboot/
Dfastboot_protocol.txt5 The fastboot protocol is a mechanism for communicating with bootloaders
17 * The protocol is entirely host-driven and synchronous (unlike the
18 multi-channel, bi-directional, asynchronous ADB protocol)
154 version Version of FastBoot protocol supported.
DAndroid.mk24 LOCAL_SRC_FILES := protocol.c engine.c bootimg_utils.cpp fastboot.cpp util.c fs.c
/system/netd/server/
DFirewallController.cpp178 int FirewallController::setEgressDestRule(const char* addr, int protocol, int port, in setEgressDestRule() argument
191 sprintf(protocolStr, "%d", protocol); in setEgressDestRule()
DMDnsSdListener.cpp271 const char *interfaceName, uint32_t protocol, const char *hostname) { in getAddrInfo() argument
272 if (VDBG) ALOGD("getAddrInfo(%d, %s %d, %s)", requestId, interfaceName, protocol, hostname); in getAddrInfo()
283 DNSServiceErrorType result = DNSServiceGetAddrInfo(ref, nativeFlags, interfaceInt, protocol, in getAddrInfo()
502 int protocol = 0; // intelligient heuristic (both v4 + v6) in runCommand() local
503 getAddrInfo(cli, requestId, interfaceName, protocol, hostname); in runCommand()
/system/extras/tests/net_test/
Dnet_test.py101 def Socket(family, sock_type, protocol): argument
102 s = socket(family, sock_type, protocol)
/system/bt/doc/
Ddirectory_layout.md20 * hci - *Host Controller Interface* - Communication protocol with bluetooth chip.

12