OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:classic_peer_t
(Results
1 - 2
of
2
) sorted by null
/system/bt/device/include/classic/
peer.h
25
typedef struct
classic_peer_t
classic_peer_t
;
typedef in typeref:struct:classic_peer_t
27
// Returns a
classic_peer_t
for the provided |address|. If the peer
28
// already exists, that instance is returned. Otherwise a
classic_peer_t
31
classic_peer_t
*classic_peer_by_address(bt_bdaddr_t *address);
34
const bt_bdaddr_t *classic_peer_get_address(
classic_peer_t
*peer);
/system/bt/device/src/classic/
peer.c
34
struct
classic_peer_t
{
struct
85
classic_peer_t
*classic_peer_by_address(bt_bdaddr_t *address) {
89
classic_peer_t
*peer = hash_map_get(peers_by_address, address);
100
peer = osi_calloc(sizeof(
classic_peer_t
));
111
const bt_bdaddr_t *classic_peer_get_address(
classic_peer_t
*peer) {
Completed in 77 milliseconds