HomeSort by relevance Sort by last modified time
    Searched refs:State (Results 201 - 225 of 643) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium/net/socket/
ssl_server_socket_nss.h 49 enum State {
106 // The NSS SSL state machine
109 // Buffers for the network end of the SSL state machine
126 State next_handshake_state_;
  /external/chromium/third_party/libjingle/source/talk/session/phone/
srtpfilter.h 114 // successfully, this will advance the filter to the active state.
138 enum State { ST_INIT, ST_SENTOFFER, ST_RECEIVEDOFFER, ST_ACTIVE };
139 State state_;
  /external/chromium/third_party/libjingle/source/talk/xmpp/
xmppclient.h 88 sigslot::signal1<XmppEngine::State> SignalStateChange;
89 XmppEngine::State GetState();
128 // Internal state management
133 int Process(int state) {
134 switch (state) {
137 default: return Task::Process(state);
141 std::string GetStateName(int state) const {
142 switch (state) {
145 default: return Task::GetStateName(state);
  /external/chromium/webkit/glue/media/
simple_data_source.h 127 // Simple state tracking variable.
128 enum State {
134 State state_;
  /external/libnfc-nxp/src/
phFriNfc_DesfireMap.h 62 * \name NDEF Mapping - states of the Finite State machine
145 * \name NDEF Mapping - states of the Finite State machine
175 switch(NdefMap->State)\
180 if ( NdefMap->State == PH_FRINFC_DESF_STATE_GET_HW_VERSION )\
204 * It performs a reset of the state and starts the action (state machine).
246 * It performs a reset of the state and starts the action (state machine).
308 * The function call scheme is according to \ref grp_interact. No State reset is performed during operation.
  /external/skia/include/views/
SkWidget.h 77 enum State {
82 State getButtonState() const { return fState; }
83 void setButtonState(State);
93 State fState;
256 enum State {
261 State getState() const { return fState; }
262 void setState(State);
269 State fState;
SkWindow.h 57 bool handleClick(int x, int y, Click::State);
75 virtual bool onDispatchClick(int x, int y, Click::State);
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.h 119 void stateChanged(Phonon::State, Phonon::State);
  /external/webkit/Tools/DumpRenderTree/chromium/
WebThemeEngineDRTMac.mm 93 WebThemeEngine::State state,
100 paintHIThemeScrollbarThumb(canvas, state, size, rect, scrollbarInfo);
102 paintNSScrollerScrollbarThumb(canvas, state, size, rect, scrollbarInfo);
105 static ThemeTrackEnableState stateToHIEnableState(WebThemeEngine::State state)
107 switch (state) {
121 WebThemeEngine::State state,
138 trackInfo.enableState = stateToHIEnableState(state);
    [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundle.h 106 enum State {
111 State m_state;
  /external/webkit/Tools/WebKitTestRunner/
TestController.h 110 enum State {
115 State m_state;
  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayerDriver.h 90 enum State {
97 State mState;
  /frameworks/base/media/libstagefright/include/
ChromiumHTTPDataSource.h 62 enum State {
75 State mState;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBarPolicy.java 79 IccCard.State mSimState = IccCard.State.READY;
104 // state of inet connection - 0 not connected, 100 connected
107 // sync state
183 // Sync state
212 mSimState = IccCard.State.ABSENT;
215 mSimState = IccCard.State.READY;
220 mSimState = IccCard.State.PIN_REQUIRED;
223 mSimState = IccCard.State.PUK_REQUIRED;
226 mSimState = IccCard.State.NETWORK_LOCKED
263 int state = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE, BluetoothAdapter.ERROR); local
266 int state = intent.getIntExtra(BluetoothAdapter.EXTRA_CONNECTION_STATE, local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
Connection.java 62 CDMA_INTERCEPT, /* INTERCEPT order received, MS state idle entered */
150 * If this connection is in any other state, return 0.
171 * Returns getCall().getState() or Call.State.IDLE if not
174 public Call.State getState() {
180 return Call.State.IDLE;
292 * @return a string representing the internal state of this connection.
306 .append(" state: " + getState())
307 .append(" post dial state: " + getPostDialState());
  /libcore/luni/src/test/java/libcore/java/lang/
OldThreadTest.java 305 Thread.State state = Thread.currentThread().getState(); local
306 assertNotNull(state);
307 assertEquals(Thread.State.RUNNABLE, state);
345 assertEquals(Thread.State.NEW, th.getState());
348 assertEquals(Thread.State.RUNNABLE, th.getState());
353 assertEquals(Thread.State.WAITING, th.getState());
358 assertEquals(Thread.State.BLOCKED, th.getState());
364 assertEquals(Thread.State.TIMED_WAITING, th.getState())
    [all...]
  /frameworks/base/services/surfaceflinger/
LayerBase.h 69 struct State {
87 // modify current state
189 * needsLinearFiltering - true if this surface's state requires filtering
205 /** called with the state lock when the surface is removed from the
219 inline const State& drawingState() const { return mDrawingState; }
220 inline const State& currentState() const { return mCurrentState; }
221 inline State& currentState() { return mCurrentState; }
264 State mCurrentState;
265 State mDrawingState;
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaCallTracker.java 82 Phone.State state = Phone.State.IDLE; field in class:CdmaCallTracker
138 if (state != Phone.State.IDLE) {
184 // note that this triggers call state changed notif
188 throw new CallStateException("cannot dial in current state");
202 // didn't know the state (i.e. Generic was true) we now know
209 if (foregroundCall.getState() == CdmaCall.State.ACTIVE) {
272 if (ringingCall.getState() == CdmaCall.State.INCOMING)
    [all...]
CdmaConnection.java 138 parent = parentFromDCState (dc.state);
170 //for the three way call case, not change parent state
171 if (parent.state == CdmaCall.State.ACTIVE) {
172 parent.attachFake(this, CdmaCall.State.ACTIVE);
174 parent.attachFake(this, CdmaCall.State.DIALING);
196 parent.attachFake(this, CdmaCall.State.WAITING);
267 if (getState() != CdmaCall.State.HOLDING) {
283 public CdmaCall.State getState() {
285 return CdmaCall.State.DISCONNECTED
732 PostDialState state = postDialState; local
    [all...]
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
StateMachineTest.java 25 import com.android.internal.util.State;
51 * Tests that we can quit the state machine.
61 // Setup state machine with 1 state
64 // Set the initial state
68 class S1 extends State {
160 // Setup state machine with 1 state
166 // Set the initial state
170 class S1 extends State {
    [all...]
  /external/v8/src/
frames.h 86 enum State {
108 bool is_entry() { return state() == ENTRY; }
109 bool is_try_catch() { return state() == TRY_CATCH; }
110 bool is_try_finally() { return state() == TRY_FINALLY; }
114 inline State state() const;
160 struct State {
161 State() : sp(NULL), fp(NULL), pc_address(NULL) { }
258 // Compute the stack frame type for the given state.
259 static Type ComputeType(Isolate* isolate, State* state)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 85 Phone.State state = Phone.State.IDLE; field in class:GsmCallTracker
172 // note that this triggers call state changed notif
176 throw new CallStateException("cannot dial in current state");
182 if (foregroundCall.getState() == GsmCall.State.ACTIVE) {
189 // Fake local state so that
196 if (foregroundCall.getState() != GsmCall.State.IDLE) {
198 throw new CallStateException("cannot dial in current state");
247 if (ringingCall.getState() == GsmCall.State.INCOMING)
    [all...]
  /external/chromium/chrome/browser/tabs/
tab_strip_model_unittest.cc 189 // Returns the state of the given tab strip as a string. The state consists
283 struct State {
284 State(TabContentsWrapper* a_dst_contents,
309 State* GetStateAt(int index) const {
314 bool StateEquals(int index, const State& state) {
315 State* s = GetStateAt(index);
316 EXPECT_EQ(state.src_contents, s->src_contents);
317 EXPECT_EQ(state.dst_contents, s->dst_contents)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiStateMachine.java 82 import com.android.internal.util.State;
93 * Track the state of Wifi connectivity. All event handling is done here,
94 * and all changes in connectivity state are initiated here.
162 * Tether state change notification time out
253 /* Invoked when getting a tether state change notification */
255 /* A delayed message sent to indicate tether state change failed to arrive */
349 /* Reset the supplicant state tracker */
355 /* Reset the WPS state machine */
416 * being in a bad state. Delay driver stop.
425 /* Default parent state */
1592 SupplicantState state = stateChangeResult.state; local
2460 SupplicantState state = handleSupplicantStateChange(message); local
2667 SupplicantState state = handleSupplicantStateChange(message); local
2707 SupplicantState state = stateChangeResult.state; local
2784 SupplicantState state = handleSupplicantStateChange(message); local
    [all...]
  /external/skia/src/effects/
SkColorMatrixFilter.cpp 16 static void General(SkColorMatrixFilter::State* state,
18 const int32_t* SK_RESTRICT array = state->fArray;
19 const int shift = state->fShift;
20 int32_t* SK_RESTRICT result = state->fResult;
28 static void General16(SkColorMatrixFilter::State* state,
30 const int32_t* SK_RESTRICT array = state->fArray;
31 int32_t* SK_RESTRICT result = state->fResult;
39 static void AffineAdd(SkColorMatrixFilter::State* state
225 State* state = &fState; local
279 State* state = &fState; local
    [all...]

Completed in 1600 milliseconds

1 2 3 4 5 6 7 891011>>