Searched refs:current (Results 1 - 12 of 12) sorted by relevance

/bionic/tests/
H A Dsys_quota_test.cpp24 dqblk current; local
25 quotactl(QCMD(Q_GETQUOTA, USRQUOTA), "/", getuid(), reinterpret_cast<char*>(&current));
31 dqinfo current; local
32 quotactl(QCMD(Q_GETINFO, USRQUOTA), "/", 0, reinterpret_cast<char*>(&current));
/bionic/libc/bionic/
H A D__cxa_thread_atexit_impl.cpp54 thread_local_dtor* current = thread->thread_local_dtors; local
55 thread->thread_local_dtors = current->next;
57 current->func(current->arg);
59 __loader_remove_thread_local_dtor(current->dso_handle);
61 delete current;
H A Dspawn.cpp107 struct sigaction64 current; local
108 if (sigaction64(s, nullptr, &current) == -1) _exit(127);
109 reset = (current.sa_handler != SIG_IGN && current.sa_handler != SIG_DFL);
H A Difaddrs.cpp256 ifaddrs* current = list; local
258 free(current);
/bionic/libc/system_properties/
H A Dprop_area.cpp228 prop_bt* current = bt; local
230 if (!current) {
234 const int ret = cmp_prop_name(name, namelen, current->name, current->namelen);
236 return current;
240 uint_least32_t left_offset = atomic_load_explicit(&current->left, memory_order_relaxed);
242 current = to_prop_bt(&current->left);
251 atomic_store_explicit(&current->left, new_offset, memory_order_release);
256 uint_least32_t right_offset = atomic_load_explicit(&current
281 prop_bt* current = trie; local
[all...]
H A Dsystem_properties.cpp348 uint32_t current; member in struct:find_nth
351 explicit find_nth(uint32_t n) : sought(n), current(0), result(nullptr) {
355 if (self->current++ == self->sought) self->result = pi;
/bionic/libc/tools/
H A Dndk_missing_symbols.py35 current = symbols.GetFromAndroidSo(['libc.so', 'libm.so'])
40 missing_symbols = current - device
/bionic/linker/
H A Dlinker_allocator.cpp133 small_object_block_record* current = free_blocks_list_; local
135 while (current != nullptr) {
136 while (current->next > page_start && current->next < page_end) {
137 current->next = current->next->next;
140 current = current->next;
H A Dlinker.cpp1466 // preserve current dlerror in the case it fails.
1564 // is different from the current namespace when the LoadTask is for a transitive
1566 // current namespace but in one of the linked namespace.
2635 for (ElfW(Relr)* current = begin; current < end; ++current) {
2636 ElfW(Relr) entry = *current;
/bionic/tools/versioner/src/
H A DPreprocessor.cpp279 auto current = guard_map.begin(); local
280 auto next = current;
284 if (current->second != next->second) {
285 ++current;
290 // Scan from the end of current to the beginning of next.
294 FileLocation current_location = current->first.end;
369 D("Not merging blocks %s and %s\n", to_string(current->first).c_str(),
371 ++current;
376 D("Merging blocks %s and %s\n", to_string(current->first).c_str(),
379 Location merged = current
[all...]
/bionic/libc/arch-mips/bionic/
H A Dsetjmp.S228 LA $a2, SC_MASK_OFFSET($a0) # gets current signal mask
231 jal sigprocmask # get current signal mask
/bionic/libc/arch-mips64/bionic/
H A Dsetjmp.S228 LA $a2, SC_MASK_OFFSET($a0) # gets current signal mask
231 jal sigprocmask # get current signal mask

Completed in 812 milliseconds