Searched defs:engine (Results 1 - 19 of 19) sorted by relevance

/frameworks/ex/variablespeed/jni/
H A Djni_entry.cc84 AudioEngine *engine = new AudioEngine(targetFrames, local
87 if (!AudioEngine::CompareAndSetEngine(NULL, engine)) {
88 delete engine;
H A Dvariablespeed.cc106 // Static instance of audio engine, and methods for getting, setting and
109 // The single global audio engine instance.
116 LOGE("you haven't initialized the audio engine");
123 void AudioEngine::SetEngine(AudioEngine* engine) { argument
125 LOGE("you have already set the audio engine");
129 audioEngine_ = engine;
150 // The callbacks from the engine require static callback functions.
152 // the engine.
540 static void CreateAndRealizeEngine(SLObjectItf &engine, argument
544 SLresult result = slCreateEngine(&engine,
607 SLObjectItf engine; local
[all...]
/frameworks/base/tests/TtsTests/src/com/android/speech/tts/
H A DTextToSpeechTests.java59 // Fail on an engine that doesn't exist.
62 // Also, the "current engine" must be null
108 // engine reports it could not load the specified language.
149 private void blockingInitAndVerify(final String engine, int errorCode) throws argument
158 listener, engine, MOCK_PACKAGE, false /* use fallback package */);
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java71 * @return the default TTS engine. If the user has set a default, and the engine
73 * the highest ranked engine is returned as per {@link EngineInfoComparator}.
76 String engine = getString(mContext.getContentResolver(),
78 return isEngineInstalled(engine) ? engine : getHighestRankedEngineName();
82 * @return the package name of the highest ranked system engine, {@code null}
96 * Returns the engine info for a given engine name. Note that engines are
105 // Note that the current API allows only one engine pe
148 isEngineInstalled(String engine) argument
159 getSettingsIntent(String engine) argument
[all...]
H A DTextToSpeech.java55 * to release the native resources used by the TextToSpeech engine.
122 * Note that this notifies callers when the <b>engine</b> has finished has
133 * TextToSpeech engine initialization.
137 * Called to signal the completion of the TextToSpeech engine initialization.
166 * Intents to ask engine to install data or check its data and
167 * extras for a TTS engine's check data activity.
177 * engine behaviour. The engine can be queried for the set of features it supports
215 * Package name of the default TTS engine.
218 * @deprecated No longer in use, the default engine i
583 TextToSpeech(Context context, OnInitListener listener, String engine) argument
593 TextToSpeech(Context context, OnInitListener listener, String engine, String packageName, boolean useFallback) argument
683 connectToEngine(String engine) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/content/
H A DSyncStorageEngineTest.java49 SyncStorageEngine engine; field in class:SyncStorageEngineTest
62 // Set up storage engine.
64 engine = SyncStorageEngine.newTestInstance(
81 SyncStorageEngine engine = SyncStorageEngine.newTestInstance(
85 long historyId = engine.insertStartSyncEvent(
89 engine.stopSyncEvent(historyId, time1 - time0, "yay", 0, 0);
102 engine.insertIntoPending(pop);
103 // Force engine to read from disk.
104 engine.clearAndReadState();
106 assert(engine
238 removePeriodicSyncs(SyncStorageEngine engine, Account account, int userId, String authority) argument
[all...]
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp86 RenderEngine* engine = NULL; local
89 engine = new GLES10RenderEngine();
92 engine = new GLES11RenderEngine();
96 engine = new GLES20RenderEngine();
99 engine->setEGLContext(ctxt);
106 ALOGI("GL_MAX_TEXTURE_SIZE = %d", engine->getMaxTextureSize());
107 ALOGI("GL_MAX_VIEWPORT_DIMS = %d", engine->getMaxViewportDims());
112 return engine;
220 RenderEngine& engine, EGLImageKHR image) : mEngine(engine)
219 BindImageAsFramebuffer( RenderEngine& engine, EGLImageKHR image) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DEGLLogWrapper.java358 public boolean eglWaitNative(int engine, Object bindTarget) { argument
360 arg("engine", engine);
363 boolean result = mEgl10.eglWaitNative(engine, bindTarget);
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLImpl.java48 public native boolean eglWaitNative(int engine, Object bindTarget); argument
/frameworks/wilhelm/src/
H A Dsles.c487 IObject *construct(const ClassTable *clazz, unsigned exposedMask, SLEngineItf engine) argument
495 // a NULL engine means we are constructing the engine
496 IEngine *thisEngine = (IEngine *) engine;
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp520 static jboolean jni_eglWaitNative(JNIEnv *_env, jobject _this, jint engine, jobject bindTarget) { argument
521 return eglWaitNative(engine);
H A Dandroid_opengl_EGL14.cpp1170 /* EGLBoolean eglWaitNative ( EGLint engine ) */
1173 (JNIEnv *_env, jobject _this, jint engine) {
1176 (EGLint)engine
1172 android_eglWaitNative(JNIEnv *_env, jobject _this, jint engine) argument
/frameworks/base/services/java/com/android/server/
H A DWallpaperManagerService.java238 // when we have an engine, but I'm not sure about
265 public void attachEngine(IWallpaperEngine engine) { argument
267 mEngine = engine;
280 public void engineShown(IWallpaperEngine engine) { argument
679 // We've attached to the service but the engine hasn't attached back to us
/frameworks/base/opengl/java/javax/microedition/khronos/egl/
H A DEGL10.java122 boolean eglWaitNative(int engine, Object bindTarget); argument
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp856 EGLBoolean eglWaitNative(EGLint engine) argument
864 return cnx->egl.eglWaitNative(engine);
/frameworks/av/media/libeffects/preprocessing/
H A DPreProcessing.cpp59 PREPROC_EFFECT_STATE_CREATED, // webRTC engine created
64 // handle on webRTC engine
91 preproc_fx_handle_t engine; // handle on webRTC engine member in struct:preproc_effect_s
271 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine);
287 effect->engine = static_cast<preproc_fx_handle_t>(agc);
300 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine);
361 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine);
400 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine);
408 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine);
[all...]
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorMain.cpp82 jobject engine; member in struct:__anon1155
481 pEnv->CallVoidMethod(pContext->engine,
964 pEnv->CallVoidMethod(pContext->engine,
1406 pEnv->CallVoidMethod(pContext->engine,
1420 pEnv->CallVoidMethod(pContext->engine,
1429 pEnv->CallVoidMethod(pContext->engine,
2432 pEnv->CallVoidMethod(pContext->engine, pContext->onProgressUpdateMethodId,
2455 // Check if a global reference to the engine object was set.
2456 if (NULL != pContext->engine)
2459 pEnv->DeleteGlobalRef(pContext->engine);
[all...]
/frameworks/native/opengl/libagl/
H A Degl.cpp1856 EGLBoolean eglWaitNative(EGLint engine) argument
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp307 RenderEngine& engine; member in class:android::MessageDestroyGLTexture
310 MessageDestroyGLTexture(RenderEngine& engine, uint32_t texture) argument
311 : engine(engine), texture(texture) {
314 engine.deleteTextures(1, &texture);
923 RenderEngine& engine(getRenderEngine());
924 engine.fillRegionWithColor(dirtyRegion, height, 1, 0, 1, 1);
1688 RenderEngine& engine(getRenderEngine());
1689 engine.beginGroup(mDaltonizer());
1691 engine
[all...]

Completed in 538 milliseconds