HomeSort by relevance Sort by last modified time
    Searched full:future_t (Results 1 - 18 of 18) sorted by null

  /system/bt/osi/src/
future.cc 30 struct future_t { struct
36 static void future_free(future_t* future);
38 future_t* future_new(void) {
39 future_t* ret = static_cast<future_t*>(osi_calloc(sizeof(future_t)));
55 future_t* future_new_immediate(void* value) {
56 future_t* ret = static_cast<future_t*>(osi_calloc(sizeof(future_t)));
    [all...]
  /system/bt/osi/include/
future.h 21 typedef struct future_t future_t; typedef in typeref:struct:future_t
26 // Constructs a new future_t object. Returns NULL on failure.
27 future_t* future_new(void);
29 // Constructs a new future_t object with an immediate |value|. No waiting will
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/
future_test.cc 34 future_ready((future_t*)context, (void*)pass_back_data0);
38 future_t* future = future_new();
50 future_t* future = future_new_immediate((void*)pass_back_data1);
fixed_queue_test.cc 18 static future_t* received_message_future = NULL;
  /system/bt/btcore/src/
osi_module.cc 29 future_t* osi_init(void) {
33 future_t* osi_clean_up(void) {
module.cc 139 future_t* future = function();
  /system/bt/btif/include/
stack_manager.h 38 future_t* stack_manager_get_hack_future();
  /system/bt/main/
stack_config.cc 42 static future_t* init() {
62 static future_t* clean_up() {
bte_logmsg.cc 199 static future_t* init(void) {
  /system/bt/btif/src/
stack_manager.cc 58 static future_t* hack_future;
141 future_t* local_hack_future = future_new();
168 future_t* local_hack_future = future_new();
251 future_t* stack_manager_get_hack_future() { return hack_future; }
btif_config.cc 123 static future_t* init(void) {
211 static future_t* shut_down(void) {
216 static future_t* clean_up(void) {
  /system/bt/utils/src/
bt_utils.cc 61 static future_t* init(void) {
73 static future_t* clean_up(void) {
  /system/bt/btcore/include/
module.h 26 typedef future_t* (*module_lifecycle_fn)(void);
  /system/bt/hci/include/
hci_layer.h 81 future_t* (*transmit_command_futured)(BT_HDR* command);
  /system/bt/hci/src/
btsnoop.cc 89 static future_t* start_up(void) {
104 static future_t* shut_down(void) {
hci_layer.cc 64 future_t* complete_future;
92 static future_t* startup_future;
165 static future_t* hci_module_shut_down();
187 static future_t* hci_module_start_up(void) {
236 future_t* local_startup_future;
253 static future_t* hci_module_shut_down() {
340 static future_t* transmit_command_futured(BT_HDR* command) {
343 future_t* future = future_new();
  /system/bt/device/src/
interop.cc 101 static future_t* interop_clean_up(void) {
controller.cc 88 static future_t* start_up(void) {
271 static future_t* shut_down(void) {

Completed in 305 milliseconds