Home
last modified time | relevance | path

Searched refs:ril_event (Results 1 – 4 of 4) sorted by relevance

/hardware/ril/libril/
Dril_event.cpp71 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) in dump_event()
108 static void init_list(struct ril_event * list) in init_list()
110 memset(list, 0, sizeof(struct ril_event)); in init_list()
116 static void addToList(struct ril_event * ev, struct ril_event * list) in addToList()
125 static void removeFromList(struct ril_event * ev) in removeFromList()
137 static void removeWatch(struct ril_event * ev, int index) in removeWatch()
148 struct ril_event * rev = watch_table[i]; in removeWatch()
[all …]
Dril_event.h23 struct ril_event { struct
24 struct ril_event *next; argument
25 struct ril_event *prev; argument
39 void ril_event_set(struct ril_event * ev, int fd, bool persist, ril_event_cb func, void * param); argument
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);
DAndroid.mk8 ril_event.cpp
Dril.cpp141 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;
1883 static void rilEventAddWakeup(struct ril_event *ev) { in rilEventAddWakeup()