HomeSort by relevance Sort by last modified time
    Searched defs:oldState (Results 1 - 25 of 52) sorted by null

1 2 3

  /frameworks/base/libs/storage/
IMountServiceListener.cpp 41 String16 oldState = data.readString16();
43 onStorageStateChanged(path, oldState, newState);
  /hardware/ti/wlan/wl1271/utils/
fsm.c 250 TI_UINT8 oldState;
265 oldState = *currentState;
270 if ((*pFsm->stateEventMatrix[(oldState * pFsm->ActiveNoOfEvents) + event].actionFunc) == NULL)
274 status = (*pFsm->stateEventMatrix[(oldState * pFsm->ActiveNoOfEvents) + event].actionFunc)(pData);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
ShiftKeyState.java 31 int oldState = mState;
32 if (oldState == PRESSING) {
34 } else if (oldState == PRESSING_ON_SHIFTED) {
38 Log.d(TAG, mName + ".onOtherKeyPressed: " + toString(oldState) + " > " + this);
42 int oldState = mState;
45 Log.d(TAG, mName + ".onPressOnShifted: " + toString(oldState) + " > " + this);
AlphabetShiftState.java 35 final int oldState = mState;
37 switch (oldState) {
49 switch (oldState) {
61 Log.d(TAG, "setShifted(" + newShiftState + "): " + toString(oldState) + " > " + this);
65 final int oldState = mState;
67 switch (oldState) {
79 Log.d(TAG, "setShiftLocked(" + newShiftLockState + "): " + toString(oldState)
84 final int oldState = mState;
87 Log.d(TAG, "setAutomaticShifted: " + toString(oldState) + " > " + this);
ModifierKeyState.java 37 final int oldState = mState;
40 Log.d(TAG, mName + ".onPress: " + toString(oldState) + " > " + this);
44 final int oldState = mState;
47 Log.d(TAG, mName + ".onRelease: " + toString(oldState) + " > " + this);
51 final int oldState = mState;
52 if (oldState == PRESSING)
55 Log.d(TAG, mName + ".onOtherKeyPressed: " + toString(oldState) + " > " + this);
  /frameworks/wilhelm/src/itf/
IPlay.c 39 SLuint32 oldState = thiz->mState;
40 if (state != oldState) {
47 switch ((oldState << 2) | state) {
52 // no-op, and unreachable due to earlier "if (state != oldState)"
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 80 String oldState;
81 oldState = data.readString();
84 this.onStorageStateChanged(path, oldState, newState);
131 * @param oldState The old state of the volume.
136 public void onStorageStateChanged(String path, String oldState, String newState)
143 _data.writeString(oldState);
170 * @param oldState The old state of the volume.
174 public void onStorageStateChanged(String path, String oldState, String newState)
StorageManager.java 89 public void onStorageStateChanged(String path, String oldState, String newState) {
92 mListeners.get(i).sendStorageStateChanged(path, oldState, newState);
235 public String oldState;
241 oldState = oldS;
265 mStorageEventListener.onStorageStateChanged(ev.path, ev.oldState, ev.newState);
282 void sendStorageStateChanged(String path, String oldState, String newState) {
283 StorageStateChangedStorageEvent e = new StorageStateChangedStorageEvent(path, oldState, newState);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
DockEventReceiver.java 85 int oldState = intent.getIntExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, 0);
100 oldState != BluetoothProfile.STATE_DISCONNECTING) {
LocalBluetoothProfileManager.java 216 int oldState = intent.getIntExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, 0);
218 oldState == BluetoothProfile.STATE_CONNECTING) {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
StateManager.java 190 void switchState(ActivityState oldState,
192 Log.v(TAG, "switchState " + oldState + ", " + klass);
193 if (oldState != mStack.peek().activityState) {
195 + " is not at the top of the stack: " + oldState + ", "
200 if (mIsResumed) oldState.onPause();
201 oldState.onDestroy();
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
FlyoutControlComposite.java 410 int oldState = state;
422 m_listener.stateChanged(oldState, state);
    [all...]
  /external/skia/src/animator/
SkAnimateActive.cpp 81 SkActive::SkState& oldState = fState[inner];
83 testState.fBegin == oldState.fBegin) {
87 testState.fSave = oldState.fSave;
88 if (oldState.fUnpostedEndEvent) {
90 fMaker.postOnEnd(oldGuard, oldState.fBegin + oldState.fDuration);
  /system/vold/
Volume.cpp 175 int oldState = mState;
177 if (oldState == state) {
182 if ((oldState == Volume::State_Pending) && (state != Volume::State_Idle)) {
189 oldState, stateToStr(oldState), mState, stateToStr(mState));
192 getMountpoint(), oldState, stateToStr(oldState), mState,
  /frameworks/base/core/java/android/server/
BluetoothBondState.java 138 int oldState = getBondState(address);
139 if (oldState == state) {
145 if (oldState == BluetoothDevice.BOND_BONDING) {
169 Log.d(TAG, address + " bond state " + oldState + " -> " + state
175 intent.putExtra(BluetoothDevice.EXTRA_PREVIOUS_BOND_STATE, oldState);
  /frameworks/base/core/tests/coretests/src/android/os/storage/
AsecTests.java 528 String oldState;
545 public void onStorageStateChanged(String path, String oldState, String newState) {
546 if (localLOGV) Log.i(TAG, "Storage state changed from " + oldState + " to " + newState);
547 this.oldState = oldState;
610 public void onStorageStateChanged(String path, String oldState, String newState) {
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 107 int oldState = (dfa_state < -1) ? (-2 -dfa_state) : dfa_state;
111 int[][] tmp1 = gotoTable[oldState];
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmCallTracker.java 387 Phone.State oldState = state;
398 if (state == Phone.State.IDLE && oldState != state) {
401 } else if (oldState == Phone.State.IDLE && oldState != state) {
406 if (state != oldState) {
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipPhoneBase.java 448 State oldState = state;
459 if (state != oldState) {
  /hardware/ril/reference-ril/
reference-ril.c     [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java     [all...]
  /external/webkit/Source/WebCore/html/
HTMLMediaElement.cpp     [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
WebViewHost.cpp 751 bool oldState = webkit_support::MessageLoopNestableTasksAllowed();
755 webkit_support::MessageLoopSetNestableTasksAllowed(oldState);
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
BaseCommands.java 590 RadioState oldState;
598 oldState = mState;
601 if (oldState == mState) {
608 if (mState.isAvailable() && !oldState.isAvailable()) {
614 if (!mState.isAvailable() && oldState.isAvailable()) {
619 if (mState.isOn() && !oldState.isOn()) {
625 && !((!oldState.isOn() || !oldState.isAvailable()))
IccCard.java 521 State oldState, newState;
524 oldState = mState;
531 if (oldState != State.READY && newState == State.READY) {
543 (oldState != State.PIN_REQUIRED && newState == State.PIN_REQUIRED)
544 || (oldState != State.PUK_REQUIRED && newState == State.PUK_REQUIRED));
545 transitionedIntoAbsent = (oldState != State.ABSENT && newState == State.ABSENT);
546 transitionedIntoNetworkLocked = (oldState != State.NETWORK_LOCKED
548 transitionedIntoPermBlocked = (oldState != State.PERM_DISABLED
550 isIccCardRemoved = (oldState != null &&
551 oldState.iccCardExist() && newState == State.ABSENT)
    [all...]

Completed in 1055 milliseconds

1 2 3