Home | History | Annotate | Download | only in bionic

Lines Matching refs:it

52     for (atfork_t* it = first_; it != nullptr; it = it->next) {
53 f(it);
59 for (atfork_t* it = last_; it != nullptr; it = it->prev) {
60 f(it);
78 atfork_t* it = first_;
79 while (it != nullptr) {
80 if (predicate(it)) {
81 atfork_t* entry = it;
82 it = it->next;
85 it = it->next;
117 // We lock the atfork list here, unlock it in the parent, and reset it in the child.
125 g_atfork_list.walk_backwards([](atfork_t* it) {
126 if (it->prepare != nullptr) {
127 it->prepare();
136 g_atfork_list.walk_forward([](atfork_t* it) {
137 if (it->child != nullptr) {
138 it->child();
145 g_atfork_list.walk_forward([](atfork_t* it) {
146 if (it->parent != nullptr) {
147 it->parent();