Home
last modified time | relevance | path

Searched refs:module_lifecycle_fn (Results 1 – 3 of 3) sorted by relevance

/system/bt/btcore/include/
Dmodule.h27 typedef future_t* (*module_lifecycle_fn)(void); typedef
33 module_lifecycle_fn init{nullptr};
34 module_lifecycle_fn start_up{nullptr};
35 module_lifecycle_fn shut_down{nullptr};
36 module_lifecycle_fn clean_up{nullptr};
/system/bt/main/shim/
Dshim.h30 constexpr module_lifecycle_fn kUnusedModuleApi = nullptr;
/system/bt/btcore/src/
Dmodule.cc48 static bool call_lifecycle_function(module_lifecycle_fn function);
132 static bool call_lifecycle_function(module_lifecycle_fn function) { in call_lifecycle_function()