Searched refs:newState (Results 1 - 25 of 163) sorted by relevance

1234567

/frameworks/base/core/java/android/bluetooth/
H A DIBluetoothCallback.aidl27 void onBluetoothStateChange(int prevState, int newState);
H A DBluetoothHealthCallback.java58 * @param newState The new state of the channel.
65 BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd,
68 "prevState:" + prevState + "newState:" + newState + "ParcelFd:" + fd +
64 onHealthChannelStateChange(BluetoothHealthAppConfiguration config, BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd, int channelId) argument
H A DIBluetoothHealthCallback.aidl30 in BluetoothDevice device, int prevState, int newState, in
/frameworks/base/core/java/android/app/backup/
H A DBackupHelper.java42 * <code>newState</code> with the complete state as it exists now.
48 * written during this helper's previous backup operation, and the {@code newState}
53 * the {@code newState} file descriptors. It is essential that when reading the helper's
67 * @param newState An open, read/write {@link android.os.ParcelFileDescriptor} pointing to an
73 ParcelFileDescriptor newState);
100 * <strong>Note:</strong> The helper should not close or seek the {@code newState}
103 * @param newState A {@link android.os.ParcelFileDescriptor} to which the new state will be
106 public void writeNewStateDescription(ParcelFileDescriptor newState); argument
72 performBackup(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState) argument
H A DBackupAgentHelper.java65 ParcelFileDescriptor newState) throws IOException {
66 mDispatcher.performBackup(oldState, data, newState);
73 public void onRestore(BackupDataInput data, int appVersionCode, ParcelFileDescriptor newState) argument
75 mDispatcher.performRestore(data, appVersionCode, newState);
64 onBackup(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState) argument
H A DFullBackupAgent.java32 ParcelFileDescriptor newState) throws IOException {
37 public void onRestore(BackupDataInput data, int appVersionCode, ParcelFileDescriptor newState) argument
31 onBackup(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState) argument
H A DAbsoluteFileBackupHelper.java54 * need to be backed up, write them to the data stream, and fill in newState with the
58 ParcelFileDescriptor newState) {
60 performBackup_checked(oldState, data, newState, mFiles, mFiles);
57 performBackup(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState) argument
H A DBackupHelperDispatcher.java46 ParcelFileDescriptor newState) throws IOException {
61 doOneBackup(oldState, data, newState, header, helper);
75 doOneBackup(oldState, data, newState, header, helper);
80 ParcelFileDescriptor newState, Header header, BackupHelper helper)
83 FileDescriptor newStateFD = newState.getFileDescriptor();
94 helper.performBackup(oldState, data, newState);
105 ParcelFileDescriptor newState)
138 helper.writeNewStateDescription(newState);
45 performBackup(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState) argument
79 doOneBackup(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState, Header header, BackupHelper helper) argument
104 performRestore(BackupDataInput input, int appVersionCode, ParcelFileDescriptor newState) argument
H A DFileBackupHelperBase.java54 ParcelFileDescriptor newState, String[] files, String[] keys) {
71 FileDescriptor newStateFd = newState.getFileDescriptor();
122 long data, FileDescriptor newState, String[] files, String[] keys);
53 performBackup_checked(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState, String[] files, String[] keys) argument
121 performBackup_native(FileDescriptor oldState, long data, FileDescriptor newState, String[] files, String[] keys) argument
H A DFileBackupHelper.java64 * stream, and fill in <code>newState</code> with the state as it exists
74 ParcelFileDescriptor newState) {
85 performBackup_checked(oldState, data, newState, fullPaths, files);
73 performBackup(ParcelFileDescriptor oldState, BackupDataOutput data, ParcelFileDescriptor newState) argument
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageListener.java34 public void onStorageStateChanged(String path, String oldState, String newState) { argument
35 if (localLOGV) Log.i(TAG, "Storage state changed from " + oldState + " to " + newState);
38 if (mTargetState.equals(newState)) {
/frameworks/base/core/java/android/os/storage/
H A DStorageEventListener.java36 * @param newState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
38 public void onStorageStateChanged(String path, String oldState, String newState) { argument
41 public void onVolumeStateChanged(VolumeInfo vol, int oldState, int newState) { argument
H A DIStorageEventListener.aidl45 * @param newState The new state of the volume. Note: State is one of the
48 void onStorageStateChanged(in String path, in String oldState, in String newState) = 1;
50 void onVolumeStateChanged(in VolumeInfo vol, int oldState, int newState) = 2;
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
H A DDozeMachine.java207 State newState = transitionPolicy(requestedState);
210 Log.i(TAG, "transition: old=" + mState + " req=" + requestedState + " new=" + newState);
213 if (newState == mState) {
217 validateTransition(newState);
220 mState = newState;
222 updatePulseReason(newState, oldState, pulseReason);
223 performTransitionOnComponents(oldState, newState);
224 updateScreenState(newState);
225 updateWakeLockState(newState);
227 resolveIntermediateState(newState);
230 updatePulseReason(State newState, State oldState, int pulseReason) argument
238 performTransitionOnComponents(State oldState, State newState) argument
251 validateTransition(State newState) argument
298 updateWakeLockState(State newState) argument
309 updateScreenState(State newState) argument
346 transitionTo(State oldState, State newState) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DUserState.java69 public boolean setState(int oldState, int newState) { argument
71 setState(newState);
80 public void setState(int newState) { argument
81 if (newState == state) {
85 + stateToString(state) + " to " + stateToString(newState));
86 EventLogTags.writeAmUserStateChanged(mHandle.getIdentifier(), newState);
88 state = newState;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DFlashlightController.java23 void setFlashlight(boolean newState); argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
H A DVoLteServiceStateTest.java41 VoLteServiceState newState = VoLteServiceState.CREATOR.createFromParcel(p);
42 assertEquals(state, newState);
64 VoLteServiceState newState = new VoLteServiceState(state);
65 assertEquals(state, newState);
/frameworks/av/services/camera/libcameraservice/device3/
H A DStatusTracker.cpp97 StateChange newState = { local
103 mPendingChangeQueue.add(newState);
176 const StateChange &newState = mPendingChangeQueue[i]; local
177 ssize_t idx = mStates.indexOfKey(newState.id);
181 mStates.replaceValueAt(idx, newState.state);
183 mIdleFence, newState.fence);
185 ComponentState newState = getDeviceStateLocked(); local
186 if (newState != prevState) {
187 mStateTransitions.add(newState);
189 prevState = newState;
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccCardApplicationStatus.java133 AppState newState;
136 case 0: newState = AppState.APPSTATE_UNKNOWN; break;
137 case 1: newState = AppState.APPSTATE_DETECTED; break;
138 case 2: newState = AppState.APPSTATE_PIN; break;
139 case 3: newState = AppState.APPSTATE_PUK; break;
140 case 4: newState = AppState.APPSTATE_SUBSCRIPTION_PERSO; break;
141 case 5: newState = AppState.APPSTATE_READY; break;
143 newState = AppState.APPSTATE_UNKNOWN;
146 return newState;
/frameworks/base/core/java/android/app/
H A DIBackupAgent.aidl41 * @param newState Read-write file, empty when onBackup() is called,
48 * data has been written to the data and newState files.
55 in ParcelFileDescriptor newState,
69 * @param newState Read-write file, empty when onRestore() is called,
82 int appVersionCode, in ParcelFileDescriptor newState,
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
H A DFakeFlashlightController.java34 public void setFlashlight(boolean newState) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaCall.java115 State newState;
118 newState = stateFromDCState(dc.state);
120 if (newState != mState) {
121 mState = newState;
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceState.java232 private void doStateTransition(int newState) { argument
233 doStateTransition(newState, /*timestamp*/0, NO_CAPTURE_ERROR);
236 private void doStateTransition(int newState, final long timestamp, final int error) { argument
237 if (newState != mCurrentState) {
239 if (newState >= 0 && newState < sStateNames.length) {
240 stateName = sStateNames[newState];
246 if(newState != STATE_ERROR && newState != STATE_IDLE) {
247 if (mCurrentState != newState
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/
H A DPowerNotificationControlsFragment.java61 boolean newState = !isEnabled();
63 MetricsEvent.ACTION_TUNER_POWER_NOTIFICATION_CONTROLS, newState);
65 KEY_SHOW_PNC, newState ? 1 : 0);
66 switchWidget.setChecked(newState);
67 switchText.setText(newState
/frameworks/base/libs/storage/include/storage/
H A DIMountServiceListener.h31 const String16& oldState, const String16& newState) = 0;

Completed in 3866 milliseconds

1234567