Searched defs:it (Results 1 - 9 of 9) sorted by relevance

/bionic/libc/upstream-openbsd/lib/libc/gen/
H A Dalarm.c40 struct itimerval it, oitv; local
41 struct itimerval *itp = ⁢
/bionic/libc/bionic/
H A Dpthread_atfork.cpp52 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_; local
[all...]
H A Dnet_if.cpp88 if_list* it = list; local
89 list = it->next;
90 if (names_too) free(it->data.if_name);
91 free(it);
130 for (if_list* it = list; it != nullptr; it = it->next) {
138 for (if_list* it = list; it !
[all...]
/bionic/libc/malloc_debug/
H A DMapData.cpp127 auto it = entries_.find(entry); local
128 if (it == entries_.end()) {
151 auto it = entries_.find(&pc_entry); local
152 if (it == entries_.end()) {
155 it = entries_.find(&pc_entry);
156 if (it == entries_.end()) {
160 MapEntry *entry = *it;
/bionic/linker/
H A Dlinker_config.h131 auto it = namespace_configs_map_.find("default"); local
132 return it == namespace_configs_map_.end() ? nullptr : it->second;
H A Dlinker_allocator.cpp57 // For a pointer allocated using SmallObjectAllocator it adds
178 linker_vector_t::iterator it = std::lower_bound( local
181 if (it == page_records_.end() || it->page_addr != addr) {
186 return it;
195 linker_vector_t::iterator it = std::lower_bound( local
197 page_records_.insert(it, record);
H A Dlinker_config.cpp242 // found the section - parse it
293 auto it = find_property(name, lineno); local
294 if (it == properties_.end()) {
299 std::vector<std::string> strings = android::base::Split(it->second.value(), ",");
309 auto it = find_property(name, lineno); local
310 if (it == properties_.end()) {
314 return it->second.value() == "true";
318 auto it = find_property(name, lineno); local
319 return (it == properties_.end()) ? "" : it
355 auto it = properties_.find(name); local
[all...]
H A Dlinker.cpp147 // it is not in shared libs list we need to get the soname without actually loading
168 // gradually remove libraries from this list until it is gone.
194 // if the library needed by a system library - implicitly assume it
195 // is greylisted unless it is in the list of shared libraries for one or
201 // if this is an absolute path - make sure it points to /system/lib(64)
320 // but it does not look right, abort if soinfo is not in the list instead?
358 // For a given PC, find the .so that it belongs to.
426 // 1. Look for it in global_group
450 // 2. Look for it in the local group
516 // Each size has it'
823 auto it = soinfo_list.find(caller); local
898 auto it = cache_.find(key); local
[all...]
/bionic/tests/
H A Dgtest_main.cpp120 " If JOB_COUNT is not given, it is set to the count of available processors.\n"
864 // The child process marked as timed_out has not exited, and we should kill it manually.
897 // We choose to use multi-fork and multi-wait here instead of multi-thread, because it always
949 auto it = child_proc_list.begin(); local
950 while (it != child_proc_list.end()) {
951 auto& child_proc = *it;
967 it = child_proc_list.erase(it);
969 ++it;
1139 // If the value of gtest_repeat is < 0, then it indicate
[all...]

Completed in 153 milliseconds