/aosp12/system/bt/osi/src/ |
H A D | future.cc | 30 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() 54 future_t* future_new_immediate(void* value) { in future_new_immediate() 55 future_t* ret = static_cast<future_t*>(osi_calloc(sizeof(future_t))); in future_new_immediate() 62 void future_ready(future_t* future, void* value) { in future_ready() 71 void* future_await(future_t* future) { in future_await() 82 static void future_free(future_t* future) { in future_free()
|
/aosp12/system/bt/osi/include/ |
H A D | future.h | 21 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);
|
/aosp12/system/bt/osi/test/ |
H A D | future_test.cc | 36 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()
|
/aosp12/system/bt/stack/test/common/ |
H A D | mock_main_shim.cc | 82 future_t* GeneralShutDown() { in GeneralShutDown() 86 future_t* IdleModuleStartUp() { in IdleModuleStartUp() 90 future_t* ShimModuleStartUp() { in ShimModuleStartUp()
|
/aosp12/system/bt/test/mock/ |
H A D | mock_main_shim.cc | 82 future_t* GeneralShutDown() { in GeneralShutDown() 86 future_t* IdleModuleStartUp() { in IdleModuleStartUp() 90 future_t* ShimModuleStartUp() { in ShimModuleStartUp()
|
H A D | mock_btif_stack_manager.cc | 23 static future_t* hack_future; 25 future_t* stack_manager_get_hack_future() { return hack_future; } in stack_manager_get_hack_future()
|
/aosp12/system/bt/main/shim/ |
H A D | shim.cc | 26 future_t* IdleModuleStartUp() { in IdleModuleStartUp() 31 future_t* ShimModuleStartUp() { in ShimModuleStartUp() 36 future_t* GeneralShutDown() { in GeneralShutDown()
|
H A D | controller.cc | 49 static future_t* start_up(void); 50 static future_t* shut_down(void); 70 static future_t* start_up(void) { in start_up() 112 static future_t* shut_down(void) { in shut_down()
|
H A D | shim.h | 29 constexpr future_t* kReturnImmediate = nullptr;
|
/aosp12/system/bt/btcore/src/ |
H A D | osi_module.cc | 29 future_t* osi_init(void) { in osi_init() 33 future_t* osi_clean_up(void) { in osi_clean_up()
|
H A D | module.cc | 136 future_t* future = function(); in call_lifecycle_function()
|
/aosp12/system/bt/hci/src/ |
H A D | hci_layer.cc | 75 future_t* complete_future; 106 static future_t* startup_future; 197 static future_t* hci_module_shut_down(); 199 static future_t* hci_module_start_up(void) { in hci_module_start_up() 248 future_t* local_startup_future; in hci_module_start_up() 265 static future_t* hci_module_shut_down() { in hci_module_shut_down() 335 static future_t* transmit_command_futured(BT_HDR* command) { in transmit_command_futured() 338 future_t* future = future_new(); in transmit_command_futured()
|
H A D | btsnoop.cc | 179 static future_t* start_up() { in start_up() 226 static future_t* shut_down(void) { in shut_down()
|
/aosp12/system/bt/btif/src/ |
H A D | stack_manager.cc | 106 static future_t* hack_future; 257 future_t* local_hack_future = future_new(); in event_start_up_stack() 333 future_t* local_hack_future = future_new(); in event_shut_down_stack() 454 future_t* stack_manager_get_hack_future() { return hack_future; } in stack_manager_get_hack_future()
|
H A D | btif_config.cc | 251 static future_t* init(void) { in init() 359 static future_t* shut_down(void) { in shut_down() 364 static future_t* clean_up(void) { in clean_up()
|
/aosp12/system/bt/main/ |
H A D | stack_config.cc | 42 static future_t* init() { in init() 62 static future_t* clean_up() { in clean_up()
|
H A D | bte_logmsg.cc | 253 static future_t* init(void) { in init()
|
/aosp12/system/bt/utils/src/ |
H A D | bt_utils.cc | 61 static future_t* init(void) { in init() 73 static future_t* clean_up(void) { in clean_up()
|
/aosp12/system/bt/btif/include/ |
H A D | stack_manager.h | 38 future_t* stack_manager_get_hack_future();
|
/aosp12/system/bt/btcore/include/ |
H A D | module.h | 27 typedef future_t* (*module_lifecycle_fn)(void);
|
/aosp12/system/bt/osi/test/fuzzers/future/ |
H A D | fuzz_future.cc | 37 future_t* future = nullptr; in LLVMFuzzerTestOneInput()
|
/aosp12/system/bt/test/stub/ |
H A D | osi.cc | 231 future_t* future_new(void) { in future_new() 235 future_t* future_new_immediate(void* value) { in future_new_immediate() 239 void future_ready(future_t* future, void* value) { in future_ready() 244 void* future_await(future_t* future) { in future_await()
|
/aosp12/system/bt/hci/include/ |
H A D | hci_layer.h | 81 future_t* (*transmit_command_futured)(BT_HDR* command);
|
/aosp12/system/bt/osi/test/fuzzers/fixed_queue/ |
H A D | fuzz_fixed_queue.cc | 28 static future_t* received_message_future = nullptr;
|
/aosp12/system/bt/btif/test/ |
H A D | btif_stack_test.cc | 153 future_t* transmit_command_futured(BT_HDR* command) { in transmit_command_futured()
|