OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:non_repeating_timer_t
(Results
1 - 3
of
3
) sorted by null
/system/bt/osi/include/
non_repeating_timer.h
25
typedef struct
non_repeating_timer_t
non_repeating_timer_t
;
typedef in typeref:struct:non_repeating_timer_t
31
non_repeating_timer_t
*non_repeating_timer_new(period_ms_t duration, alarm_callback_t cb, void *data);
36
void non_repeating_timer_free(
non_repeating_timer_t
*timer);
40
void non_repeating_timer_restart(
non_repeating_timer_t
*timer);
44
void non_repeating_timer_restart_if(
non_repeating_timer_t
*timer, bool condition);
48
void non_repeating_timer_cancel(
non_repeating_timer_t
*timer);
/system/bt/osi/src/
non_repeating_timer.c
25
struct
non_repeating_timer_t
{
struct
32
non_repeating_timer_t
*non_repeating_timer_new(period_ms_t duration, alarm_callback_t cb, void *data) {
35
non_repeating_timer_t
*ret = osi_calloc(sizeof(
non_repeating_timer_t
));
51
void non_repeating_timer_free(
non_repeating_timer_t
*timer) {
59
void non_repeating_timer_restart(
non_repeating_timer_t
*timer) {
63
void non_repeating_timer_restart_if(
non_repeating_timer_t
*timer, bool condition) {
71
void non_repeating_timer_cancel(
non_repeating_timer_t
*timer) {
/system/bt/hci/src/
hci_layer.c
125
static
non_repeating_timer_t
*epilog_timer;
126
static
non_repeating_timer_t
*startup_timer;
134
static
non_repeating_timer_t
*command_response_timer;
Completed in 36 milliseconds