OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WIRED_OR_EARPIECE
(Results
1 - 4
of
4
) sorted by null
/packages/services/Telephony/common/src/com/android/services/telephony/common/
AudioMode.java
29
public static int
WIRED_OR_EARPIECE
= EARPIECE | WIRED_HEADSET;
/packages/services/Telephony/src/com/android/phone/
AudioRouter.java
116
// changes
WIRED_OR_EARPIECE
to appropriate single entry WIRED_HEADSET or EARPIECE
176
setAudioMode(AudioMode.
WIRED_OR_EARPIECE
);
244
* Changes
WIRED_OR_EARPIECE
to appropriate single entry WIRED_HEADSET or EARPIECE.
245
* If mode passed it is not
WIRED_OR_EARPIECE
, this is a no-op and simply returns
250
//
WIRED_OR_EARPIECE
so that callers dont have to make a call to check which is supported
252
if (mode == AudioMode.
WIRED_OR_EARPIECE
) {
253
mode = AudioMode.
WIRED_OR_EARPIECE
& mSupportedModes;
/packages/apps/InCallUI/src/com/android/incallui/
CallButtonFragment.java
275
int mode = AudioMode.
WIRED_OR_EARPIECE
;
285
mode = AudioMode.
WIRED_OR_EARPIECE
;
CallButtonPresenter.java
155
newMode = AudioMode.
WIRED_OR_EARPIECE
;
Completed in 170 milliseconds