/external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/ |
State.java | 7 final class State 9 int state; field in class:State 12 State(@SuppressWarnings("hiding") int state, @SuppressWarnings("hiding") ArrayList nodes) 14 this.state = state;
|
/external/dropbear/libtomcrypt/src/mac/pmac/ |
pmac_done.c | 20 int pmac_done(pmac_state *state, unsigned char *out, unsigned long *outlen) 24 LTC_ARGCHK(state != NULL); 26 if ((err = cipher_is_valid(state->cipher_idx)) != CRYPT_OK) { 30 if ((state->buflen > (int)sizeof(state->block)) || (state->buflen < 0) || 31 (state->block_len > (int)sizeof(state->block)) || (state->buflen > state->block_len)) [all...] |
/external/wpa_supplicant/ |
state_machine.h | 2 * wpa_supplicant/hostapd - State machine definitions 15 * implement a state machine. In addition to including this header file, each 16 * file implementing a state machine must define STATE_MACHINE_DATA to be the 17 * data structure including state variables (enum <machine>_state, 20 * a group of state machines with shared data structure, STATE_MACHINE_ADDR 22 * SM_ENTRY_M macro can be used to define similar group of state machines 30 * SM_STATE - Declaration of a state machine function 31 * @machine: State machine name 32 * @state: State machine stat [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
state_machine.h | 2 * wpa_supplicant/hostapd - State machine definitions 15 * implement a state machine. In addition to including this header file, each 16 * file implementing a state machine must define STATE_MACHINE_DATA to be the 17 * data structure including state variables (enum machine_state, 20 * a group of state machines with shared data structure, STATE_MACHINE_ADDR 22 * SM_ENTRY_M macro can be used to define similar group of state machines 30 * SM_STATE - Declaration of a state machine function 31 * @machine: State machine name 32 * @state: State machine stat [all...] |
/external/wpa_supplicant_8/src/utils/ |
state_machine.h | 2 * wpa_supplicant/hostapd - State machine definitions 15 * implement a state machine. In addition to including this header file, each 16 * file implementing a state machine must define STATE_MACHINE_DATA to be the 17 * data structure including state variables (enum machine_state, 20 * a group of state machines with shared data structure, STATE_MACHINE_ADDR 22 * SM_ENTRY_M macro can be used to define similar group of state machines 30 * SM_STATE - Declaration of a state machine function 31 * @machine: State machine name 32 * @state: State machine stat [all...] |
/dalvik/vm/jdwp/ |
JdwpPriv.h | 52 bool (*startup)(struct JdwpState* state, const JdwpStartupParams* pParams); 53 bool (*accept)(struct JdwpState* state); 54 bool (*establish)(struct JdwpState* state); 55 void (*close)(struct JdwpState* state); 56 void (*shutdown)(struct JdwpState* state); 57 void (*free)(struct JdwpState* state); 58 bool (*isConnected)(struct JdwpState* state); 59 bool (*awaitingHandshake)(struct JdwpState* state); 60 bool (*processIncoming)(struct JdwpState* state); 61 bool (*sendRequest)(struct JdwpState* state, ExpandBuf* pReq) [all...] |
JdwpMain.cpp | 76 JdwpState* state = NULL; local 81 state = (JdwpState*) calloc(1, sizeof(JdwpState)); 83 state->params = *pParams; 85 state->requestSerial = 0x10000000; 86 state->eventSerial = 0x20000000; 87 dvmDbgInitMutex(&state->threadStartLock); 88 dvmDbgInitMutex(&state->attachLock); 89 dvmDbgInitMutex(&state->serialLock); 90 dvmDbgInitMutex(&state->eventLock); 91 state->eventThreadId = 0 258 JdwpState* state = (JdwpState*) arg; local [all...] |
/external/mesa3d/src/glsl/ |
ir_variable.cpp | 68 struct _mesa_glsl_parse_state *state, 72 state->symbols); 92 struct _mesa_glsl_parse_state *state, 97 instructions, state->symbols); 106 struct _mesa_glsl_parse_state *state) 108 add_builtin_constant(instructions, state, "gl_MaxVertexAttribs", 109 state->Const.MaxVertexAttribs); 110 add_builtin_constant(instructions, state, "gl_MaxVertexUniformVectors", 111 state->Const.MaxVertexUniformComponents); 112 add_builtin_constant(instructions, state, "gl_MaxVaryingVectors" [all...] |
/external/oprofile/events/i386/athlon/ |
unit_masks | 6 0x10 (M)odified cache state 7 0x08 (O)wner cache state 8 0x04 (E)xclusive cache state 9 0x02 (S)hared cache state 10 0x01 (I)nvalid cache state
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
SoftKeyToggle.java | 29 * The current state number is stored in the lowest 8 bits of mKeyMask, this 30 * mask is used to get the state number. If the current state is 0, the 31 * normal state is enabled; if the current state is more than 0, a toggle 32 * state in the toggle state chain will be enabled. 42 // The state id should be valid, and less than 255. 43 // If resetIfNotFound is true and there is no such toggle state with the 44 // given id, the key state will be reset 95 ToggleState state = getToggleState(); local 102 ToggleState state = getToggleState(); local 115 ToggleState state = getToggleState(); local 122 ToggleState state = getToggleState(); local 129 ToggleState state = getToggleState(); local 138 ToggleState state = getToggleState(); local 147 ToggleState state = getToggleState(); local 156 ToggleState state = getToggleState(); local 165 ToggleState state = getToggleState(); local 174 ToggleState state = getToggleState(); local 184 ToggleState state = getToggleState(); local 194 ToggleState state = getToggleState(); local 206 ToggleState state = getToggleState(); local 215 ToggleState state = getToggleState(); local 224 ToggleState state = getToggleState(); local [all...] |
/cts/tests/tests/net/src/android/net/cts/ |
NetworkInfo_StateTest.java | 19 import android.net.NetworkInfo.State; 25 @TestTargetClass(State.class) 35 assertEquals(State.CONNECTED, State.valueOf("CONNECTED")); 36 assertEquals(State.CONNECTING, State.valueOf("CONNECTING")); 37 assertEquals(State.DISCONNECTED, State.valueOf("DISCONNECTED")); 38 assertEquals(State.DISCONNECTING, State.valueOf("DISCONNECTING")) [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
inflate.c | 26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset) 30 * - Add comments on state->bits assertion in inffast.c 95 local void fixedtables OF((struct inflate_state FAR *state)); 106 struct inflate_state FAR *state; local 108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; 109 state = (struct inflate_state FAR *)strm->state; 110 strm->total_in = strm->total_out = state->total = 0; 113 state->mode = HEAD 133 struct inflate_state FAR *state; local 150 struct inflate_state FAR *state; local 272 struct inflate_state state; local 327 struct inflate_state FAR *state; local 558 struct inflate_state FAR *state; local [all...] |
/external/zlib/ |
gzwrite.c | 13 /* Initialize state for writing a gzip file. Mark initialization by setting 14 state->size to non-zero. Return -1 on failure or 0 on success. */ 15 local int gz_init(state) 16 gz_statep state; 19 z_streamp strm = &(state->strm); 22 state->in = malloc(state->want); 23 state->out = malloc(state->want); 24 if (state->in == NULL || state->out == NULL) 150 gz_statep state; local 226 gz_statep state; local 284 gz_statep state; local 360 gz_statep state; local 430 gz_statep state; local 463 gz_statep state; local 504 gz_statep state; local [all...] |
gzlib.c | 70 /* Reset gzip file state */ 71 local void gz_reset(state) 72 gz_statep state; 74 if (state->mode == GZ_READ) { /* for reading ... */ 75 state->have = 0; /* no output data available */ 76 state->eof = 0; /* not at end of file */ 77 state->how = LOOK; /* look for gzip header */ 78 state->direct = 1; /* default for empty file */ 80 state->seek = 0; /* no seek request pending */ 81 gz_error(state, Z_OK, NULL); /* clear error * 92 gz_statep state; local 232 gz_statep state; local 256 gz_statep state; local 282 gz_statep state; local 366 gz_statep state; local 394 gz_statep state; local 426 gz_statep state; local 445 gz_statep state; local 464 gz_statep state; local [all...] |
gzread.c | 18 state->fd, and update state->eof, state->err, and state->msg as appropriate. 21 local int gz_load(state, buf, len, have) 22 gz_statep state; 31 ret = read(state->fd, buf + *have, len - *have); 37 gz_error(state, Z_ERRNO, zstrerror()); 41 state->eof = 1; 50 local int gz_avail(state) 368 gz_statep state; local 458 gz_statep state; local 486 gz_statep state; local 547 gz_statep state; local 606 gz_statep state; local 631 gz_statep state; local [all...] |
inflate.c | 26 * - Change strm->next_out[-state->offset] to *(strm->next_out - state->offset) 30 * - Add comments on state->bits assertion in inffast.c 95 local void fixedtables OF((struct inflate_state FAR *state)); 106 struct inflate_state FAR *state; local 108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; 109 state = (struct inflate_state FAR *)strm->state; 110 strm->total_in = strm->total_out = state->total = 0; 113 state->mode = HEAD 135 struct inflate_state FAR *state; local 175 struct inflate_state FAR *state; local 214 struct inflate_state FAR *state; local 307 struct inflate_state state; local 362 struct inflate_state FAR *state; local 593 struct inflate_state FAR *state; local [all...] |
/external/nist-sip/java/javax/sip/ |
DialogState.java | 12 public static DialogState getObject(int state) { 14 return values()[state]; 17 "Invalid dialog state: " + state);
|
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/ |
PackageVerificationStateTest.java | 32 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 35 state.isVerificationComplete()); 37 state.setVerifierResponse(REQUIRED_UID, PackageManager.VERIFICATION_ALLOW); 40 state.isVerificationComplete()); 43 state.isInstallAllowed()); 47 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 50 state.isVerificationComplete()); 52 state.setVerifierResponse(REQUIRED_UID, PackageManager.VERIFICATION_REJECT); 55 state.isVerificationComplete()); 58 state.isInstallAllowed()) 62 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 87 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 112 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 138 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local 169 PackageVerificationState state = new PackageVerificationState(REQUIRED_UID, null); local [all...] |
/external/expat/lib/ |
xmlrole.c | 93 #define setTopLevel(state) \ 94 ((state)->handler = ((state)->documentEntity \ 98 #define setTopLevel(state) ((state)->handler = internalSubset) 101 typedef int PTRCALL PROLOG_HANDLER(PROLOG_STATE *state, 125 static int FASTCALL common(PROLOG_STATE *state, int tok); 128 prolog0(PROLOG_STATE *state, 136 state->handler = prolog1; 139 state->handler = prolog1 [all...] |
/packages/inputmethods/LatinIME/native/src/ |
correction_state.h | 55 inline static void initCorrectionState(CorrectionState *state, const int rootPos, 57 state->mParentIndex = -1; 58 state->mChildCount = childCount; 59 state->mInputIndex = 0; 60 state->mSiblingPos = rootPos; 61 state->mNeedsToTraverseAllNodes = traverseAll; 63 state->mTransposedPos = -1; 64 state->mExcessivePos = -1; 65 state->mSkipPos = -1; 67 state->mEquivalentCharCount = 0 [all...] |
/external/webrtc/src/common_audio/signal_processing_library/main/source/ |
resample_by_2_internal.c | 29 // state: filter state array; length = 8 32 WebRtc_Word32 *state) 43 diff = tmp0 - state[1]; 46 tmp1 = state[0] + diff * kResampleAllpass[1][0]; 47 state[0] = tmp0; 48 diff = tmp1 - state[2]; 53 tmp0 = state[1] + diff * kResampleAllpass[1][1]; 54 state[1] = tmp1; 55 diff = tmp0 - state[3] [all...] |
/external/guava/src/com/google/common/util/concurrent/ |
AbstractService.java | 22 import com.google.common.base.Service.State; // javadoc needs this 50 * The internal state, which equals external state unless 53 private State state = State.NEW; field in class:AbstractService 86 public final Future<State> start() { 89 if (state == State.NEW) { 90 state = State.STARTING 232 public final State state() { method in class:AbstractService [all...] |
/external/libpcap/missing/ |
snprintf.c | 63 * Common state 66 struct state { struct 72 int (*append_char)(struct state *, unsigned char); 73 int (*reserve)(struct state *, size_t); 79 sn_reserve (struct state *state, size_t n) 81 return state->s + n > state->theend; 85 sn_append_char (struct state *state, unsigned char c 612 struct state state; local [all...] |
/external/tcpdump/missing/ |
snprintf.c | 63 * Common state 66 struct state { struct 72 int (*append_char)(struct state *, unsigned char); 73 int (*reserve)(struct state *, size_t); 79 sn_reserve (struct state *state, size_t n) 81 return state->s + n > state->theend; 85 sn_append_char (struct state *state, unsigned char c 612 struct state state; local [all...] |
/frameworks/base/core/java/android/nfc/ |
NfcActivityManager.java | 45 * NFC state associated with an {@link Activity} 71 NfcActivityState state = mNfcState.get(activity); local 72 if (DBG) Log.d(TAG, "onResume() for " + activity + " " + state); 73 if (state != null) { 74 state.resumed = true; 75 updateNfcService(state); 83 NfcActivityState state = mNfcState.get(activity); local 84 if (DBG) Log.d(TAG, "onPause() for " + activity + " " + state); 85 if (state != null) { 86 state.resumed = false 99 NfcActivityState state = getOrCreateState(activity, message != null); local 114 NfcActivityState state = getOrCreateState(activity, callback != null); local 129 NfcActivityState state = getOrCreateState(activity, callback != null); local 149 NfcActivityState state = mNfcState.get(activity); local [all...] |