HomeSort by relevance Sort by last modified time
    Searched defs:list_element (Results 1 - 10 of 10) sorted by null

  /hardware/qcom/gps/msm8084/utils/
linked_list.c 39 typedef struct list_element { struct
40 struct list_element* next;
41 struct list_element* prev;
44 }list_element; typedef in typeref:struct:list_element
47 list_element* p_head;
48 list_element* p_tail;
126 list_element* elem = (list_element*)malloc(sizeof(list_element));
140 list_element* tmp = p_list->p_head
    [all...]
  /hardware/qcom/gps/msm8909/utils/
linked_list.c 39 typedef struct list_element { struct
40 struct list_element* next;
41 struct list_element* prev;
44 }list_element; typedef in typeref:struct:list_element
47 list_element* p_head;
48 list_element* p_tail;
126 list_element* elem = (list_element*)malloc(sizeof(list_element));
140 list_element* tmp = p_list->p_head
    [all...]
  /hardware/qcom/gps/msm8960/utils/
linked_list.c 39 typedef struct list_element { struct
40 struct list_element* next;
41 struct list_element* prev;
44 }list_element; typedef in typeref:struct:list_element
47 list_element* p_head;
48 list_element* p_tail;
126 list_element* elem = (list_element*)malloc(sizeof(list_element));
140 list_element* tmp = p_list->p_head
    [all...]
  /hardware/qcom/gps/msm8994/utils/
linked_list.c 39 typedef struct list_element { struct
40 struct list_element* next;
41 struct list_element* prev;
44 }list_element; typedef in typeref:struct:list_element
47 list_element* p_head;
48 list_element* p_tail;
126 list_element* elem = (list_element*)malloc(sizeof(list_element));
140 list_element* tmp = p_list->p_head
    [all...]
  /hardware/qcom/gps/msm8996/utils/
linked_list.c 39 typedef struct list_element { struct
40 struct list_element* next;
41 struct list_element* prev;
44 }list_element; typedef in typeref:struct:list_element
47 list_element* p_head;
48 list_element* p_tail;
126 list_element* elem = (list_element*)malloc(sizeof(list_element));
140 list_element* tmp = p_list->p_head
    [all...]
  /hardware/qcom/gps/msm8998/utils/
linked_list.c 38 typedef struct list_element { struct
39 struct list_element* next;
40 struct list_element* prev;
43 }list_element; typedef in typeref:struct:list_element
46 list_element* p_head;
47 list_element* p_tail;
125 list_element* elem = (list_element*)malloc(sizeof(list_element));
139 list_element* tmp = p_list->p_head
    [all...]
  /hardware/qcom/gps/sdm845/utils/
linked_list.c 38 typedef struct list_element { struct
39 struct list_element* next;
40 struct list_element* prev;
43 }list_element; typedef in typeref:struct:list_element
46 list_element* p_head;
47 list_element* p_tail;
124 list_element* elem = (list_element*)malloc(sizeof(list_element));
138 list_element* tmp = p_list->p_head
    [all...]
  /hardware/qcom/gps/utils/
linked_list.c 39 typedef struct list_element { struct
40 struct list_element* next;
41 struct list_element* prev;
44 }list_element; typedef in typeref:struct:list_element
47 list_element* p_head;
48 list_element* p_tail;
126 list_element* elem = (list_element*)malloc(sizeof(list_element));
140 list_element* tmp = p_list->p_head
    [all...]
  /system/sepolicy/tools/
check_seapp.c 33 * @type The container type ie what you allocated that has the list_element structure in it.
34 * @name The name of the field that is the list_element
58 typedef struct list_element list_element; typedef in typeref:struct:list_element
83 struct list_element { struct
84 list_element *next;
88 list_element *head;
89 list_element *tail;
90 void (*freefn)(list_element *e);
126 list_element listify
    [all...]
  /external/v8/src/heap/
heap.cc 592 Object* list_element = allocation_sites_list(); local
593 while (list_element->IsAllocationSite()) {
594 site = AllocationSite::cast(list_element);
601 list_element = site->weak_next();
627 Object* list_element = allocation_sites_list(); local
628 while (list_element->IsAllocationSite()) {
629 AllocationSite* site = AllocationSite::cast(list_element);
635 list_element = site->weak_next();
    [all...]

Completed in 843 milliseconds