/btstack/platform/daemon/binding/java/android/com/bluekitchen/btstack/ |
H A D | SocketConnectionUnix.java | 12 private LocalSocket socket; field in SocketConnectionUnix 20 socket = null; in SocketConnectionUnix() 29 socket = new LocalSocket(); in connect() 31 socket.connect(socketAddress); in connect() 32 in = socket.getInputStream(); in connect() 33 out = socket.getOutputStream(); in connect() 89 if (socket != null){ in disconnect() 91 socket.close(); in disconnect()
|
/btstack/port/mtk/LEScan/src/com/bluekitchen/btstack/ |
H A D | SocketConnectionUnix.java | 12 private LocalSocket socket; field in SocketConnectionUnix 20 socket = null; in SocketConnectionUnix() 29 socket = new LocalSocket(); in connect() 31 socket.connect(socketAddress); in connect() 32 in = socket.getInputStream(); in connect() 33 out = socket.getOutputStream(); in connect() 88 if (socket != null){ in disconnect() 90 socket.close(); in disconnect()
|
/btstack/port/mtk/SPPClient/src/com/bluekitchen/btstack/ |
H A D | SocketConnectionUnix.java | 12 private LocalSocket socket; field in SocketConnectionUnix 20 socket = null; in SocketConnectionUnix() 29 socket = new LocalSocket(); in connect() 31 socket.connect(socketAddress); in connect() 32 in = socket.getInputStream(); in connect() 33 out = socket.getOutputStream(); in connect() 88 if (socket != null){ in disconnect() 90 socket.close(); in disconnect()
|
/btstack/platform/daemon/binding/java/src/com/bluekitchen/btstack/ |
H A D | SocketConnectionTCP.java | 12 private Socket socket; field in SocketConnectionTCP 19 socket = null; in SocketConnectionTCP() 32 socket = new Socket("localhost", port); in connect() 33 in = socket.getInputStream(); in connect() 34 out = socket.getOutputStream(); in connect() 90 if (socket != null){ in disconnect() 92 socket.close(); in disconnect()
|
/btstack/platform/daemon/binding/python/btstack/ |
H A D | btstack_client.py | 3 import socket 32 self.btstack_server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 39 except socket.error as e:
|
/btstack/platform/corefoundation/ |
H A D | btstack_run_loop_corefoundation.m | 67 CFSocketRef socket; field 117 // store our data_source in socket context 124 CFSocketRef socket = CFSocketCreateWithNative ( 134 CFOptionFlags socket_options = CFSocketGetSocketFlags(socket); 136 CFSocketSetSocketFlags(socket, socket_options); 139 CFRunLoopSourceRef socket_run_loop = CFSocketCreateRunLoopSource ( kCFAllocatorDefault, socket, 0); 143 references->socket = socket; 151 …x, CFRunLoopSource %x\n", (int) dataSource, dataSource->source.fd, (int) socket, (int) socket_run_… 158 CFSocketEnableCallBacks(references->socket, option_flags); 164 CFSocketDisableCallBacks(references->socket, option_flags); [all …]
|
/btstack/platform/daemon/src/ |
H A D | socket_connection.c | 394 int fd = socket (PF_INET, SOCK_STREAM, 0); in socket_connection_create_tcp() 599 int btsocket = socket(PF_INET, SOCK_STREAM, tcp->p_proto); in socket_connection_open_tcp() 648 int fd = socket (AF_UNIX, SOCK_STREAM, 0); in socket_connection_create_unix() 696 int btsocket = socket(AF_UNIX, SOCK_STREAM, 0); in socket_connection_open_unix()
|
/btstack/3rd-party/lwip/core/ |
H A D | FEATURES | 8 - APIs: specialized APIs for enhanced performance & zero copy, optional Berkeley-alike socket API
|
H A D | CHANGELOG | 77 * tcp: add hooks to implement additional socket options 175 - Support IP_HDRINCL socket option 308 invalid/reused socket) by not allowing to reallocate a socket that has 397 (and therefore on a UDP socket/netconn) when the PCB is bound to IP_ADDR_ANY 400 * *: Fixed dual-stack behaviour, IPv6 mapped IPv4 support in socket API 444 automatically supported when an IPv6 netconn/socket is created. 497 * many files: allow multicast socket options IP_MULTICAST_TTL, IP_MULTICAST_IF 583 * opt.h, sockets.h/c: patch #7702 "Include ability to increase the socket number 594 * api: allow enabling socket API without (public) netconn API - netconn API is 768 * netconn/socket API: fixed bug# 43739 (Accept not reporting errors about [all …]
|
H A D | UPGRADING | 25 * socket API: according to the standard, SO_ERROR now only returns asynchronous errors. 261 * Implemented shutdown() at socket- and netconn-level 266 * Implemented many nonblocking socket/netconn functions
|
H A D | README | 31 * Optional Berkeley-like socket API
|
/btstack/platform/posix/ |
H A D | btstack_network_posix.c | 188 fd_socket = socket(PF_INET, SOCK_DGRAM, IPPROTO_IP); in btstack_network_up()
|
/btstack/3rd-party/lwip/core/src/include/lwip/ |
H A D | sockets.h | 554 #define lwip_socket socket 650 #define socket(domain,type,protocol) lwip_socket(domain,type,protocol) macro
|
H A D | api.h | 251 int socket; member
|
/btstack/3rd-party/lwip/core/src/api/ |
H A D | sockets.c | 664 recvevent = (s16_t)(-1 - newconn->socket); in lwip_accept() 665 newconn->socket = newsock; in lwip_accept() 1732 conn->socket = i; in lwip_socket() 2481 s = conn->socket; in event_callback() 2489 if (conn->socket < 0) { in event_callback() 2493 conn->socket--; in event_callback() 2498 s = conn->socket; in event_callback()
|
H A D | api_msg.c | 764 conn->socket = -1;
|
/btstack/3rd-party/lwip/core/src/ |
H A D | Filelists.cmake | 83 # APIFILES: The files which implement the sequential and socket APIs.
|
/btstack/port/mtk/LEScan/libs/ |
HD | android-support-v4.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/support/
android/ ... |
/btstack/port/mtk/SPPClient/libs/ |
HD | android-support-v4.jar | META-INF/
META-INF/MANIFEST.MF
android/
android/support/
android/ ... |
/btstack/ |
H A D | README.md | 91 …ter/port/daemon) | TCP and Unix domain named socket client-server arch…
|
/btstack/port/mtk/docs/ |
H A D | ruggear-gettingstarted.tex | 238 \item \path{java/src} - main code for BTstack client, i.e., socket communication with BTstack serve…
|