HomeSort by relevance Sort by last modified time
    Searched full:oldstate (Results 101 - 125 of 260) sorted by null

1 2 3 45 6 7 8 91011

  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterProperties.java 416 private void updateProfileConnectionState(int profile, int newState, int oldState) {
434 // decrement numDevices but maintain oldState if it is Connected or
447 } else if (numDev == 1 && oldState == currHashState) {
449 } else if (numDev > 1 && oldState == currHashState) {
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
CallButtonPresenter.java 98 public void onStateChange(InCallState oldState, InCallState newState, CallList callList) {
111 if (oldState == InCallState.OUTGOING && mCall != null) {
146 public void onIncomingCall(InCallState oldState, InCallState newState, Call call) {
147 onStateChange(oldState, newState, CallList.getInstance());
CallCardPresenter.java 208 public void onIncomingCall(InCallState oldState, InCallState newState, Call call) {
210 onStateChange(oldState, newState, CallList.getInstance());
214 public void onStateChange(InCallState oldState, InCallState newState, CallList callList) {
241 (oldState == InCallState.INCOMING || newState == InCallState.INCOMING)) {
338 maybeSendAccessibilityEvent(oldState, newState, primaryChanged);
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
PhoneStateBroadcaster.java 45 public void onCallStateChanged(Call call, int oldState, int newState) {
  /prebuilts/misc/windows/sdl2/test/
testautomation_mouse.c 257 int oldState;
261 oldState = SDL_ShowCursor(SDL_QUERY);
266 SDLTest_AssertCheck(result == oldState, "Validate result from SDL_ShowCursor(%s), expected: %i, got: %i",
267 (state == SDL_ENABLE) ? "SDL_ENABLE" : "SDL_DISABLE", oldState, result);
  /frameworks/base/core/java/android/app/
IBackupAgent.aidl 33 * @param oldState Read-only file containing the description blob of the
51 void doBackup(in ParcelFileDescriptor oldState,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
CarBatteryController.java 152 int oldState = intent.getIntExtra(BluetoothProfile.EXTRA_PREVIOUS_STATE, -1);
154 + oldState + " -> " + newState);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/
StorageResetFragment.java 289 public void onStorageStateChanged(String path, String oldState, String newState) {
294 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) {
  /packages/providers/BlockedNumberProvider/src/com/android/providers/blockednumber/
BlockedNumberBackupAgent.java 58 public void onBackup(ParcelFileDescriptor oldState, BackupDataOutput backupDataOutput,
63 new DataInputStream(new FileInputStream(oldState.getFileDescriptor()));
  /external/libvncserver/webclients/novnc/include/
rfb.js 131 'onUpdateState': function () { }, // onUpdateState(rfb, state, oldstate, statusMsg): state update/change
387 var oldstate = this._rfb_state;
389 if (state === oldstate) {
425 if (oldstate === 'fatal') {
430 var fullmsg = "New state '" + state + "', was '" + oldstate + "'." + cmsg;
437 if (oldstate === 'failed' && state === 'disconnected') {
452 if (oldstate === 'disconnected' || oldstate === 'failed') {
474 if (oldstate === 'disconnected') {
476 } else if (oldstate === 'normal')
    [all...]
  /frameworks/base/docs/html/guide/topics/data/
backup.jd 323 <dt>{@code oldState}</dt>
342 returned as {@code oldState} the next time the Backup Manager calls your {@link
344 onBackup()} method. If you do not write your backup data to {@code newState}, then {@code oldState}
355 <li>Check whether your data has changed since the last backup by comparing {@code oldState} to
356 your current data. How you read data in {@code oldState} depends on how you originally wrote it to
359 oldState}:
361 // Get the oldState input stream
362 FileInputStream instream = new FileInputStream(oldState.getFileDescriptor());
383 <li>If your data has changed, compared to {@code oldState}, write the current data to
420 {@code oldState} the next time it calls {@lin
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherBackupHelper.java 204 * @param oldState notes from the last backup
209 public void performBackup(ParcelFileDescriptor oldState, BackupDataOutput data,
213 Journal in = readJournal(oldState);
285 * @return true if the backup corresponding to oldstate can be successfully applied
288 private boolean isBackupCompatible(Journal oldState) {
290 DeviceProfieData oldProfile = oldState.profile;
    [all...]
  /external/libxml2/
relaxng.c 3035 xmlAutomataStatePtr oldstate = ctxt->state; local
3077 xmlAutomataStatePtr oldstate = ctxt->state; local
3124 xmlAutomataStatePtr oldstate = ctxt->state; local
3135 xmlAutomataStatePtr oldstate; local
3151 xmlAutomataStatePtr oldstate; local
3171 xmlAutomataStatePtr oldstate = ctxt->state; local
3205 xmlAutomataStatePtr oldstate; local
8146 xmlRelaxNGValidStatePtr state, oldstate; local
9288 xmlRelaxNGValidStatePtr oldstate; local
9839 xmlRelaxNGValidStatePtr oldstate = NULL, state; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/display/
LocalDisplayAdapter.java 441 final int oldState = mState;
459 int currentState = oldState;
460 if (Display.isSuspendedState(oldState)
461 || oldState == Display.STATE_UNKNOWN) {
466 || oldState == Display.STATE_DOZE_SUSPEND) {
  /cts/tests/tests/telecom/src/android/telecom/cts/
RemoteConferenceTest.java 214 public void onStateChanged(RemoteConference conference, int oldState, int newState) {
215 super.onStateChanged(conference, oldState, newState);
216 callbackInvoker.invoke(conference, oldState, newState);
  /frameworks/av/services/audiopolicy/enginedefault/src/
Engine.cpp 80 int oldState = mPhoneState;
83 if (!is_state_in_call(oldState) && is_state_in_call(state)) {
87 } else if (is_state_in_call(oldState) && !is_state_in_call(state)) {
  /frameworks/base/core/java/android/app/backup/
BlobBackupHelper.java 245 final ArrayMap<String, Long> oldState = readOldState(oldStateFd);
257 Long oldChecksum = oldState.get(key);
BackupDataOutput.java 53 * public void {@link BackupAgent#onBackup(ParcelFileDescriptor, BackupDataOutput, ParcelFileDescriptor) onBackup(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState)}
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
ImsPhoneBase.java 538 PhoneConstants.State oldState = mState;
549 if (mState != oldState) {
ImsPhoneCallTracker.java 95 void onPhoneStateChanged(PhoneConstants.State oldState, PhoneConstants.State newState);
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
SipPhoneBase.java 510 PhoneConstants.State oldState = mState;
521 if (mState != oldState) {
  /packages/apps/Contacts/src/com/android/contacts/editor/
CompactContactEditorFragment.java 211 public void onRebindEditorsForNewContact(RawContactDelta oldState,
215 rebindEditorsForNewContact(oldState, oldAccount, newAccount);
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationActivity.java 283 public void onConversationContactPickerUiStateChanged(final int oldState, final int newState,
285 Assert.isTrue(oldState != newState);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsBackupHelper.java 51 public void performBackup(ParcelFileDescriptor oldState, BackupDataOutput data,
  /packages/apps/DeskClock/src/com/android/deskclock/
DeskClockBackupAgent.java 53 public void onBackup(ParcelFileDescriptor oldState, BackupDataOutput data,

Completed in 2152 milliseconds

1 2 3 45 6 7 8 91011