Home
last modified time | relevance | path

Searched refs:mCmd (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Messaging/src/com/android/messaging/util/
DNotificationPlayer.java74 public Command mCmd; field in NotificationPlayer.CreationAndCompletionThread
77 mCmd = cmd; in CreationAndCompletionThread()
90 player.setAudioStreamType(mCmd.stream); in run()
91 player.setDataSource(Factory.get().getApplicationContext(), mCmd.uri); in run()
92 player.setLooping(mCmd.looping); in run()
93 player.setVolume(mCmd.volume, mCmd.volume); in run()
95 if ((mCmd.uri != null) && (mCmd.uri.getEncodedPath() != null) in run()
96 && (mCmd.uri.getEncodedPath().length() > 0)) { in run()
97 audioManager.requestAudioFocus(null, mCmd.stream, in run()
98 mCmd.looping ? AudioManager.AUDIOFOCUS_GAIN_TRANSIENT in run()
[all …]
/packages/apps/Launcher3/tests/src/com/android/launcher3/util/rule/
DShellCommandRule.java44 private final String mCmd; field in ShellCommandRule
51 mCmd = cmd; in ShellCommandRule()
67 UiDevice.getInstance(getInstrumentation()).executeShellCommand(mCmd); in apply()
70 "Failed command: " + mCmd + ", result: " + result, in apply()