Home
last modified time | relevance | path

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

/hardware/ril/libril/
Dril_event.cpp108 static void init_list(struct ril_event * list) in init_list() argument
110 memset(list, 0, sizeof(struct ril_event)); in init_list()
111 list->next = list; in init_list()
112 list->prev = list; in init_list()
113 list->fd = -1; in init_list()
116 static void addToList(struct ril_event * ev, struct ril_event * list) in addToList() argument
118 ev->next = list; in addToList()
119 ev->prev = list->prev; in addToList()
121 list->prev = ev; in addToList()
292 struct ril_event * list; in ril_timer_add() local
[all …]
/hardware/msm7k/libcopybit/
Dcopybit.c173 static int msm_copybit(struct copybit_context_t *dev, void const *list) in msm_copybit() argument
176 (struct mdp_blit_req_list const*)list); in msm_copybit()
295 } list; in stretch_copybit() local
308 const uint32_t maxCount = sizeof(list.req)/sizeof(list.req[0]); in stretch_copybit()
311 list.count = 0; in stretch_copybit()
315 set_infos(ctx, &list.req[list.count]); in stretch_copybit()
316 set_image(&list.req[list.count].dst, dst); in stretch_copybit()
317 set_image(&list.req[list.count].src, src); in stretch_copybit()
318 set_rects(ctx, &list.req[list.count], dst_rect, src_rect, &clip); in stretch_copybit()
319 if (++list.count == maxCount) { in stretch_copybit()
[all …]
/hardware/libhardware/include/hardware/
Dsensors.h243 struct sensor_t const** list);