Home
last modified time | relevance | path

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

/system/bt/osi/src/
Dfuture.cc30 struct future_t { struct
36 static void future_free(future_t* future); argument
38 future_t* future_new(void) { in future_new()
39 future_t* ret = static_cast<future_t*>(osi_calloc(sizeof(future_t))); in future_new()
55 future_t* future_new_immediate(void* value) { in future_new_immediate()
56 future_t* ret = static_cast<future_t*>(osi_calloc(sizeof(future_t))); in future_new_immediate()
63 void future_ready(future_t* future, void* value) { in future_ready()
72 void* future_await(future_t* future) { in future_await()
83 static void future_free(future_t* future) { in future_free()
/system/bt/osi/include/
Dfuture.h21 typedef struct future_t future_t; typedef
27 future_t* future_new(void);
32 future_t* future_new_immediate(void* value);
37 void future_ready(future_t* future, void* value);
41 void* future_await(future_t* async_result);
/system/bt/osi/test/
Dfuture_test.cc36 future_ready((future_t*)context, (void*)pass_back_data0); in post_to_future()
40 future_t* future = future_new(); in TEST_F()
53 future_t* future = future_new_immediate((void*)pass_back_data1); in TEST_F()
Dfixed_queue_test.cc18 static future_t* received_message_future = NULL;
/system/bt/btcore/src/
Dosi_module.cc29 future_t* osi_init(void) { in osi_init()
33 future_t* osi_clean_up(void) { in osi_clean_up()
Dmodule.cc142 future_t* future = function(); in call_lifecycle_function()
/system/bt/main/shim/
Dentry.cc43 future_t* bluetooth::shim::StartGabeldorscheStack() { in StartGabeldorscheStack()
46 return (future_t*)nullptr; in StartGabeldorscheStack()
49 future_t* bluetooth::shim::StopGabeldorscheStack() { in StopGabeldorscheStack()
51 return (future_t*)nullptr; in StopGabeldorscheStack()
Dshim.cc35 future_t* ShimModuleStartUp() { in ShimModuleStartUp()
45 future_t* ShimModuleShutDown() { in ShimModuleShutDown()
Dentry.h61 future_t* StartGabeldorscheStack();
62 future_t* StopGabeldorscheStack();
Dcontroller.cc50 static future_t* start_up(void);
51 static future_t* shut_down(void);
73 static future_t* start_up(void) { in start_up()
91 static future_t* shut_down(void) { in shut_down()
Dhci_layer.cc107 static future_t* hci_module_shut_down(void);
108 static future_t* hci_module_start_up(void);
118 static future_t* hci_module_start_up(void) { in hci_module_start_up()
122 static future_t* hci_module_shut_down(void) { in hci_module_shut_down()
Dshim.h30 constexpr future_t* kReturnImmediate = nullptr;
Dbtm_api.cc62 static future_t* btm_module_start_up(void) { in btm_module_start_up()
67 static future_t* btm_module_shut_down(void) { in btm_module_shut_down()
/system/bt/btif/src/
Dstack_manager.cc60 static future_t* hack_future;
147 future_t* local_hack_future = future_new(); in event_start_up_stack()
174 future_t* local_hack_future = future_new(); in event_shut_down_stack()
256 future_t* stack_manager_get_hack_future() { return hack_future; } in stack_manager_get_hack_future()
Dbtif_config.cc275 static future_t* init(void) { in init()
379 static future_t* shut_down(void) { in shut_down()
384 static future_t* clean_up(void) { in clean_up()
/system/bt/utils/src/
Dbt_utils.cc61 static future_t* init(void) { in init()
73 static future_t* clean_up(void) { in clean_up()
/system/bt/main/
Dstack_config.cc42 static future_t* init() { in init()
62 static future_t* clean_up() { in clean_up()
Dbte_logmsg.cc239 static future_t* init(void) { in init()
/system/bt/btif/include/
Dstack_manager.h38 future_t* stack_manager_get_hack_future();
/system/bt/btcore/include/
Dmodule.h27 typedef future_t* (*module_lifecycle_fn)(void);
/system/bt/hci/src/
Dhci_layer.cc73 future_t* complete_future;
104 static future_t* startup_future;
195 static future_t* hci_module_shut_down();
197 static future_t* hci_module_start_up(void) { in hci_module_start_up()
247 future_t* local_startup_future; in hci_module_start_up()
264 static future_t* hci_module_shut_down() { in hci_module_shut_down()
334 static future_t* transmit_command_futured(BT_HDR* command) { in transmit_command_futured()
337 future_t* future = future_new(); in transmit_command_futured()
Dbtsnoop.cc177 static future_t* start_up() { in start_up()
224 static future_t* shut_down(void) { in shut_down()
/system/bt/hci/include/
Dhci_layer.h82 future_t* (*transmit_command_futured)(BT_HDR* command);
/system/bt/device/src/
Dinterop.cc103 static future_t* interop_clean_up(void) { in interop_clean_up()
Dcontroller.cc98 static future_t* start_up(void) { in start_up()
285 static future_t* shut_down(void) { in shut_down()