Searched refs:engine (Results 1 - 25 of 32) sorted by last modified time

12

/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;
H A Dsles_allinclusive.h301 unsigned exposedMask, SLEngineItf engine);
/frameworks/wilhelm/tests/sandbox/
H A DAndroid.mk57 # engine
68 engine.c
/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/native/opengl/include/EGL/
H A Degl.h311 EGLAPI EGLBoolean EGLAPIENTRY eglWaitNative(EGLint engine);
/frameworks/native/opengl/libagl/
H A Degl.cpp1850 EGLBoolean eglWaitNative(EGLint engine) argument
/frameworks/native/opengl/libs/EGL/
H A DeglApi.cpp674 EGLBoolean eglWaitNative(EGLint engine) argument
682 return cnx->egl.eglWaitNative(engine);
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Degl.h221 GLAPI EGLBoolean APIENTRY eglWaitNative (EGLint engine);
/frameworks/native/opengl/tools/glgen/specs/egl/
H A DEGL14.spec31 EGLBoolean eglWaitNative ( EGLint engine )
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfigStore.java1130 if (field == config.engine) {
1453 if (field != config.eap && field != config.engine) {
1489 config.engine.setValue(WifiConfiguration.ENGINE_ENABLE);
1505 final EnterpriseField needsUpdate[] = { config.engine, config.engine_id, config.key_id };
H A DWifiConfiguration.java54 * String to set the engine value to when it should be enabled.
60 * String to set the engine value to when it should be disabled.
118 public EnterpriseField engine = new EnterpriseField("engine"); field in class:WifiConfiguration
129 engine, engine_id, key_id, ca_cert };
/frameworks/base/opengl/java/android/opengl/
H A DEGL14.java427 // C function EGLBoolean eglWaitNative ( EGLint engine )
430 int engine
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/base/opengl/java/javax/microedition/khronos/egl/
H A DEGL10.java122 boolean eglWaitNative(int engine, Object bindTarget); argument
/frameworks/base/services/java/com/android/server/
H A DWallpaperManagerService.java235 // when we have an engine, but I'm not sure about
262 public void attachEngine(IWallpaperEngine engine) { argument
264 mEngine = engine;
269 public void engineShown(IWallpaperEngine engine) { argument
/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
104 // engine reports it could not load the specified language.
175 private void blockingInitAndVerify(final String engine, int errorCode) throws argument
184 listener, engine, MOCK_PACKAGE, false /* use fallback package */);
/frameworks/base/keystore/java/android/security/
H A DAndroidKeyPairGenerator.java90 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
92 privKey = engine.getPrivateKeyById(privateKeyAlias);
H A DAndroidKeyStore.java81 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
83 return engine.getPrivateKeyById(Credentials.USER_PRIVATE_KEY + alias);
H A DKeyChain.java309 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
310 return engine.getPrivateKeyById(keyId);
/frameworks/base/keystore/tests/src/android/security/
H A DAndroidKeyStoreTest.java1351 final OpenSSLEngine engine = OpenSSLEngine.getInstance("keystore");
1353 privKey = engine.getPrivateKeyById(privateKeyAlias);
/frameworks/base/media/jni/mediaeditor/
H A DVideoEditorMain.cpp80 jobject engine; member in struct:__anon1102
479 pEnv->CallVoidMethod(pContext->engine,
983 pEnv->CallVoidMethod(pContext->engine,
1437 pEnv->CallVoidMethod(pContext->engine,
1451 pEnv->CallVoidMethod(pContext->engine,
1460 pEnv->CallVoidMethod(pContext->engine,
2476 pEnv->CallVoidMethod(pContext->engine, pContext->onProgressUpdateMethodId,
2499 // Check if a global reference to the engine object was set.
2500 if (NULL != pContext->engine)
2503 pEnv->DeleteGlobalRef(pContext->engine);
[all...]
/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
1034 Engine engine = onCreateEngine();
1035 mEngine = engine;
1036 mActiveEngines.add(engine);
1037 engine.attach(this);
1152 * Must be implemented to return a new instance of the wallpaper's engine
[all...]

Completed in 376 milliseconds

12