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

<<11121314151617181920>>

  /external/libnfc-nxp/src/
phFriNfc_DesfireMap.c 134 /*set the state*/
135 NdefMap->State = PH_FRINFC_DESF_STATE_GET_HW_VERSION;
150 /*set the state*/
151 NdefMap->State = PH_FRINFC_DESF_STATE_GET_SW_VERSION;
174 /*set the state*/
175 NdefMap->State = PH_FRINFC_DESF_STATE_GET_UID;
231 * It performs a reset of the state and starts the action (state machine).
295 * It performs a reset of the state and starts the action (state machine)
    [all...]
phFriNfc_NdefReg.c 97 NdefReg->State=PH_FRINFC_NDEFREG_STATE_INIT;
226 FSM state, so as to trigger the process and return pending. This function is non-blocking,
243 NdefReg->State = PH_FRINFC_NDEFREG_STATE_DIS_PKT;
253 FSM state, so as to trigger the process and return pending */
265 NdefReg->State = PH_FRINFC_NDEFREG_STATE_DIS_RCD;
291 switch(NdefReg->State)
386 NdefReg->State = PH_FRINFC_NDEFREG_STATE_INIT;
643 NdefReg->State = PH_FRINFC_NDEFREG_STATE_INIT;
669 /* Unknown state Error exit from the process function */
  /external/mesa3d/docs/
MESA_resize_buffers.spec 71 New State
75 New Implementation Dependent State
MESA_ycbcr_texture.spec 157 Additions to Chapter 6 of the OpenGL 1.4 Specification (State and
158 State Requests)
191 New State
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptsyntaxcheckresult.cpp 38 \enum QScriptSyntaxCheckResult::State
40 This enum specifies the state of a syntax check.
79 Returns the state of this QScriptSyntaxCheckResult.
81 QScriptSyntaxCheckResult::State QScriptSyntaxCheckResult::state() const function in class:QScriptSyntaxCheckResult
83 return d_ptr->state();
90 \sa state(), errorMessage()
101 \sa state(), errorLineNumber()
112 \sa state(), errorLineNumber()
  /external/webkit/Source/WebCore/inspector/front-end/
ConsolePanel.js 44 this._previousConsoleState = WebInspector.drawer.state;
66 if (this._previousConsoleState === WebInspector.Drawer.State.Hidden)
  /external/webkit/Source/WebCore/platform/
PlatformTouchEvent.h 74 PlatformTouchEvent(const Vector<int>&, const Vector<IntPoint>&, TouchEventType, const Vector<PlatformTouchPoint::State>&, int metaState);
  /external/webkit/Source/WebCore/xml/
XMLHttpRequest.h 53 enum State {
82 State readyState() const;
167 void changeState(State newState);
195 State m_state;
  /external/webkit/Source/WebKit/android/
RenderSkinButton.cpp 87 RenderSkinAndroid::State newState)
98 // Ensure that the state is within the valid range of our array.
  /frameworks/base/policy/tests/src/com/android/internal/policy/impl/
LockPatternKeyguardViewTest.java 42 public IccCard.State simState = IccCard.State.READY;
49 public IccCard.State getSimState() {
320 mUpdateMonitor.simState = IccCard.State.PUK_REQUIRED;
  /frameworks/base/services/surfaceflinger/
LayerDim.cpp 45 const State& s(drawingState());
  /packages/apps/Phone/src/com/android/phone/
PhoneApp.java 159 // Internal PhoneApp Call state tracker
176 // True if a wired headset is currently plugged in, based on the state
185 // True if we are beginning a call, but the phone state has not changed yet
188 // Last phone state seen by updatePhoneState()
189 Phone.State mLastPhoneState = Phone.State.IDLE;
209 /** boolean indicating restoring mute state on InCallScreen.onResume() */
226 // cdmaOtaScreenState object store OTA Screen State information.
238 * Set the restore mute state flag. Used when we are setting the mute state
1011 Phone.State state = mCM.getState(); local
1567 int state = ss.getState(); local
    [all...]
  /external/chromium/chrome/browser/sync/
sync_setup_flow.cc 58 SyncSetupWizard::State start,
59 SyncSetupWizard::State end) {
88 args->SetInteger("error", error.state());
171 void SyncSetupFlow::Advance(SyncSetupWizard::State advance_state) {
173 LOG(WARNING) << "Invalid state change from "
194 // Record the state at which the user cancelled the signon dialog.
280 SyncSetupFlow::SyncSetupFlow(SyncSetupWizard::State start_state,
281 SyncSetupWizard::State end_state,
296 // Returns true if the flow should advance to |state| based on |current_state_|.
297 bool SyncSetupFlow::ShouldAdvance(SyncSetupWizard::State state)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
const-fst.h 74 // Provide information needed for generic state iterator
90 struct State {
92 uint32 pos; // Start of state's arcs in *arcs_
93 uint32 narcs; // Number of arcs (per state)
96 State() : final(Weight::Zero()), niepsilons(0), noepsilons(0) {}
108 State *states_; // States represenation
112 StateId start_; // Initial state
137 states_ = new State[nstates_];
170 impl->states_ = new State[impl->nstates_];
177 size_t b = impl->nstates_ * sizeof(typename ConstFstImpl<A>::State);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.cpp 63 stream << "State: " << phononStates.valueToKey(mediaObject.state());
108 connect(m_mediaObject, SIGNAL(stateChanged(Phonon::State,Phonon::State)),
109 this, SLOT(stateChanged(Phonon::State,Phonon::State)));
265 bool paused = m_mediaObject->state() == Phonon::PausedState;
372 Phonon::State phononState = m_mediaObject->state();
399 LOG(Media, "Network state changed from '%s' to '%s'"
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
ConnectivityManagerTestActivity.java 26 import android.net.NetworkInfo.State;
67 public static final int SUCCESS = 0; // for Wifi tethering state change
77 public State mState;
99 * Verify connectivity state
106 public int mWifiTetherResult = INIT; // -1 is initialization state
126 mState = State.DISCONNECTED;
128 mState = State.CONNECTED;
164 if (mWifiNetworkInfo.getState() == State.CONNECTED) {
208 mState = State.UNKNOWN;
266 log("Initialize network state for " + networkType + ": "
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFDebugLine.cpp 94 DWARFDebugLine::State::~State() {}
96 void DWARFDebugLine::State::appendRowToMatrix(uint32_t offset) {
123 State state; local
124 if (!parseStatementTable(debug_line_data, &offset, state))
126 pos.first->second = state;
188 uint32_t *offset_ptr, State &state) {
191 Prologue *prologue = &state.Prologue
    [all...]
  /frameworks/base/services/java/com/android/server/connectivity/
Tethering.java 51 import com.android.internal.util.State;
129 private boolean mRndisEnabled; // track the RNDIS function enabled state
369 // TODO - move all private methods used only by the state machine into the state machine
758 private State mDefaultState;
760 private State mInitialState;
761 private State mStartingState;
762 private State mTetheredState;
764 private State mUnavailableState;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallManager.java 103 // state registrants
232 * Get current coarse-grained voice call state.
234 * then the phone state is RINGING not OFFHOOK
237 public Phone.State getState() {
238 Phone.State s = Phone.State.IDLE;
241 if (phone.getState() == Phone.State.RINGING) {
242 s = Phone.State.RINGING;
243 } else if (phone.getState() == Phone.State.OFFHOOK) {
244 if (s == Phone.State.IDLE) s = Phone.State.OFFHOOK
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
session.h 132 // A BaseSession manages general session state. This includes negotiation
142 enum State {
170 // Updates the state, signaling if necessary.
171 void SetState(State state);
173 // Updates the error state, signaling if necessary.
179 // Returns the current state of the session. See the enum above for details.
180 // Each time the state changes, we will fire this signal.
181 State state() const { return state_; function in class:cricket::BaseSession
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 271 // Process the final state transition.
288 generateNode(BE, Pred->State, Pred);
415 Pred->State, Pred);
443 const ProgramState *State,
447 ExplodedNode *Node = G->getNode(Loc, State, &IsNew);
468 GenericNodeBuilderImpl::generateNodeImpl(const ProgramState *state,
475 ExplodedNode *node = engine.getGraph().getNode(programPoint, state, &isNew);
489 const ProgramState *State,
495 ExplodedNode *N = C.Eng.G->getNode(Loc, State, &IsNew);
550 ExplodedNode *Succ = C.Eng.G->getNode(Loc, N->State, &IsNew)
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiWatchdogStateMachine.java 42 import com.android.internal.util.State;
117 * Indicates the wifi network state has changed. Passed w/ original intent
187 * This is set by the blacklisted state and reset when connected to a new AP.
197 * STATE MAP
384 pw.print("State " + getCurrentState());
483 log("Resetting watchdog state...");
562 class DefaultState extends State {
574 log("Caught message " + msg.what + " in state " +
581 class WatchdogDisabledState extends State {
594 class WatchdogEnabledState extends State {
    [all...]
  /bootable/recovery/edify/
main.c 43 State state; local
44 state.cookie = NULL;
45 state.script = strdup(expr_str);
46 state.errmsg = NULL;
48 result = Evaluate(&state, e);
49 free(state.errmsg);
50 free(state.script);
203 State state; local
    [all...]
  /dalvik/hit/src/com/android/hit/
ClassObj.java 48 public final void resolveReferences(State state) {
82 Instance instance = state.findReference(id);
107 ClassObj superclass = state.findClass(mSuperclassId);
196 State state = mHeap.mState; local
216 Instance instance = state.findReference(id);
State.java 23 * State is a snapshot of all of the heaps, and related meta-data, for
29 public class State {
33 public State() {

Completed in 2350 milliseconds

<<11121314151617181920>>