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.java76 * your engine.
365 * Returns true if this engine is running in preview mode -- that is,
414 * Called once to initialize the engine. After returning, the
415 * engine's surface will be created by the framework.
421 * Called right before the engine is going away. After this the
1161 Engine engine = onCreateEngine();
1162 mEngine = engine;
1163 mActiveEngines.add(engine);
1164 engine.attach(this);
1270 * 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.java62 SyncStorageEngine engine; field in class:SyncStorageEngineTest
77 // Set up storage engine.
79 engine = SyncStorageEngine.newTestInstance(
96 SyncStorageEngine engine = SyncStorageEngine.newTestInstance(
104 long historyId = engine.insertStartSyncEvent(op, time0);
106 engine.stopSyncEvent(historyId, time1 - time0, "yay", 0, 0);
120 engine.insertIntoPending(sop);
122 // Force engine to read from disk.
123 engine.clearAndReadState();
125 assertTrue(engine
337 removePeriodicSyncs(SyncStorageEngine engine, Account account, int userId, String authority) argument
[all...]
/frameworks/base/core/java/android/net/
H A DPskKeyManager.java143 * engine.
151 public String chooseServerKeyIdentityHint(SSLEngine engine) { argument
174 * engine.
185 public String chooseClientKeyIdentity(String identityHint, SSLEngine engine) { argument
208 * Gets the PSK to use for the provided engine.
221 public SecretKey getKey(String identityHint, String identity, SSLEngine engine) { argument
/frameworks/native/services/surfaceflinger/
H A DLayerDim.cpp49 RenderEngine& engine(mFlinger->getRenderEngine());
50 engine.setupDimLayerBlending(s.alpha);
51 engine.drawMesh(mesh);
52 engine.disableBlending();
H A DLayer.cpp626 RenderEngine& engine(mFlinger->getRenderEngine());
670 engine.setupLayerTexturing(mTexture);
672 engine.setupLayerBlackedOut();
675 engine.disableTexturing();
683 RenderEngine& engine(mFlinger->getRenderEngine());
685 engine.setupFillWithColor(red, green, blue, alpha);
686 engine.drawMesh(mMesh);
730 RenderEngine& engine(mFlinger->getRenderEngine());
731 engine.setupLayerBlending(mPremultipliedAlpha, isOpaque(s), s.alpha);
732 engine
[all...]
H A DSurfaceFlinger.cpp303 RenderEngine& engine; member in class:android::MessageDestroyGLTexture
306 MessageDestroyGLTexture(RenderEngine& engine, uint32_t texture) argument
307 : engine(engine), texture(texture) {
310 engine.deleteTextures(1, &texture);
897 RenderEngine& engine(getRenderEngine());
898 engine.fillRegionWithColor(dirtyRegion, height, 1, 0, 1, 1);
1792 RenderEngine& engine(getRenderEngine());
1797 engine.beginGroup(colorMatrix);
1799 engine
[all...]
/frameworks/base/core/java/android/speech/tts/
H A DTtsEngines.java110 * @return the default TTS engine. If the user has set a default, and the engine
112 * the highest ranked engine is returned as per {@link EngineInfoComparator}.
115 String engine = getString(mContext.getContentResolver(),
117 return isEngineInstalled(engine) ? engine : getHighestRankedEngineName();
121 * @return the package name of the highest ranked system engine, {@code null}
135 * Returns the engine info for a given engine name. Note that engines are
144 // Note that the current API allows only one engine pe
187 isEngineInstalled(String engine) argument
198 getSettingsIntent(String engine) argument
[all...]
H A DTextToSpeech.java57 * to release the native resources used by the TextToSpeech engine.
79 * Denotes a failure of a TTS engine to synthesize the given input.
165 * Note that this notifies callers when the <b>engine</b> has finished has
176 * TextToSpeech engine initialization.
180 * Called to signal the completion of the TextToSpeech engine initialization.
209 * Intents to ask engine to install data or check its data and
210 * extras for a TTS engine's check data activity.
220 * engine behaviour. The engine can be queried for the set of features it supports
258 * Package name of the default TTS engine
701 TextToSpeech(Context context, OnInitListener listener, String engine) argument
711 TextToSpeech(Context context, OnInitListener listener, String engine, String packageName, boolean useFallback) argument
796 connectToEngine(String engine) argument
[all...]
/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/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp122 RenderEngine* engine = NULL; local
125 engine = new GLES10RenderEngine();
128 engine = new GLES11RenderEngine();
132 engine = new GLES20RenderEngine();
135 engine->setEGLHandles(config, ctxt);
142 ALOGI("GL_MAX_TEXTURE_SIZE = %zu", engine->getMaxTextureSize());
143 ALOGI("GL_MAX_VIEWPORT_DIMS = %zu", engine->getMaxViewportDims());
148 return engine;
265 RenderEngine& engine, EGLImageKHR image) : mEngine(engine)
264 BindImageAsFramebuffer( RenderEngine& engine, EGLImageKHR image) argument
[all...]
H A DRenderEngine.h87 BindImageAsFramebuffer(RenderEngine& engine, EGLImageKHR image);
/frameworks/base/keystore/java/android/security/
H A DAndroidKeyPairGenerator.java103 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
105 privKey = engine.getPrivateKeyById(privateKeyAlias);
H A DKeyChain.java323 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
324 return engine.getPrivateKeyById(keyId);
H A DAndroidKeyStore.java84 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
86 return engine.getPrivateKeyById(Credentials.USER_PRIVATE_KEY + alias);
/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/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
116 // engine reports it could not load the specified language.
180 private void blockingInitAndVerify(final String engine, int errorCode) throws argument
189 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.java445 // C function EGLBoolean eglWaitNative ( EGLint engine )
448 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/opengl/java/com/google/android/gles_jni/
H A DEGLImpl.java48 public native boolean eglWaitNative(int engine, Object bindTarget); argument

Completed in 556 milliseconds

12