/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
AdapterProperties.java | 432 private void updateProfileConnectionState(int profile, int newState, int oldState) { 439 int newHashState = newState; 457 if (newState == currHashState) { 459 } else if (newState == BluetoothProfile.STATE_CONNECTED || 460 (newState == BluetoothProfile.STATE_CONNECTING &&
|
/packages/apps/FMRadio/src/com/android/fmradio/ |
FmRecordActivity.java | 386 int newState = mService.getRecorderState(); 387 Log.d(TAG, "handleMessage, record state changed: newState = " + newState 390 && newState == FmRecorder.STATE_RECORDING) { 393 && newState == FmRecorder.STATE_IDLE) {
|
/external/nist-sip/java/gov/nist/javax/sip/stack/ |
SIPTransaction.java | 522 * @param newState 525 public void setState(TransactionState newState) { 528 if (newState != TransactionState.TERMINATED 529 && newState != TransactionState.CONFIRMED) 530 newState = TransactionState.COMPLETED; 533 if (newState != TransactionState.TERMINATED) 534 newState = TransactionState.CONFIRMED; 537 currentState = newState; 539 newState = currentState; 542 sipStack.getStackLogger().logDebug("Transaction:setState " + newState [all...] |
/frameworks/base/core/java/android/app/backup/ |
BackupAgent.java | 189 * <code>newState</code>. 206 * @param newState An open, read/write ParcelFileDescriptor pointing to an 212 ParcelFileDescriptor newState) throws IOException; 219 * the final state to the <code>newState</code> file descriptor. 240 * @param newState An open, read/write ParcelFileDescriptor pointing to an 246 ParcelFileDescriptor newState) throws IOException; 612 ParcelFileDescriptor newState, 621 BackupAgent.this.onBackup(oldState, output, newState); 645 ParcelFileDescriptor newState, 653 BackupAgent.this.onRestore(input, appVersionCode, newState); [all...] |
/frameworks/base/core/java/android/os/storage/ |
StorageManager.java | 98 public void onStorageStateChanged(String path, String oldState, String newState) { 101 mListeners.get(i).sendStorageStateChanged(path, oldState, newState); 245 public String newState; 251 newState = newS; 274 mStorageEventListener.onStorageStateChanged(ev.path, ev.oldState, ev.newState); 291 void sendStorageStateChanged(String path, String oldState, String newState) { 292 StorageStateChangedStorageEvent e = new StorageStateChangedStorageEvent(path, oldState, newState);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/ |
IccCardProxy.java | 512 private void setExternalState(State newState, boolean override) { 519 if (!override && newState == mExternalState) { 520 loge("setExternalState: !override and newstate unchanged from " + newState); 523 mExternalState = newState; 573 private void setExternalState(State newState) { 574 setExternalState(newState, false); [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/hdp/ |
HealthService.java | 255 int newState; 256 newState = convertHalChannelState(channelStateEvent.mState); 257 if (newState == BluetoothHealth.STATE_CHANNEL_DISCONNECTED && 270 newState = convertHalChannelState(channelStateEvent.mState); 271 if (newState == BluetoothHealth.STATE_CHANNEL_CONNECTED) { 283 callHealthChannelCallback(chan.mConfig, chan.mDevice, newState, 285 chan.mState = newState; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LayoutActionBar.java | 489 boolean newState = mZoomRealSizeButton.getSelection(); 490 if (rescaleToReal(newState)) { 491 mZoomOutButton.setEnabled(!newState); 492 mZoomResetButton.setEnabled(!newState); 493 mZoomInButton.setEnabled(!newState); 494 mZoomFitButton.setEnabled(!newState); 496 mZoomRealSizeButton.setSelection(!newState);
|
/developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/ |
BluetoothLeService.java | 73 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) { 75 if (newState == BluetoothProfile.STATE_CONNECTED) { 84 } else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
|
/developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/ |
BluetoothLeService.java | 73 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) { 75 if (newState == BluetoothProfile.STATE_CONNECTED) { 84 } else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
|
/development/samples/browseable/BluetoothLeGatt/src/com.example.android.bluetoothlegatt/ |
BluetoothLeService.java | 73 public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) { 75 if (newState == BluetoothProfile.STATE_CONNECTED) { 84 } else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
LocalBluetoothProfileManager.java | 233 int newState = intent.getIntExtra(BluetoothProfile.EXTRA_STATE, 0); 235 if (newState == BluetoothProfile.STATE_DISCONNECTED && 240 cachedDevice.onProfileStateChanged(mProfile, newState);
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
CallLogManager.java | 100 public void onCallStateChanged(Call call, int oldState, int newState) { 103 newState == CallState.DISCONNECTED || newState == CallState.ABORTED;
|
/frameworks/base/docs/html/guide/topics/data/ |
backup.jd | 328 onBackup()} was called (as defined by {@code newState}, below, or from {@link 338 <dt>{@code newState}</dt> 344 onBackup()} method. If you do not write your backup data to {@code newState}, then {@code oldState} 357 {@code newState} (see step 3). The easiest way to record the state of a file is with its 418 the {@code newState} {@link android.os.ParcelFileDescriptor}. The Backup Manager retains this object 425 <p>The following example saves a representation of the current data into {@code newState} using 428 FileOutputStream outstream = new FileOutputStream(newState.getFileDescriptor()); 478 <dt>{@code newState}</dt> 483 onBackup()} is called. Recall that you must also write the same {@code newState} object in the 516 {@code newState} parameter the same as you do during {@lin [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/ |
DebuggerScript.js | 209 DebuggerScript.setPauseOnExceptionsState = function(newState) 211 DebuggerScript._pauseOnExceptionsState = newState; 213 if (DebuggerScript.PauseOnExceptionsState.PauseOnAllExceptions === newState) 218 if (DebuggerScript.PauseOnExceptionsState.PauseOnUncaughtExceptions === newState)
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
drawtex.c | 50 if (ctx->NewState)
|
/external/chromium_org/ui/file_manager/video_player/js/cast/ |
cast_video_element.js | 473 var newState = media.playerState; 474 if (newState === chrome.cast.media.PlayerState.BUFFERING || 475 newState === chrome.cast.media.PlayerState.PLAYING) { 483 this.currentMediaPlayerState_ = newState;
|
/external/mesa3d/src/mesa/main/ |
drawtex.c | 50 if (ctx->NewState)
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
CaptureSequencer.h | 63 void notifyAutoExposure(uint8_t newState, int triggerId);
|
/packages/apps/Camera/src/com/android/camera/ui/ |
Switch.java | 309 boolean newState; 313 newState = xvel > 0; 315 newState = getTargetCheckedState(); 317 animateThumbToCheckedState(newState);
|
/packages/apps/Camera2/src/com/android/camera/ui/ |
Switch.java | 300 boolean newState; 304 newState = xvel > 0; 306 newState = getTargetCheckedState(); 308 animateThumbToCheckedState(newState);
|
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountCheckSettingsFragment.java | 216 * @param newState The new progress state being reported 218 private void reportProgress(int newState, MessagingException ex) { 219 mState = newState; 226 switch (newState) {
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
CameraControlPane.java | 565 private void setSessionState(SessionState newState) { 566 mSessionState = newState; 603 private void setCameraState(CameraState newState) { 604 mCameraState = newState;
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
mmstream.idl | 108 [in] STREAM_STATE NewState);
|
/external/pdfium/core/src/fdrm/crypto/ |
fx_crypt_aes.cpp | 654 unsigned int newstate[4]; local 682 unsigned int newstate[6]; local 718 unsigned int newstate[8]; local 772 unsigned int newstate[4]; local 800 unsigned int newstate[6]; local 836 unsigned int newstate[8]; local [all...] |