Lines Matching defs:element
15 * element contains the caller's component, module name, function name, and
17 * acpi_ut_track_allocation to add an element to the list; deletion
262 * DESCRIPTION: Searches for an element in the global allocation tracking list.
263 * If the element is not found, returns the location within the
264 * list where the element should be inserted.
281 struct acpi_debug_mem_block *element;
283 element = acpi_gbl_global_list->list_head;
284 if (!element) {
295 while (element > allocation) {
299 if (!element->next) {
300 return (element);
303 element = element->next;
306 if (element == allocation) {
307 return (element);
310 return (element->previous);
326 * DESCRIPTION: Inserts an element into the global allocation tracking list.
337 struct acpi_debug_mem_block *element;
356 element = acpi_ut_find_allocation(allocation);
357 if (element == allocation) {
374 if (!element) {
388 /* Insert after element */
390 allocation->next = element->next;
391 allocation->previous = element;
393 if (element->next) {
394 (element->next)->previous = allocation;
397 element->next = allocation;
416 * DESCRIPTION: Deletes an element from the global allocation tracking list.
542 struct acpi_debug_mem_block *element;
564 element = acpi_gbl_global_list->list_head;
565 while (element) {
566 if ((element->component & component) &&
568 || (0 == strcmp(module, element->module)))) {
571 &element->user_space);
573 if (element->size <
577 descriptor, element->size,
578 element->module, element->line);
586 descriptor, element->size,
587 element->module, element->line,
597 element->
611 if (element->size ==
622 if (element->size ==
632 if (element->size ==
687 element = element->next;