HomeSort by relevance Sort by last modified time
    Searched refs:newState (Results 1 - 25 of 285) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/bluetooth/
IBluetoothCallback.aidl 27 void onBluetoothStateChange(int prevState, int newState);
BluetoothHealthCallback.java 56 * @param newState The new state of the channel.
62 BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd,
65 "prevState:" + prevState + "newState:" + newState + "ParcelFd:" + fd +
  /frameworks/base/core/java/android/app/backup/
BackupHelper.java 42 * <code>data</code>, and fill in <code>newState</code> with the state as it
49 * written during this helper's previous backup operation, and the {@code newState}
54 * the {@code newState} file descriptors.</p>
64 * @param newState An open, read/write {@link android.os.ParcelFileDescriptor} pointing to an
70 ParcelFileDescriptor newState);
97 * <strong>Note:</strong> The helper should not close or seek the {@code newState}
100 * @param newState A {@link android.os.ParcelFileDescriptor} to which the new state will be
103 public void writeNewStateDescription(ParcelFileDescriptor newState);
BackupAgentHelper.java 65 ParcelFileDescriptor newState) throws IOException {
66 mDispatcher.performBackup(oldState, data, newState);
73 public void onRestore(BackupDataInput data, int appVersionCode, ParcelFileDescriptor newState)
75 mDispatcher.performRestore(data, appVersionCode, newState);
FullBackupAgent.java 32 ParcelFileDescriptor newState) throws IOException {
37 public void onRestore(BackupDataInput data, int appVersionCode, ParcelFileDescriptor newState)
BackupHelperDispatcher.java 46 ParcelFileDescriptor newState) throws IOException {
53 FileDescriptor newStateFD = newState.getFileDescriptor();
62 doOneBackup(oldState, data, newState, header, helper);
76 doOneBackup(oldState, data, newState, header, helper);
81 ParcelFileDescriptor newState, Header header, BackupHelper helper)
84 FileDescriptor newStateFD = newState.getFileDescriptor();
95 helper.performBackup(oldState, data, newState);
106 ParcelFileDescriptor newState)
139 helper.writeNewStateDescription(newState);
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
IFlyoutListener.java 21 * @param newState the new state
23 void stateChanged(int oldState, int newState);
  /packages/apps/Phone/src/com/android/phone/
CdmaPhoneCallState.java 92 public void setCurrentCallState(PhoneCallState newState) {
94 mCurrentCallState = newState;
121 public void setThreeWayCallOrigState(boolean newState) {
122 mThreeWayCallOrigStateDialing = newState;
135 public void setAddCallMenuStateAfterCallWaiting(boolean newState) {
136 mAddCallMenuStateAfterCW = newState;
  /frameworks/base/core/tests/coretests/src/android/os/storage/
StorageListener.java 34 public void onStorageStateChanged(String path, String oldState, String newState) {
35 if (localLOGV) Log.i(TAG, "Storage state changed from " + oldState + " to " + newState);
38 if (mTargetState.equals(newState)) {
  /hardware/invensense/mlsdk/mllite/
mlstates.h 46 typedef inv_error_t(*state_change_callback_t) (unsigned char newState);
49 inv_error_t inv_state_transition(unsigned char newState);
53 inv_error_t inv_run_state_callbacks(unsigned char newState);
mlstates.c 110 * @brief Perform a transition from the current state to newState.
115 * @param newState state we are transitioning to.
118 inv_error_t inv_state_transition(unsigned char newState)
122 if (newState == INV_STATE_SERIAL_CLOSED) {
124 } else if (newState == INV_STATE_SERIAL_OPENED) {
126 } else if (((newState == INV_STATE_DMP_OPENED) &&
130 ((newState == INV_STATE_DMP_STARTED) &&
137 inv_state_name(newState));
145 inv_state_name(newState)));
146 result = inv_run_state_callbacks(newState);
    [all...]
  /frameworks/base/core/java/android/os/storage/
MountServiceListener.java 38 * @param newState The new state of the volume.
42 void onStorageStateChange(String path, String oldState, String newState) {
StorageEventListener.java 36 * @param newState the old state as returned by {@link android.os.Environment#getExternalStorageState()}.
38 public void onStorageStateChanged(String path, String oldState, String newState) {
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
FileHelperExampleAgent.java 78 ParcelFileDescriptor newState) throws IOException {
81 super.onBackup(oldState, data, newState);
91 ParcelFileDescriptor newState) throws IOException {
95 super.onRestore(data, appVersionCode, newState);
  /external/webkit/LayoutTests/http/tests/appcache/resources/
fail-on-update-2.php 6 function setState($newState, $file)
8 file_put_contents($file, $newState);
fail-on-update.php 6 function setState($newState, $file)
8 file_put_contents($file, $newState);
  /external/webkit/Source/WebCore/history/mac/
HistoryItemMac.mm 40 id newState = [statePList copy];
41 m_viewState = newState;
42 [newState release];
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
DictionaryListInterfaceState.java 54 final State newState;
56 newState = null == state ? new State() : state;
57 newState.mOpen = true;
58 newState.mStatus = status;
59 mWordlistToState.put(wordlistId, newState);
  /cts/tests/tests/app/src/android/app/backup/cts/
BackupAgentTest.java 39 ParcelFileDescriptor newState) throws IOException {
44 ParcelFileDescriptor newState) throws IOException {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
IPolicyService.aidl 22 void setAccountHoldFlag(long accountId, boolean newState);
  /frameworks/base/core/java/android/app/
IBackupAgent.aidl 41 * @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 in ParcelFileDescriptor newState, int token, IBackupManager callbackBinder);
  /hardware/invensense/libsensors_iio/software/core/mpl/
fusion_9axis.h 24 inv_error_t inv_9x_fusion_state_change(unsigned char newState);
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
JniCallbacks.java 64 void bondStateChangeCallback(int status, byte[] address, int newState) {
65 mBondStateMachine.bondStateChangeCallback(status, address, newState);
68 void aclStateChangeCallback(int status, byte[] address, int newState) {
69 mRemoteDevices.aclStateChangeCallback(status, address, newState);
BondStateMachine.java 117 int newState = msg.arg1;
119 if (newState == BluetoothDevice.BOND_BONDING)
121 sendIntent(dev, newState, 0);
126 Log.e(TAG, "In stable state, received invalid newState: " + newState);
172 int newState = msg.arg1;
174 sendIntent(dev, newState, reason);
175 if(newState != BluetoothDevice.BOND_BONDING )
187 if (newState == BluetoothDevice.BOND_NONE)
192 else if (newState == BluetoothDevice.BOND_BONDED
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
IccCardApplicationStatus.java 132 AppState newState;
135 case 0: newState = AppState.APPSTATE_UNKNOWN; break;
136 case 1: newState = AppState.APPSTATE_DETECTED; break;
137 case 2: newState = AppState.APPSTATE_PIN; break;
138 case 3: newState = AppState.APPSTATE_PUK; break;
139 case 4: newState = AppState.APPSTATE_SUBSCRIPTION_PERSO; break;
140 case 5: newState = AppState.APPSTATE_READY; break;
142 newState = AppState.APPSTATE_UNKNOWN;
145 return newState;

Completed in 786 milliseconds

1 2 3 4 5 6 7 8 91011>>