OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:global_setlist
(Results
1 - 2
of
2
) sorted by null
/ndk/sources/host-tools/make-3.81/
variable.c
142
static struct variable_set_list
global_setlist
144
struct variable_set_list *current_variable_set_list = &
global_setlist
;
477
l->next = &
global_setlist
;
587
directly to the
global_setlist
so we need to replace that with the new one.
594
if (current_variable_set_list->next == &
global_setlist
)
600
current_variable_set_list->set =
global_setlist
.set;
601
global_setlist
.set = set;
602
current_variable_set_list->next =
global_setlist
.next;
603
global_setlist
.next = current_variable_set_list;
604
current_variable_set_list = &
global_setlist
;
141
static struct variable_set_list
global_setlist
variable in typeref:struct:variable_set_list
[
all
...]
ChangeLog
148
global_setlist
. Not only is this useless, but it can lead to
149
circularities in the linked list, if
global_setlist
->next in one
151
global_setlist
.
719
directly to the
global_setlist
variable. So, inserting a new
723
that the new setlist is in the
global_setlist
variable, and
[
all
...]
Completed in 63 milliseconds