HomeSort by relevance Sort by last modified time
    Searched full:state (Results 1 - 25 of 16180) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric/.idea/scopes/
scope_settings.xml 2 <state>
4 </state>
  /bionic/tests/
string_test.cpp 173 // Calculate input lengths and fill state.len with them.
191 StringTestState state(SMALL);
192 for (size_t i = 1; i < state.n; i++) {
194 state.NewIteration();
196 memset(state.ptr2, '\2', state.MAX_LEN);
197 state.ptr2[state.MAX_LEN - 1] = '\0';
198 memcpy(state.ptr, state.ptr2, 2 * state.MAX_LEN)
    [all...]
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
package-info.java 1 package javax.jmdns.impl.tasks.state;
  /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_8/src/utils/
state_machine.h 2 * wpa_supplicant/hostapd - State machine definitions
9 * implement a state machine. In addition to including this header file, each
10 * file implementing a state machine must define STATE_MACHINE_DATA to be the
11 * data structure including state variables (enum machine_state,
14 * a group of state machines with shared data structure, STATE_MACHINE_ADDR
16 * SM_ENTRY_M macro can be used to define similar group of state machines
24 * SM_STATE - Declaration of a state machine function
25 * @machine: State machine name
26 * @state: State machine stat
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
NetworkInfo_StateTest.java 19 import android.net.NetworkInfo.State;
25 assertEquals(State.CONNECTED, State.valueOf("CONNECTED"));
26 assertEquals(State.CONNECTING, State.valueOf("CONNECTING"));
27 assertEquals(State.DISCONNECTED, State.valueOf("DISCONNECTED"));
28 assertEquals(State.DISCONNECTING, State.valueOf("DISCONNECTING"));
29 assertEquals(State.SUSPENDED, State.valueOf("SUSPENDED"))
    [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/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...]
  /external/zlib/src/
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 if (state->in == NULL) {
24 gz_error(state, Z_MEM_ERROR, "out of memory");
28 /* only need output buffer and deflate state if compressing *
172 gz_statep state; local
248 gz_statep state; local
306 gz_statep state; local
382 gz_statep state; local
457 gz_statep state; local
490 gz_statep state; local
531 gz_statep state; local
    [all...]
gzlib.c 74 /* Reset gzip file state */
75 local void gz_reset(state)
76 gz_statep state;
78 state->x.have = 0; /* no output data available */
79 if (state->mode == GZ_READ) { /* for reading ... */
80 state->eof = 0; /* not at end of file */
81 state->past = 0; /* have not read past end yet */
82 state->how = LOOK; /* look for gzip header */
84 state->seek = 0; /* no seek request pending */
85 gz_error(state, Z_OK, NULL); /* clear error *
96 gz_statep state; local
308 gz_statep state; local
332 gz_statep state; local
359 gz_statep state; local
444 gz_statep state; local
472 gz_statep state; local
504 gz_statep state; local
522 gz_statep state; local
541 gz_statep state; local
    [all...]
gzread.c 17 state->fd, and update state->eof, state->err, and state->msg as appropriate.
20 local int gz_load(state, buf, len, have)
21 gz_statep state;
30 ret = read(state->fd, buf + *have, len - *have);
36 gz_error(state, Z_ERRNO, zstrerror());
40 state->eof = 1;
51 local int gz_avail(state)
293 gz_statep state; local
387 gz_statep state; local
422 gz_statep state; local
486 gz_statep state; local
545 gz_statep state; local
566 gz_statep state; local
    [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...]
  /packages/inputmethods/LatinIME/native/jni/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/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...]
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractService.java 22 import com.google.common.util.concurrent.Service.State; // javadoc needs this
48 * The internal state, which equals external state unless
51 private State state = State.NEW; field in class:AbstractService
85 public final ListenableFuture<State> start() {
88 if (state == State.NEW) {
89 state = State.STARTING
225 public final State state() { method in class:AbstractService
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
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/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/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
NetworkState.java 19 import android.net.NetworkInfo.State;
28 public static final int DO_NOTHING = -1; // no state change
30 private List<State> mStateDepository;
31 private State mTransitionTarget;
33 private String mReason = null; // record mReason of state transition failure
36 mStateDepository = new ArrayList<State>();
38 mTransitionTarget = State.UNKNOWN;
41 public NetworkState(State currentState) {
42 mStateDepository = new ArrayList<State>();
45 mTransitionTarget = State.UNKNOWN
    [all...]
  /external/bison/tests/
existing.at 23 # BISON-STDERR, LAST-STATE, LALR1-DIFF,
47 AT_TEST_TABLES_AND_PARSE([$2[: LALR(1)]], [[LALR]], [[last-state]],
52 AT_TEST_TABLES_AND_PARSE([$2[: IELR(1)]], [[IELR]], [[last-state]],
58 [[last-state,no-xml]],
434 dnl LAST-STATE
438 dnl Isocore map from LALR(1) state number to new state number plus descriptions
453 NAME shift, and go to state 9
454 - '$' shift, and go to state 24
455 + '$' shift, and go to state 32
    [all...]

Completed in 2494 milliseconds

1 2 3 4 5 6 7 8 91011>>