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

/frameworks/base/core/tests/coretests/src/android/content/
H A DSyncStorageEngineTest.java50 SyncStorageEngine engine = SyncStorageEngine.newTestInstance(
54 long historyId = engine.insertStartSyncEvent(
57 engine.stopSyncEvent(historyId, time1 - time0, "yay", 0, 0);
82 SyncStorageEngine engine = SyncStorageEngine.newTestInstance(
85 removePeriodicSyncs(engine, account1, authority);
86 removePeriodicSyncs(engine, account2, authority);
89 engine.addPeriodicSync(sync1.account, sync1.authority, sync1.extras, sync1.period);
90 engine.addPeriodicSync(sync2.account, sync2.authority, sync2.extras, sync2.period);
91 engine.addPeriodicSync(sync3.account, sync3.authority, sync3.extras, sync3.period);
92 engine
112 removePeriodicSyncs(SyncStorageEngine engine, Account account, String authority) argument
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DIWallpaperConnection.aidl26 void attachEngine(IWallpaperEngine engine);
H A DWallpaperService.java69 * your engine.
342 * Returns true if this engine is running in preview mode -- that is,
386 * Called once to initialize the engine. After returning, the
387 * engine's surface will be created by the framework.
393 * Called right before the engine is going away. After this the
997 Engine engine = onCreateEngine();
998 mEngine = engine;
999 mActiveEngines.add(engine);
1000 engine.attach(this);
1112 * Must be implemented to return a new instance of the wallpaper's engine
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java70 * @return the default TTS engine. If the user has set a default, and the engine
72 * the highest ranked engine is returned as per {@link EngineInfoComparator}.
75 String engine = getString(mContext.getContentResolver(),
77 return isEngineInstalled(engine) ? engine : getHighestRankedEngineName();
81 * @return the package name of the highest ranked system engine, {@code null}
95 * Returns the engine info for a given engine name. Note that engines are
104 // Note that the current API allows only one engine pe
147 isEngineInstalled(String engine) argument
158 getSettingsIntent(String engine) argument
[all...]
H A DTextToSpeech.java49 * to release the native resources used by the TextToSpeech engine.
116 * Note that this notifies callers when the <b>engine</b> has finished has
127 * TextToSpeech engine initialization.
131 * Called to signal the completion of the TextToSpeech engine initialization.
157 * Intents to ask engine to install data or check its data and
158 * extras for a TTS engine's check data activity.
168 * engine behaviour. The engine can be queried for the set of features it supports
206 * Package name of the default TTS engine.
209 * @deprecated No longer in use, the default engine i
521 TextToSpeech(Context context, OnInitListener listener, String engine) argument
531 TextToSpeech(Context context, OnInitListener listener, String engine, String packageName) argument
610 connectToEngine(String engine) argument
[all...]
/frameworks/base/media/libeffects/preprocessing/
H A DPreProcessing.cpp57 PREPROC_EFFECT_STATE_CREATED, // webRTC engine created
62 // handle on webRTC engine
89 preproc_fx_handle_t engine; // handle on webRTC engine member in struct:preproc_effect_s
230 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine);
246 effect->engine = static_cast<preproc_fx_handle_t>(agc);
259 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine);
320 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine);
359 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine);
367 webrtc::GainControl *agc = static_cast<webrtc::GainControl *>(effect->engine);
[all...]
/frameworks/ex/variablespeed/jni/
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;
134 LOGE("you haven't initialized the audio engine");
143 // The callbacks from the engine require static callback functions.
145 // the engine.
533 static void CreateAndRealizeEngine(SLObjectItf &engine, argument
600 SLObjectItf engine; local
[all...]
H A Dvariablespeed.h39 // This is the audio engine class.
66 static void SetEngine(AudioEngine* engine);
91 // The single global audio engine instance.
/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/javax/microedition/khronos/egl/
H A DEGL10.java122 boolean eglWaitNative(int engine, Object bindTarget); argument
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorMain.cpp81 jobject engine; member in struct:__anon342
477 pEnv->CallVoidMethod(pContext->engine,
981 pEnv->CallVoidMethod(pContext->engine,
1435 pEnv->CallVoidMethod(pContext->engine,
1449 pEnv->CallVoidMethod(pContext->engine,
1458 pEnv->CallVoidMethod(pContext->engine,
2472 pEnv->CallVoidMethod(pContext->engine, pContext->onProgressUpdateMethodId,
2495 // Check if a global reference to the engine object was set.
2496 if (NULL != pContext->engine)
2499 pEnv->DeleteGlobalRef(pContext->engine);
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLImpl.java48 public native boolean eglWaitNative(int engine, Object bindTarget); argument
/frameworks/base/opengl/tests/angeles/include/GLES/
H A Degl.h221 GLAPI EGLBoolean APIENTRY eglWaitNative (EGLint engine);
/frameworks/base/opengl/include/EGL/
H A Degl.h311 EGLAPI EGLBoolean EGLAPIENTRY eglWaitNative(EGLint engine);
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_EGLImpl.cpp521 static jboolean jni_eglWaitNative(JNIEnv *_env, jobject _this, jint engine, jobject bindTarget) { argument
522 return eglWaitNative(engine);
/frameworks/base/docs/html/resources/
H A Dresources-data.js817 en: 'An example Text To Speech engine written using the Android text to speech engine API in Android 4.0.'
/frameworks/base/services/java/com/android/server/
H A DWallpaperManagerService.java191 // when we have an engine, but I'm not sure about
214 public void attachEngine(IWallpaperEngine engine) { argument
215 mEngine = engine;
/frameworks/base/opengl/libs/EGL/
H A DeglApi.cpp774 EGLBoolean eglWaitNative(EGLint engine) argument
791 res = cnx->egl.eglWaitNative(engine);
/frameworks/base/opengl/libagl/
H A Degl.cpp1831 EGLBoolean eglWaitNative(EGLint engine) argument

Completed in 497 milliseconds