OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ril_event
(Results
1 - 4
of
4
) sorted by null
/hardware/ril/libril/
ril_event.h
1
/* //device/libs/telephony/
ril_event
.h
23
struct
ril_event
{
struct
24
struct
ril_event
*next;
25
struct
ril_event
*prev;
39
void ril_event_set(struct
ril_event
* ev, int fd, bool persist, ril_event_cb func, void * param);
42
void ril_event_add(struct
ril_event
* ev);
45
void ril_timer_add(struct
ril_event
* ev, struct timeval * tv);
48
void ril_event_del(struct
ril_event
* ev);
ril_event.cpp
1
/* //device/libs/telephony/
ril_event
.cpp
25
#include <
ril_event
.h>
71
static struct
ril_event
* watch_table[MAX_FD_EVENTS];
72
static struct
ril_event
timer_list;
73
static struct
ril_event
pending_list;
79
static void dump_event(struct
ril_event
* ev)
108
static void init_list(struct
ril_event
* list)
110
memset(list, 0, sizeof(struct
ril_event
));
116
static void addToList(struct
ril_event
* ev, struct
ril_event
* list
[
all
...]
Android.mk
8
ril_event
.cpp
ril.cpp
52
#include <
ril_event
.h>
141
struct
ril_event
event;
162
static struct
ril_event
s_commands_event;
163
static struct
ril_event
s_wakeupfd_event;
164
static struct
ril_event
s_listen_event;
165
static struct
ril_event
s_wake_timeout_event;
166
static struct
ril_event
s_debug_event;
[
all
...]
Completed in 22 milliseconds