Home
last modified time | relevance | path

Searched refs:alloc_head (Results 1 – 2 of 2) sorted by relevance

/external/expat/tests/
Dmemcheck.c49 static AllocationEntry *alloc_head = NULL; variable
72 if (alloc_head == NULL) { in tracking_malloc()
74 alloc_head = alloc_tail = entry; in tracking_malloc()
88 for (entry = alloc_head; entry != NULL; entry = entry->next) { in find_allocation()
112 alloc_head = entry->next; in tracking_free()
156 if (alloc_head == NULL) { in tracking_realloc()
158 alloc_head = alloc_tail = entry; in tracking_realloc()
181 if (alloc_head == NULL) in tracking_report()
185 for (entry = alloc_head; entry != NULL; entry = entry->next) { in tracking_report()
/external/vboot_reference/firmware/stub/
Dvboot_api_stub_sf.c33 static struct alloc_node *alloc_head; variable
57 node->next = alloc_head; in VbExMalloc()
61 alloc_head = node; in VbExMalloc()
70 for (nodep = &alloc_head; *nodep; nodep = &(*nodep)->next) in find_node()
109 if (!alloc_head) in vboot_api_stub_check_memory()
117 for (node = alloc_head; node; node = next) { in vboot_api_stub_check_memory()