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

12

/frameworks/base/core/java/android/service/wallpaper/
H A DIWallpaperConnection.aidl26 void attachEngine(IWallpaperEngine engine);
27 void engineShown(IWallpaperEngine engine);
H A DWallpaperService.java67 * your engine.
354 * Returns true if this engine is running in preview mode -- that is,
403 * Called once to initialize the engine. After returning, the
404 * engine's surface will be created by the framework.
410 * Called right before the engine is going away. After this the
1028 Engine engine = onCreateEngine();
1029 mEngine = engine;
1030 mActiveEngines.add(engine);
1031 engine.attach(this);
1134 * Must be implemented to return a new instance of the wallpaper's engine
[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/
H A DLayerDim.cpp48 RenderEngine& engine(mFlinger->getRenderEngine());
49 engine.setupDimLayerBlending(s.alpha);
50 engine.drawMesh(mesh);
51 engine.disableBlending();
H A DLayer.cpp495 RenderEngine& engine(mFlinger->getRenderEngine());
539 engine.setupLayerTexturing(mTexture);
541 engine.setupLayerBlackedOut();
544 engine.disableTexturing();
551 RenderEngine& engine(mFlinger->getRenderEngine());
553 engine.setupFillWithColor(red, green, blue, alpha);
554 engine.drawMesh(mMesh);
598 RenderEngine& engine(mFlinger->getRenderEngine());
599 engine.setupLayerBlending(mPremultipliedAlpha, isOpaque(), s.alpha);
600 engine
[all...]
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...]
/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/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...]
H A DRenderEngine.h80 BindImageAsFramebuffer(RenderEngine& engine, EGLImageKHR image);
/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...]
H A Dvariablespeed.h39 // This is the audio engine class.
66 static void SetEngine(AudioEngine* engine);
92 // The single global audio engine instance.
/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/keystore/java/android/security/
H A DAndroidKeyPairGenerator.java104 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
106 privKey = engine.getPrivateKeyById(privateKeyAlias);
H A DKeyChain.java310 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
311 return engine.getPrivateKeyById(keyId);
H A DAndroidKeyStore.java84 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
86 return engine.getPrivateKeyById(Credentials.USER_PRIVATE_KEY + alias);
/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/native/opengl/tools/glgen/specs/egl/
H A DEGL14.spec31 EGLBoolean eglWaitNative ( EGLint engine )
/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);
H A DEGL14.java426 // C function EGLBoolean eglWaitNative ( EGLint engine )
429 int engine
/frameworks/base/opengl/java/javax/microedition/khronos/egl/
H A DEGL10.java122 boolean eglWaitNative(int engine, Object bindTarget); argument
/frameworks/wilhelm/tests/sandbox/
H A DAndroid.mk59 # engine
70 engine.c
/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/base/opengl/java/com/google/android/gles_jni/
H A DEGLImpl.java48 public native boolean eglWaitNative(int engine, Object bindTarget); argument

Completed in 8271 milliseconds

12