/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
D | Engine.cpp | 46 StreamCollection &Engine::getCollection<audio_stream_type_t>() in getCollection() 51 InputSourceCollection &Engine::getCollection<audio_source_t>() in getCollection() 57 const StreamCollection &Engine::getCollection<audio_stream_type_t>() const in getCollection() 62 const InputSourceCollection &Engine::getCollection<audio_source_t>() const in getCollection() 67 Engine::Engine() : mPolicyParameterMgr(new ParameterManagerWrapper()) in Engine() function in android::audio_policy::Engine 75 Engine::~Engine() in ~Engine() 81 status_t Engine::initCheck() in initCheck() 92 Element<Key> *Engine::getFromCollection(const Key &key) const in getFromCollection() 99 status_t Engine::add(const std::string &name, const Key &key) in add() 106 Property Engine::getPropertyForKey(Key key) const in getPropertyForKey() [all …]
|
D | Engine.h | 32 class Engine : public EngineBase, AudioPolicyPluginInterface 35 Engine(); 36 virtual ~Engine(); 100 Engine(const Engine &object); 101 Engine &operator=(const Engine &object);
|
D | EngineInstance.cpp | 41 Engine *EngineInstance::getEngine() const in getEngine() 43 static Engine engine; in getEngine()
|
/frameworks/av/services/audiopolicy/enginedefault/src/ |
D | Engine.h | 45 class Engine : public EngineBase 48 Engine(); 49 virtual ~Engine() = default; 72 Engine(const Engine &object); 73 Engine &operator=(const Engine &object);
|
D | EngineInstance.cpp | 25 return new (std::nothrow) Engine(); in createEngineInstance() 30 delete static_cast<Engine*>(engine); in destroyEngineInstance()
|
D | Engine.cpp | 62 Engine::Engine() in Engine() function in android::audio_policy::Engine 75 status_t Engine::setForceUse(audio_policy_force_use_t usage, audio_policy_forced_cfg_t config) in setForceUse() 145 DeviceVector Engine::getDevicesForStrategyInt(legacy_strategy strategy, in getDevicesForStrategyInt() 476 sp<DeviceDescriptor> Engine::getDeviceForInputSource(audio_source_t inputSource) const in getDeviceForInputSource() 618 void Engine::updateDeviceSelectionCache() in updateDeviceSelectionCache() 629 DeviceVector Engine::getDevicesForProductStrategy(product_strategy_t strategy) const { in getDevicesForProductStrategy() 659 DeviceVector Engine::getOutputDevicesForAttributes(const audio_attributes_t &attributes, in getOutputDevicesForAttributes() 685 DeviceVector Engine::getOutputDevicesForStream(audio_stream_type_t stream, bool fromCache) const in getOutputDevicesForStream() 691 sp<DeviceDescriptor> Engine::getInputDeviceForAttributes(const audio_attributes_t &attr, in getInputDeviceForAttributes()
|
/frameworks/base/tests/Internal/src/android/service/wallpaper/ |
D | WallpaperServiceTest.java | 38 public Engine onCreateEngine() { in testDeliversAmbientModeChanged() 39 return new Engine() { in testDeliversAmbientModeChanged() 47 WallpaperService.Engine engine = service.onCreateEngine(); in testDeliversAmbientModeChanged() 66 public Engine onCreateEngine() { in testDeliversZoomChanged() 67 return new Engine() { in testDeliversZoomChanged() 76 WallpaperService.Engine engine = service.onCreateEngine(); in testDeliversZoomChanged()
|
/frameworks/base/core/java/android/speech/tts/ |
D | TextToSpeech.java | 270 public class Engine { class in TextToSpeech 847 Intent intent = new Intent(Engine.INTENT_ACTION_TTS_SERVICE); in connectToEngine() 1175 params == null ? null : params.get(Engine.KEY_PARAM_UTTERANCE_ID)); in speak() 1243 params == null ? null : params.get(Engine.KEY_PARAM_UTTERANCE_ID)); 1298 params == null ? null : params.get(Engine.KEY_PARAM_UTTERANCE_ID)); 1383 mParams.putInt(Engine.KEY_PARAM_RATE, intRate); 1407 mParams.putInt(Engine.KEY_PARAM_PITCH, intPitch); 1426 mParams.putParcelable(Engine.KEY_PARAM_AUDIO_ATTRIBUTES, 1549 mParams.putString(Engine.KEY_PARAM_VOICE_NAME, voiceName); 1550 mParams.putString(Engine.KEY_PARAM_LANGUAGE, voiceLanguage); [all …]
|
D | TextToSpeechService.java | 36 import android.speech.tts.TextToSpeech.Engine; 409 return getSecureSettingInt(Settings.Secure.TTS_DEFAULT_RATE, Engine.DEFAULT_RATE); in getDefaultSpeechRate() 413 return getSecureSettingInt(Settings.Secure.TTS_DEFAULT_PITCH, Engine.DEFAULT_PITCH); in getDefaultPitch() 724 mVolume = Engine.DEFAULT_VOLUME; in AudioOutputParams() 725 mPan = Engine.DEFAULT_PAN; in AudioOutputParams() 745 Engine.KEY_PARAM_AUDIO_ATTRIBUTES); in createFromParamsBundle() 748 Engine.KEY_PARAM_STREAM, Engine.DEFAULT_STREAM); in createFromParamsBundle() 759 Engine.KEY_PARAM_SESSION_ID, in createFromParamsBundle() 762 Engine.KEY_PARAM_VOLUME, in createFromParamsBundle() 763 Engine.DEFAULT_VOLUME), in createFromParamsBundle() [all …]
|
D | TtsEngines.java | 33 import android.speech.tts.TextToSpeech.Engine; 141 Intent intent = new Intent(Engine.INTENT_ACTION_TTS_SERVICE); in getEngineInfo() 163 Intent intent = new Intent(Engine.INTENT_ACTION_TTS_SERVICE); in getEngines() 203 Intent intent = new Intent(Engine.INTENT_ACTION_TTS_SERVICE); in getSettingsIntent() 236 parser = si.loadXmlMetaData(pm, TextToSpeech.Engine.SERVICE_META_DATA); in settingsActivityFromServiceInfo()
|
/frameworks/base/tests/TtsTests/src/com/android/speech/tts/ |
D | MockableCheckVoiceData.java | 41 setResult(TextToSpeech.Engine.CHECK_VOICE_DATA_FAIL, returnVal); in onCreate() 46 returnVal.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_AVAILABLE_VOICES, in onCreate() 50 returnVal.putStringArrayListExtra(TextToSpeech.Engine.EXTRA_UNAVAILABLE_VOICES, in onCreate() 54 setResult(TextToSpeech.Engine.CHECK_VOICE_DATA_PASS, returnVal); in onCreate()
|
/frameworks/base/tests/Internal/src/stub/ |
D | DummyWallpaperService.java | 26 public Engine onCreateEngine() { in onCreateEngine() 27 return new Engine(); in onCreateEngine()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/wallpaper/ |
D | WallpaperServiceTests.java | 59 public Engine onCreateEngine() { in testNotifyColorsChanged_rateLimit() 60 return new WallpaperService.Engine(clockFunction, handler) { in testNotifyColorsChanged_rateLimit() 69 WallpaperService.Engine engine = service.onCreateEngine(); in testNotifyColorsChanged_rateLimit()
|
/frameworks/av/services/audiopolicy/engineconfigurable/include/ |
D | AudioPolicyEngineInstance.h | 25 class Engine; variable 59 Engine *getEngine() const;
|
/frameworks/av/services/audiopolicy/engineconfigurable/sepolicy/ |
D | file.te | 1 # Policy Engine remote connection for runtime debug of parameter framework
|
/frameworks/av/services/audiopolicy/enginedefault/ |
D | Android.bp | 4 "src/Engine.cpp",
|
/frameworks/av/services/audiopolicy/engineconfigurable/ |
D | Android.bp | 11 "src/Engine.cpp",
|
/frameworks/wilhelm/tools/mphtogen/ |
D | mphtogen.c | 57 _(Engine) in main()
|
/frameworks/av/services/audiopolicy/engineconfigurable/parameter-framework/examples/ |
D | README.md | 1 Configurable Policy Engine Example
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | ImageWallpaper.java | 64 public Engine onCreateEngine() { in onCreateEngine() 75 class GLEngine extends Engine {
|
/frameworks/base/core/java/android/service/wallpaper/ |
D | WallpaperService.java | 130 private final ArrayList<Engine> mActiveEngines 131 = new ArrayList<Engine>(); 149 public class Engine { class in WallpaperService 396 public Engine() { in Engine() method in WallpaperService.Engine 408 public Engine(Supplier<Long> clockFunction, Handler handler) { in Engine() method in WallpaperService.Engine 1350 Engine mEngine; 1469 Engine engine = onCreateEngine(); in executeMessage() 1607 public abstract Engine onCreateEngine(); in onCreateEngine() 1613 Engine engine = mActiveEngines.get(i); in dump()
|
/frameworks/base/tests/WallpaperTest/src/com/example/wallpapertest/ |
D | TestWallpaper.java | 49 public Engine onCreateEngine() { in onCreateEngine() 53 class ClockEngine extends Engine {
|
/frameworks/av/services/audiopolicy/enginedefault/config/example/ |
D | Android.bp | 17 // Import this namespace in order to use AOSP Phone with Default Engine configuration example
|
/frameworks/base/core/proto/android/app/ |
D | tvsettings_enums.proto | 665 // Engine configuration 669 // Engine configuration > Language 673 // Engine configuration > Language > Button 677 // Engine configuration > Settings for Google Text-to-speech Engine 681 // Engine configuration > Install voice data
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/ |
D | ImageWallpaperTest.java | 102 public Engine onCreateEngine() { in createImageWallpaper()
|