Lines Matching full:app
43 """Class to manage microphone app in container."""
56 """Starts microphone app to start recording.
58 Starts microphone app. The app starts recorder itself after start up.
60 @raises: ArcMicrophoneResourceException if microphone app is not ready
66 'Microphone app is not ready yet.')
70 'Microphone app is already started.')
73 # each start of the app.
80 """Stops microphone app and gets recorded audio file from container.
82 Stops microphone app.
88 @raises: ArcMicrophoneResourceException if microphone app is not started
107 """Checks if microphone app is recording audio.
109 We use the time stamp of app start up time to determine if app is still
112 @returns: True if microphone app is recording, False otherwise.
124 """Grants permissions to microphone app."""
132 """Starts microphone app."""
137 """Stops microphone app.
139 Stops the microphone app process.
169 """Class to manage Play Music app in container."""
203 """Starts Play Music app to play an audio file.
207 @raises ArcPlayMusicResourceException: Play Music app is not ready or
213 'Play Music app is not ready yet.')
220 # each start of the app.
226 """Grants permissions to Play Music app."""
234 """Starts Play Music app playing an audio file.
251 """Stops Play Music app.
253 Stops the Play Music app by media key event.
272 """Class to manage Play Video app in container."""
288 """Copies file into the container and starts the video player app.
296 'Play Video app is not ready yet.')
306 # each start of the app.
323 """Starts Play Video app to play a video file.
329 @raises ArcPlayVideoResourceException: Play Video app is not ready or
343 """Grants permissions to Play Video app."""
349 """Starts Play Video app playing a video file.
360 """Pauses Play Video app.
362 Pauses the Play Video app by media key event.
369 """Stops Play Video app.
371 Stops the Play Video app by media key event.
388 microphone: The instance of ArcMicrophoneResource for microphone app.
389 play_music: The instance of ArcPlayMusicResource for music app.
390 play_video: The instance of ArcPlayVideoResource for video app.