OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:socket_t
(Results
1 - 2
of
2
) sorted by null
/system/bt/osi/include/
socket.h
27
typedef struct
socket_t
socket_t
;
typedef in typeref:struct:socket_t
30
typedef void (*socket_cb)(
socket_t
*socket, void *context);
35
socket_t
*socket_new(void);
41
socket_t
*socket_new_from_fd(int fd);
45
void socket_free(
socket_t
*socket);
50
bool socket_listen(const
socket_t
*socket, port_t port);
55
socket_t
*socket_accept(const
socket_t
*socket);
67
ssize_t socket_read(const
socket_t
*socket, void *buf, size_t count)
[
all
...]
/system/bt/osi/src/
socket.c
40
struct
socket_t
{
struct
51
socket_t
*socket_new(void) {
52
socket_t
*ret = (
socket_t
*)osi_calloc(sizeof(
socket_t
));
75
socket_t
*socket_new_from_fd(int fd) {
78
socket_t
*ret = (
socket_t
*)osi_calloc(sizeof(
socket_t
));
84
void socket_free(
socket_t
*socket)
[
all
...]
Completed in 3827 milliseconds