OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:previousState
(Results
1 - 5
of
5
) sorted by null
/libcore/luni/src/main/native/
java_io_Console.cpp
27
static jint Console_setEchoImpl(JNIEnv* env, jclass, jboolean on, jint
previousState
) {
34
state.c_lflag =
previousState
;
36
previousState
= state.c_lflag;
43
return
previousState
;
/libcore/luni/src/main/java/java/io/
Console.java
138
int
previousState
= setEcho(false, 0);
144
setEcho(true,
previousState
);
149
private static int setEcho(boolean on, int
previousState
) {
151
return setEchoImpl(on,
previousState
);
156
private static native int setEchoImpl(boolean on, int
previousState
) throws IOException;
/cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothToggleActivity.java
125
int
previousState
= intent.getIntExtra(BluetoothAdapter.EXTRA_PREVIOUS_STATE, -1);
127
Log.i(TAG, "Previous state: " +
previousState
+ " New state: " + newState);
130
&& (BluetoothAdapter.STATE_ON ==
previousState
131
|| BluetoothAdapter.STATE_TURNING_OFF ==
previousState
)) {
136
&& (BluetoothAdapter.STATE_OFF ==
previousState
137
|| BluetoothAdapter.STATE_TURNING_ON ==
previousState
)) {
/packages/apps/Contacts/src/com/android/contacts/voicemail/
VoicemailPlaybackPresenter.java
520
boolean
previousState
= mView.isSpeakerPhoneOn();
521
mView.setSpeakerPhoneOn(!
previousState
);
522
if (mPlayer.isPlaying() &&
previousState
) {
/external/webkit/Source/WebCore/xml/
XMLHttpRequest.cpp
399
State
previousState
= m_state;
440
if (
previousState
!= OPENED)
[
all
...]
Completed in 74 milliseconds