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

123456

/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
H A DBluetoothGattCallback.java31 * @param newState Returns the new connection state. Can be one of
36 int newState) {
35 onConnectionStateChange(BluetoothGatt gatt, int status, int newState) argument
/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
H A DSharedPreferencesBackupHelper.java95 ParcelFileDescriptor newState) {
111 performBackup_checked(oldState, data, newState, files, prefGroups);
94 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 DMountServiceListener.java38 * @param newState The new state of the volume.
42 void onStorageStateChange(String path, String oldState, String newState) { argument
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
/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/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
83 + stateToString(state) + " to " + stateToString(newState));
86 state = newState;
/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/libs/storage/
H A DIMountServiceListener.cpp42 String16 newState = data.readString16(); local
43 onStorageStateChanged(path, oldState, newState);
/frameworks/base/core/java/android/app/
H A DIBackupAgent.aidl41 * @param newState Read-write file, empty when onBackup() is called,
46 * data has been written to the data and newState files.
53 in ParcelFileDescriptor newState,
67 * @param newState Read-write file, empty when onRestore() is called,
80 int appVersionCode, in ParcelFileDescriptor newState,
/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/include/storage/
H A DIMountServiceListener.h31 const String16& oldState, const String16& newState) = 0;

Completed in 877 milliseconds

123456