Home
last modified time | relevance | path

Searched refs:next (Results 1 – 25 of 236) sorted by relevance

12345678910

/hardware/qcom/camera/msm8998/QCamera2/stack/common/
Dcam_list.h45 struct cam_list *next, *prev; member
50 ptr->next = ptr; in cam_list_init()
60 item->next = head; in cam_list_add_tail_node()
62 prev->next = item; in cam_list_add_tail_node()
68 item->next = node; in cam_list_insert_before_node()
70 item->prev->next = item; in cam_list_insert_before_node()
77 struct cam_list *next = ptr->next; in cam_list_del_node() local
79 next->prev = ptr->prev; in cam_list_del_node()
80 prev->next = ptr->next; in cam_list_del_node()
81 ptr->next = ptr; in cam_list_del_node()
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/inc/
DMap.h41 node* next; member
43 data(t), data2(t2), prev(p), next(n) {} in node()
70 head=head->next; in ~Map()
87 tmp = tmp->next; in find()
103 tmp = tmp->next; in find_ele()
128 tmp = tmp->next; in show()
139 tmp = tmp->next; in size()
152 tail->prev->next = tail; in insert()
183 tmp = tmp->next; in erase()
186 tempnode->next = NULL; in erase()
[all …]
/hardware/qcom/sdm845/media/mm-video-v4l2/vidc/vdec/inc/
DMap.h40 node* next; member
42 data(t), data2(t2), prev(p), next(n) {} in node()
69 head=head->next; in ~Map()
86 tmp = tmp->next; in find()
102 tmp = tmp->next; in find_ele()
127 tmp = tmp->next; in show()
138 tmp = tmp->next; in size()
151 tail->prev->next = tail; in insert()
182 tmp = tmp->next; in erase()
185 tempnode->next = NULL; in erase()
[all …]
/hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/inc/
DMap.h40 node* next; member
42 data(t), data2(t2), prev(p), next(n) {} in node()
69 head=head->next; in ~Map()
86 tmp = tmp->next; in find()
102 tmp = tmp->next; in find_ele()
127 tmp = tmp->next; in show()
138 tmp = tmp->next; in size()
151 tail->prev->next = tail; in insert()
182 tmp = tmp->next; in erase()
185 tempnode->next = NULL; in erase()
[all …]
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/inc/
DMap.h40 node* next; member
42 data(t), data2(t2), prev(p), next(n) {} in node()
69 head=head->next; in ~Map()
86 tmp = tmp->next; in find()
102 tmp = tmp->next; in find_ele()
127 tmp = tmp->next; in show()
138 tmp = tmp->next; in size()
151 tail->prev->next = tail; in insert()
182 tmp = tmp->next; in erase()
185 tempnode->next = NULL; in erase()
[all …]
/hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/inc/
DMap.h42 node* next; member
44 data(t), data2(t2), prev(p), next(n) {} in node()
69 head=head->next; in ~Map()
86 tmp = tmp->next; in find()
101 tmp = tmp->next; in find_ele()
124 tmp = tmp->next; in show()
135 tmp = tmp->next; in size()
146 tail->prev->next = tail; in insert()
179 tmp = tmp->next; in erase()
182 tempnode->next = NULL; in erase()
[all …]
/hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
DIPACM_EvtDispatcher.cpp137 tmp = tmp1.next; in ProcessEvt()
159 nw->next = NULL; in registr()
172 while(tmp->next) in registr()
174 tmp = tmp->next; in registr()
176 tmp->next = nw; in registr()
193 head = head->next; in deregistr()
195 else if(tmp->next == NULL) in deregistr()
197 prev->next = NULL; in deregistr()
201 prev->next = tmp->next; in deregistr()
204 tmp = tmp->next; in deregistr()
[all …]
/hardware/qcom/sdm845/data/ipacfg-mgr/ipacm/src/
DIPACM_EvtDispatcher.cpp137 tmp = tmp1.next; in ProcessEvt()
159 nw->next = NULL; in registr()
172 while(tmp->next) in registr()
174 tmp = tmp->next; in registr()
176 tmp->next = nw; in registr()
193 head = head->next; in deregistr()
195 else if(tmp->next == NULL) in deregistr()
197 prev->next = NULL; in deregistr()
201 prev->next = tmp->next; in deregistr()
204 tmp = tmp->next; in deregistr()
[all …]
/hardware/ril/libril/
Dril_event.cpp82 dlog(" next = %x", (unsigned int)ev->next); in dump_event()
107 list->next = list; in init_list()
114 ev->next = list; in addToList()
116 ev->prev->next = ev; in addToList()
126 ev->next->prev = ev->prev; in removeFromList()
127 ev->prev->next = ev->next; in removeFromList()
128 ev->next = NULL; in removeFromList()
163 struct ril_event * tev = timer_list.next; in processTimeouts()
164 struct ril_event * next; in processTimeouts() local
173 next = tev->next; in processTimeouts()
[all …]
/hardware/qcom/gps/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/sdm845/gps/msm8996/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/gps/msm8994/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/sdm845/gps/sdm845/utils/
Dlinked_list.c40 struct list_element* next; member
134 elem->next = NULL; in linked_list_add()
142 p_list->p_head->next = tmp; in linked_list_add()
188 p_list->p_tail->next = NULL; in linked_list_remove()
241 list_element* tmp = p_list->p_head->next; in linked_list_flush()
296 p_list->p_head = tmp->next; in linked_list_search()
298 tmp->prev->next = tmp->next; in linked_list_search()
301 if (NULL == tmp->next) { in linked_list_search()
304 tmp->next->prev = tmp->prev; in linked_list_search()
307 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/gps/msm8909w_3100/utils/
Dlinked_list.c39 struct list_element* next; member
133 elem->next = NULL; in linked_list_add()
141 p_list->p_head->next = tmp; in linked_list_add()
187 p_list->p_tail->next = NULL; in linked_list_remove()
240 list_element* tmp = p_list->p_head->next; in linked_list_flush()
295 p_list->p_head = tmp->next; in linked_list_search()
297 tmp->prev->next = tmp->next; in linked_list_search()
300 if (NULL == tmp->next) { in linked_list_search()
303 tmp->next->prev = tmp->prev; in linked_list_search()
306 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/gps/msm8909/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/sdm845/gps/msm8084/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/sdm845/gps/msm8994/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/gps/msm8996/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/sdm845/gps/msm8960/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/sdm845/gps/msm8998/utils/
Dlinked_list.c39 struct list_element* next; member
134 elem->next = NULL; in linked_list_add()
142 p_list->p_head->next = tmp; in linked_list_add()
189 p_list->p_tail->next = NULL; in linked_list_remove()
242 list_element* tmp = p_list->p_head->next; in linked_list_flush()
298 p_list->p_head = tmp->next; in linked_list_search()
300 tmp->prev->next = tmp->next; in linked_list_search()
303 if (NULL == tmp->next) { in linked_list_search()
306 tmp->next->prev = tmp->prev; in linked_list_search()
309 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/gps/msm8960/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/gps/msm8084/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/sdm845/gps/msm8909/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/sdm845/gps/utils/
Dlinked_list.c40 struct list_element* next; member
135 elem->next = NULL; in linked_list_add()
143 p_list->p_head->next = tmp; in linked_list_add()
190 p_list->p_tail->next = NULL; in linked_list_remove()
243 list_element* tmp = p_list->p_head->next; in linked_list_flush()
299 p_list->p_head = tmp->next; in linked_list_search()
301 tmp->prev->next = tmp->next; in linked_list_search()
304 if (NULL == tmp->next) { in linked_list_search()
307 tmp->next->prev = tmp->prev; in linked_list_search()
310 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]
/hardware/qcom/gps/msm8998/utils/
Dlinked_list.c39 struct list_element* next; member
134 elem->next = NULL; in linked_list_add()
142 p_list->p_head->next = tmp; in linked_list_add()
189 p_list->p_tail->next = NULL; in linked_list_remove()
242 list_element* tmp = p_list->p_head->next; in linked_list_flush()
298 p_list->p_head = tmp->next; in linked_list_search()
300 tmp->prev->next = tmp->next; in linked_list_search()
303 if (NULL == tmp->next) { in linked_list_search()
306 tmp->next->prev = tmp->prev; in linked_list_search()
309 tmp->prev = tmp->next = NULL; in linked_list_search()
[all …]

12345678910