HomeSort by relevance Sort by last modified time
    Searched full:state (Results 501 - 525 of 14455) sorted by null

<<21222324252627282930>>

  /external/wpa_supplicant_8/src/eap_server/
eap_server_md5.c 21 enum { CONTINUE, SUCCESS, FAILURE } state; member in struct:eap_md5_data
32 data->state = CONTINUE;
52 data->state = FAILURE;
61 data->state = FAILURE;
70 data->state = CONTINUE;
110 data->state = FAILURE;
127 data->state = SUCCESS;
130 data->state = FAILURE;
138 return data->state != CONTINUE;
145 return data->state == SUCCESS
    [all...]
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm_i.h 2 * IEEE 802.1X-2004 Authenticator - EAPOL state machine (internal definitions)
37 * struct eapol_state_machine - Per-Supplicant Authenticator state machines
61 /* Port Timers state machine */
64 /* Authenticator PAE state machine */
92 /* Backend Authentication state machine */
107 /* Reauthentication Timer state machine */
114 /* Authenticator Key Transmit state machine */
118 /* Key Receive state machine */
123 /* Controlled Directions state machine */
169 Boolean initializing; /* in process of initializing state machines *
    [all...]
  /hardware/ti/omap4xxx/
stacktrace.c 51 stack_crawl_state_t* state = (stack_crawl_state_t*)arg; local
52 if (state->count) {
55 state->addrs[0] = ip;
56 state->addrs++;
57 state->count--;
70 stack_crawl_state_t state; local
71 state.count = max_entries;
72 state.addrs = (intptr_t*)addrs;
73 _Unwind_Backtrace(trace_function, (void*)&state);
74 return max_entries - state.count
    [all...]
  /packages/apps/Settings/src/com/android/settings/
PointerSpeedPreference.java 56 protected void showDialog(Bundle state) {
57 super.showDialog(state);
125 // Save the dialog state
130 // Restore the old state when the activity or dialog is being paused
136 protected void onRestoreInstanceState(Parcelable state) {
137 if (state == null || !state.getClass().equals(SavedState.class)) {
138 // Didn't save state for us in onSaveInstanceState
139 super.onRestoreInstanceState(state);
143 SavedState myState = (SavedState) state;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
sm_inter.x 44 /* if res_stat == stat_succ, state = state number of site sm_name */
49 /* stat consists of state number of local site */
52 /* stat consists of state number of local site */
55 /* stat consists of state number of local site */
89 * state # of status monitor monotonically increases each time
95 int state; /* state # of status monitor */
105 int state;
114 int state;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
sm_inter.x 44 /* if res_stat == stat_succ, state = state number of site sm_name */
49 /* stat consists of state number of local site */
52 /* stat consists of state number of local site */
55 /* stat consists of state number of local site */
89 * state # of status monitor monotonically increases each time
95 int state; /* state # of status monitor */
105 int state;
114 int state;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
sm_inter.x 44 /* if res_stat == stat_succ, state = state number of site sm_name */
49 /* stat consists of state number of local site */
52 /* stat consists of state number of local site */
55 /* stat consists of state number of local site */
89 * state # of status monitor monotonically increases each time
95 int state; /* state # of status monitor */
105 int state;
114 int state;
    [all...]
  /external/antlr/antlr-3.4/antlr3-maven-archetype/src/main/resources/archetype-resources/src/main/java/
AbstractTParser.java 35 * and the shared state.
41 * @param state The shared state object created by an interconnectd grammar
43 protected AbstractTParser(TokenStream input, RecognizerSharedState state) {
44 super(input, state);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
State.java 30 /** A generic state machine state. */
31 public abstract class State {
36 /** An accept state is an end of rule state for lexers and
  /external/bison/src/
lalr.h 33 # include "state.h"
35 /* Compute how to make the finite state machine deterministic; find
36 which rules need look-ahead in each state, and which look-ahead
52 FROM_STATE[T] -- state number which a transition leads from.
53 TO_STATE[T] -- state number it leads to.
  /external/chromium/chrome/browser/chromeos/
browser_main_chromeos.cc 27 event->button.state & GDK_MOD1_MASK) {
30 // Remove the Alt key and first button state.
31 event->button.state &= ~(GDK_MOD1_MASK | GDK_BUTTON1_MASK);
32 // Add the third (right) button state.
33 event->button.state |= GDK_BUTTON3_MASK;
  /external/chromium/net/http/
md4.cc 112 /* update state: data is 64 bytes in length */
113 static void md4step(Uint32 state[4], const Uint8 *data)
119 A = state[0];
120 B = state[1];
121 C = state[2];
122 D = state[3];
139 state[0] += A;
140 state[1] += B;
141 state[2] += C;
142 state[3] += D
151 Uint32 i, n, m, state[4]; local
    [all...]
  /external/icu4c/layout/
ThaiShaping.h 49 // State Transition actions
80 inline static StateTransition getTransition(le_uint8 state, le_uint8 currClass);
85 static le_uint8 getNextState(LEUnicode ch, le_uint8 state, le_int32 inputIndex, le_uint8 glyphSet, LEUnicode errorChar,
100 inline ThaiShaping::StateTransition ThaiShaping::getTransition(le_uint8 state, le_uint8 currClass)
102 return thaiStateTable[state][currClass];
  /external/icu4c/test/cintltst/
nfsprep.h 47 * @param state
54 NFS4ProfileState state,
63 * @param state
78 * @param state
93 * @param state
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8PopStateEventCustom.cpp 42 INC_STATS("DOM.PopStateEvent.state");
45 SerializedScriptValue* state = event->state(); local
46 if (!state)
49 return state->deserialize();
  /external/webkit/Source/WebCore/manual-tests/
transitions.html 29 var state = 0;
46 target.className = transitions[state].className;
47 state++;
48 if (state < transitions.length)
49 document.getElementById("description").innerText = transitions[state].description;
transitions2.html 29 var state = 0;
44 target.className = transitions[state].className;
45 state++;
46 if (state < transitions.length)
47 document.getElementById("description").innerText = transitions[state].description;
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
reopenbugafterrollout.py 35 def run(self, state):
36 commit_comment = bug_comment_from_commit_text(self._tool.scm(), state["commit_text"])
37 comment_text = "Reverted r%s for reason:\n\n%s\n\n%s" % (state["revision"], state["reason"], commit_comment)
39 bug_id = state["bug_id"]
  /frameworks/base/core/java/com/android/internal/util/
State.java 26 public class State implements IState {
31 protected State() {
57 * Name of State for debugging purposes.
60 * the instance name would better in cases where a State class
62 * state and the class name is sufficient and easy to get. You may
  /frameworks/base/telephony/java/com/android/internal/telephony/
IccCard.java 59 protected State mState = null;
131 UNKNOWN is a transient state, for example, after uesr inputs ICC pin under
132 PIN_REQUIRED state, the query for ICC status returns UNKNOWN before it
135 public enum State {
156 public State getState() {
160 * State.isLocked() or State.ABSENT.
165 return State.UNKNOWN;
170 return State.READY;
177 return State.UNKNOWN
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/
StateView.java 25 * The StateView shows the GL state for the current active {@link GLFunctionTraceViewer}.
26 * It behaves like the Eclipse Outline View: Each active editor provides the GL state content
28 * state corresponding to whichever editor is active.
31 public static final String ID = "com.android.ide.eclipse.gltrace.views.State"; //$NON-NLS-1$
34 super("Open (or select) a GL Trace file to view the GL State.");
  /system/core/libcorkscrew/
backtrace.c 50 backtrace_state_t* state = (backtrace_state_t*)arg; local
57 add_backtrace_entry(rewind_pc_arch(&state->memory, pc), state->backtrace,
58 state->ignore_depth, state->max_depth,
59 &state->ignored_frames, &state->returned_frames);
61 return state->returned_frames < state->max_depth ? _URC_NO_REASON : _URC_END_OF_STACK;
69 backtrace_state_t state; local
    [all...]
  /external/chromium/webkit/glue/
webthemeengine_impl_win.cc 7 #include <vsstyle.h> // To convert to gfx::NativeTheme::State
30 static gfx::NativeTheme::State WebButtonStateToGfx(
32 int state,
34 gfx::NativeTheme::State gfx_state = gfx::NativeTheme::kNormal;
37 switch(state) {
75 NOTREACHED() << "Invalid state: " << state;
78 switch(state) {
128 NOTREACHED() << "Invalid state: " << state;
    [all...]
  /external/dropbear/libtomcrypt/src/hashes/
sha1.c 55 /* copy the state into 512-bits into W[0..15] */
60 /* copy state */
61 a = md->sha1.state[0];
62 b = md->sha1.state[1];
63 c = md->sha1.state[2];
64 d = md->sha1.state[3];
65 e = md->sha1.state[4];
141 md->sha1.state[0] = md->sha1.state[0] + a;
142 md->sha1.state[1] = md->sha1.state[1] + b
    [all...]
  /external/zlib/
inffast.c 42 state->mode == LEN
46 state->bits < 8
48 On return, state->mode is one of:
71 struct inflate_state FAR *state; local
97 /* copy state to local variables */
98 state = (struct inflate_state FAR *)strm->state;
105 dmax = state->dmax;
107 wsize = state->wsize;
108 whave = state->whave
    [all...]

Completed in 568 milliseconds

<<21222324252627282930>>