HomeSort by relevance Sort by last modified time
    Searched refs:list_element (Results 1 - 12 of 12) 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/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...]
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader.java 42 R.layout.list_element,
MyRssReader3.java 53 mAdap = new RssDataAdapter<RssItem>(this, R.layout.list_element, mFeeds);
MyRssReader4.java 59 R.layout.list_element, // Our layout resource.
MyRssReader5.java 68 R.layout.list_element, // Our layout resource.
  /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 151 milliseconds