HomeSort by relevance Sort by last modified time
    Searched defs:cur_state (Results 1 - 11 of 11) sorted by null

  /art/runtime/base/
mutex-inl.h 139 int32_t cur_state = state_; local
140 if (LIKELY(cur_state >= 0)) {
142 done = android_atomic_acquire_cas(cur_state, cur_state + 1, &state_) == 0;
147 if (futex(&state_, FUTEX_WAIT, cur_state, NULL, NULL, 0) != 0) {
169 int32_t cur_state = state_; local
170 if (LIKELY(cur_state > 0)) {
172 done = android_atomic_release_cas(cur_state, cur_state - 1, &state_) == 0;
173 if (done && (cur_state - 1) == 0) { // cas may fail due to noise
    [all...]
mutex.cc 348 int32_t cur_state = state_; local
349 if (cur_state == 0) {
390 int32_t cur_state = state_; local
391 if (cur_state == 0) {
434 int32_t cur_state = state_; local
435 if (cur_state == 1) {
439 done = android_atomic_release_cas(cur_state, 0, &state_) == 0;
449 LOG(FATAL) << "Unexpected state_ in unlock " << cur_state << " for " << name_;
453 cur_state, name_).c_str());
551 int32_t cur_state = state_ local
585 int32_t cur_state = state_; local
614 int32_t cur_state = state_; local
666 int32_t cur_state = state_; local
    [all...]
  /external/libsepol/include/sepol/policydb/
conditional.h 75 int cur_state; member in struct:cond_node
  /frameworks/compile/mclinker/lib/LD/
EhFrameReader.cpp 136 State cur_state = Q0; local
137 while (Reject != cur_state && Accept != cur_state) {
142 if (!transition[cur_state][token.kind](pEhFrame, *entry, token)) {
152 cur_state = Accept;
154 cur_state = Reject;
157 cur_state = autometa[cur_state][token.kind];
160 if (Reject == cur_state) {
  /external/libnfc-nxp/src/
phHciNfc_Sequence.c 223 phHciNfc_eState_t cur_state = (phHciNfc_eState_t) local
224 psHciContext->hci_state.cur_state;
230 if( cur_state == (uint8_t) state )
239 switch (cur_state)
482 psHciContext->hci_state.cur_state );
520 psHciContext->hci_state.cur_state );
528 psHciContext->hci_state.cur_state =
539 psHciContext->hci_state.cur_state );
550 HCI_DEBUG("HCI: %s: transition=%02u, cur_state=%02u, next_state=%02u\n",
553 psHciContext->hci_state.cur_state,
    [all...]
  /external/libnfc-nxp/inc/
phNfcInterface.h 166 uint8_t cur_state; member in struct:phNfc_sState
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.c 227 prev_st = pstr->cur_state;
242 mbclen = __mbrtowc (&wc, p, remain_len, &pstr->cur_state);
246 pstr->cur_state = prev_st;
256 pstr->cur_state = prev_st;
298 && mbsinit (&pstr->cur_state))
311 prev_st = pstr->cur_state;
314 + byte_idx), remain_len, &pstr->cur_state);
348 pstr->cur_state = prev_st;
353 pstr->cur_state = prev_st;
368 prev_st = pstr->cur_state;
735 mbstate_t cur_state; local
    [all...]
regex_internal.h 375 mbstate_t cur_state; member in struct:re_string_t
regexec.c 1124 re_dfastate_t *cur_state; local
2199 re_dfastate_t *cur_state; local
2433 re_dfastate_t *cur_state; local
2927 re_dfastate_t *cur_state = NULL; local
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_hl.c 2241 btif_hl_chan_cb_state_t cur_state = p_pcb->cb_state; local
    [all...]
  /external/libsepol/src/
expand.c 2724 int cur_state, preserve_tunables = 0; local
    [all...]

Completed in 207 milliseconds