HomeSort by relevance Sort by last modified time
    Searched full:state (Results 476 - 500 of 11839) sorted by null

<<11121314151617181920>>

  /external/wpa_supplicant_8/src/eap_server/
eap_server_gtc.c 22 enum { CONTINUE, SUCCESS, FAILURE } state; member in struct:eap_gtc_data
34 data->state = CONTINUE;
71 data->state = FAILURE;
77 data->state = CONTINUE;
119 data->state = FAILURE;
131 data->state = FAILURE;
145 data->state = FAILURE;
152 data->state = FAILURE;
163 data->state = FAILURE;
179 data->state = FAILURE
    [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 144 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
145 delete state;
149 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
150 state->clear();
161 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
162 state->addMovement(event);
167 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
168 state->computeCurrentVelocity(units, maxVelocity);
173 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
175 state->getVelocity(id, &vx, NULL)
181 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
189 VelocityTrackerState* state = reinterpret_cast<VelocityTrackerState*>(ptr); local
    [all...]
  /frameworks/base/keystore/tests/src/android/security/
KeyStoreTest.java 56 if (mKeyStore.state() != KeyStore.State.UNINITIALIZED) {
59 assertEquals(KeyStore.State.UNINITIALIZED, mKeyStore.state());
70 assertEquals(KeyStore.State.UNINITIALIZED, mKeyStore.state());
75 assertEquals(KeyStore.State.UNLOCKED, mKeyStore.state());
143 assertEquals(KeyStore.State.UNLOCKED, mKeyStore.state());
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ObjCMessage.h 91 SVal getInstanceReceiverSVal(const ProgramState *State,
97 return State->getSValAsScalarOrLoc(Ex);
103 return State->getSVal(State->getRegion(SelfDecl, LC));
143 SVal getArgSVal(unsigned i, const ProgramState *state) const {
147 return state->getSVal(msgE->getArg(i));
208 const ProgramState *State;
210 CallOrObjCMessage(const CallExpr *callE, const ProgramState *state)
211 : CallE(callE), State(state) {}
    [all...]
  /external/libnfc-nxp/src/
phHciNfc.c 179 /* Roll Back the State Machine to its Original State */
185 /* TODO: Handle Initialisation in the Invalid State */
277 /* Roll Back the State Machine to its Original State */
403 /* Roll Back the State Machine to its Original State */
438 /* Roll Back the State Machine to its Original State */
509 /* Roll Back the State Machine to its Original State *
    [all...]
  /external/wpa_supplicant_8/src/crypto/
sha256-internal.c 23 u32 state[8], curlen; member in struct:sha256_state
103 /* copy state into S */
105 S[i] = md->state[i];
108 /* copy the state into 512-bits into W[0..15] */
133 md->state[i] = md->state[i] + S[i];
139 /* Initialize the hash state */
144 md->state[0] = 0x6A09E667UL;
145 md->state[1] = 0xBB67AE85UL;
146 md->state[2] = 0x3C6EF372UL
    [all...]
  /external/stlport/test/unit/
codecvt_test.cpp 65 char *state = (char*)&mb; variable
72 if (*ecur == '0' || *state == 1) {
73 if (*state != 1) {
77 *state = 1;
87 if (*state != 1) {
99 *state = 0;
116 virtual int do_length(mbstate_t &state,
121 mbstate_t tmp = state;
159 char *state = (char*)&mb; variable
165 if (*state == 2)
238 const char *state = (const char*)&mb; local
392 cdecvt_type::state_type state; local
406 cdecvt_type::state_type state; local
439 cdecvt_type::state_type state; local
513 mbstate_t state; local
531 mbstate_t state; local
571 mbstate_t state; local
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
codecvt_test.cpp 65 char *state = (char*)&mb; variable
72 if (*ecur == '0' || *state == 1) {
73 if (*state != 1) {
77 *state = 1;
87 if (*state != 1) {
99 *state = 0;
116 virtual int do_length(mbstate_t &state,
121 mbstate_t tmp = state;
159 char *state = (char*)&mb; variable
165 if (*state == 2)
238 const char *state = (const char*)&mb; local
394 cdecvt_type::state_type state; local
408 cdecvt_type::state_type state; local
441 cdecvt_type::state_type state; local
515 mbstate_t state; local
533 mbstate_t state; local
573 mbstate_t state; local
    [all...]
  /ndk/tests/device/test-stlport/unit/
codecvt_test.cpp 65 char *state = (char*)&mb; variable
72 if (*ecur == '0' || *state == 1) {
73 if (*state != 1) {
77 *state = 1;
87 if (*state != 1) {
99 *state = 0;
116 virtual int do_length(mbstate_t &state,
121 mbstate_t tmp = state;
159 char *state = (char*)&mb; variable
165 if (*state == 2)
238 const char *state = (const char*)&mb; local
394 cdecvt_type::state_type state; local
408 cdecvt_type::state_type state; local
441 cdecvt_type::state_type state; local
515 mbstate_t state; local
533 mbstate_t state; local
573 mbstate_t state; local
    [all...]
  /external/bluetooth/bluez/audio/
device.c 79 audio_state_t state; member in struct:dev_priv
136 static const char *state2str(audio_state_t state)
138 switch (state) {
146 error("Invalid audio state %d", state);
207 if (priv->state == AUDIO_STATE_DISCONNECTED)
252 if (dev->priv->state == new_state) {
253 DBG("state change attempted from %s to %s",
258 dev->priv->state = new_state;
283 AUDIO_INTERFACE, "State",
593 const char *state; local
767 headset_state_t state = headset_get_state(dev); local
776 sink_state_t state = sink_get_state(dev); local
784 source_state_t state = source_get_state(dev); local
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_manager_unittest.cc 64 button.state = 0;
70 checkbox.state = 0;
76 root.state = 0;
142 tree1_child1.state = 0;
148 tree1_child2.state = 0;
154 tree1_child3.state = 0;
160 tree1_root.state = 0;
177 tree2_child0.state = 0;
183 tree2_child1.state = 0;
189 tree2_child2.state = 0
    [all...]
  /external/antlr/src/org/antlr/runtime/
BaseRecognizer.java 51 /** State of a lexer, parser, or tree parser are collected into a state
52 * object so the state can be shared. This sharing is needed to
54 * and other state variables. It's a kind of explicit multiple
55 * inheritance via delegation of methods and shared state.
57 protected RecognizerSharedState state; field in class:BaseRecognizer
60 state = new RecognizerSharedState();
63 public BaseRecognizer(RecognizerSharedState state) {
64 if ( state==null ) {
65 state = new RecognizerSharedState()
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextView_SaveStateTest.java 41 TextView.SavedState state = TextView.SavedState.CREATOR.createFromParcel(source); local
43 assertNotNull(state.toString());
46 state = TextView.SavedState.CREATOR.createFromParcel(source);
48 assertNotNull(state.toString());
58 TextView.SavedState state = TextView.SavedState.CREATOR.createFromParcel(source); local
59 assertNotNull(state);
  /dalvik/vm/jdwp/
JdwpSocket.cpp 44 static void netShutdown(JdwpNetState* state);
45 static void netFree(JdwpNetState* state);
49 * JDWP network state.
85 static bool prepareSocket(JdwpState* state, const JdwpStartupParams* pParams)
93 state->netState = netStartup(port);
97 state->netState = netStartup(port);
98 if (state->netState != NULL)
102 if (state->netState == NULL) {
108 state->netState = netStartup(-1);
124 static bool awaitingHandshake(JdwpState* state)
    [all...]
  /development/tools/emulator/opengl/host/tools/emugen/
EntryPoint.h 45 void setUnsupported(bool state) { m_unsupported = state; }
47 void setCustomDecoder(bool state) { m_customDecoder = state; }
49 void setNotApi(bool state) { m_notApi = state; }
  /external/bluetooth/glib/tests/
base64-test.c 21 int state, save; local
30 state = 0;
37 line_break, text + len, &state, &save);
40 len += g_base64_encode_close (line_break, text + len, &state, &save);
54 state = 0;
63 &state, &decoder_save);
  /external/chromium/chrome/browser/chromeos/notifications/
notification_browsertest.cc 86 // Waits untilt the panel's state becomes the specified state.
89 PanelController::State state) {
90 if (under_chromeos_ && state != state_) {
91 expected_ = state;
117 PanelController::State* state = local
118 reinterpret_cast<PanelController::State*>(details.map_key());
119 state_ = *state;
    [all...]
  /external/chromium/chrome/common/net/gaia/
google_service_auth_error.cc 26 GoogleServiceAuthError::GoogleServiceAuthError(State s)
53 const GoogleServiceAuthError::State& GoogleServiceAuthError::state() const { function in class:GoogleServiceAuthError
86 value->SetString("state", state_str);
99 GoogleServiceAuthError::GoogleServiceAuthError(State s, int error)
105 State s, const std::string& captcha_token,
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 26 const ProgramState *state = Pred->getState(); local
27 SVal baseVal = state->getSVal(Ex->getBase());
28 SVal location = state->getLValue(Ex->getDecl(), baseVal);
31 MakeNode(dstIvar, Ex, Pred, state->BindExpr(Ex, location));
71 // result in state splitting.
74 const ProgramState *state = Pred->getState(); local
80 elementV = state->getLValue(elemD, Pred->getLocationContext());
83 elementV = state->getSVal(elem);
87 evalLocation(dstLocation, elem, Pred, state, elementV, NULL, false);
95 const ProgramState *state = Pred->getState() local
150 const ProgramState *state = Pred->getState(); local
    [all...]
  /external/dropbear/libtomcrypt/src/hashes/
md4.c 84 /* copy state */
85 a = md->md4.state[0];
86 b = md->md4.state[1];
87 c = md->md4.state[2];
88 d = md->md4.state[3];
90 /* copy the state into 512-bits into W[0..15] */
150 /* Update our state */
151 md->md4.state[0] = md->md4.state[0] + a;
152 md->md4.state[1] = md->md4.state[1] + b
    [all...]
  /external/elfutils/libelf/
elf32_newehdr.c 59 if (elf->state.ELFW(elf,LIBELFBITS).ehdr == NULL)
62 elf->state.ELFW(elf,LIBELFBITS).ehdr =
63 &elf->state.ELFW(elf,LIBELFBITS).ehdr_mem;
66 memset (elf->state.ELFW(elf,LIBELFBITS).ehdr, '\0',
70 elf->state.ELFW(elf,LIBELFBITS).ehdr_flags |= ELF_F_DIRTY;
73 result = elf->state.ELFW(elf,LIBELFBITS).ehdr;
elf_nextscn.c 45 || (offsetof (Elf, state.elf32.scns)
46 == offsetof (Elf, state.elf64.scns)))
48 if (elf->state.elf32.scns.cnt > 1)
49 result = &elf->state.elf32.scns.data[1];
53 if (elf->state.elf64.scns.cnt > 1)
54 result = &elf->state.elf64.scns.data[1];
  /external/skia/tests/
skia_test.cpp 72 enum State {
78 void dumpState(Test* test, State state) {
84 SkDebugf("INSTRUMENTATION_STATUS_CODE: %d\n", state);
86 if (kStarting_State == state) {
88 } else if (kFailed_State == state) {
  /external/srec/srec/Semproc/src/
ExpressionParser.c 29 * These are handlers for tokens. They modify state of the parser
183 self->state = LHS_REQUIRED;
193 switch (self->state)
197 self->state = OP_ASSIGN_REQUIRED;
201 self->state = OP_ANY_REQUIRED;
206 PLogError(L("%s: state=%d - are there reserved chars in the tag?"), ESR_rc2str(rc), self->state);
215 if (self->state == OP_ASSIGN_REQUIRED)
219 self->state = IDENTIFIER_REQUIRED;
231 if (self->state == OP_ANY_REQUIRED
    [all...]
  /external/webkit/Source/WebCore/loader/
FrameLoaderStateMachine.cpp 67 void FrameLoaderStateMachine::advanceTo(State state)
69 ASSERT(State(m_state + 1) == state || (firstLayoutDone() && state == CommittedFirstRealLoad));
70 m_state = state;

Completed in 1200 milliseconds

<<11121314151617181920>>