HomeSort by relevance Sort by last modified time
    Searched refs:list_element (Results 1 - 13 of 13) 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/msmcobalt/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/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 588 Object* list_element = allocation_sites_list(); local
589 while (list_element->IsAllocationSite()) {
590 site = AllocationSite::cast(list_element);
597 list_element = site->weak_next();
623 Object* list_element = allocation_sites_list(); local
624 while (list_element->IsAllocationSite()) {
625 AllocationSite* site = AllocationSite::cast(list_element);
631 list_element = site->weak_next();
    [all...]

Completed in 259 milliseconds