Searched refs:config (Results 126 - 150 of 228) sorted by relevance

12345678910

/frameworks/base/core/jni/
H A Dandroid_opengl_EGL14.cpp461 /* EGLBoolean eglGetConfigAttrib ( EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value ) */
464 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint attribute, jintArray value_ref, jint offset) {
470 EGLConfig config_native = (EGLConfig) fromEGLHandle(_env, eglconfigGetHandleID, config);
516 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
519 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
525 EGLConfig config_native = (EGLConfig) fromEGLHandle(_env, eglconfigGetHandleID, config);
593 /* EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) */
596 (JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) {
602 EGLConfig config_native = (EGLConfig) fromEGLHandle(_env, eglconfigGetHandleID, config);
670 /* EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, cons
463 android_eglGetConfigAttrib(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint attribute, jintArray value_ref, jint offset) argument
518 android_eglCreateWindowSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
595 android_eglCreateWindowSurfaceTexture(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject win, jintArray attrib_list_ref, jint offset) argument
672 android_eglCreatePbufferSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jintArray attrib_list_ref, jint offset) argument
734 android_eglCreatePixmapSurface(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jint pixmap, jintArray attrib_list_ref, jint offset) argument
851 android_eglCreatePbufferFromClientBuffer(JNIEnv *_env, jobject _this, jobject dpy, jint buftype, jint buffer, jobject config, jintArray attrib_list_ref, jint offset) argument
978 android_eglCreateContext(JNIEnv *_env, jobject _this, jobject dpy, jobject config, jobject share_context, jintArray attrib_list_ref, jint offset) argument
[all...]
H A Dandroid_media_AudioSystem.cpp166 android_media_AudioSystem_setForceUse(JNIEnv *env, jobject thiz, jint usage, jint config) argument
169 static_cast <audio_policy_forced_cfg_t>(config)));
/frameworks/base/core/java/android/app/
H A DIApplicationThread.java63 boolean notResumed, Configuration config) throws RemoteException;
94 Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services,
99 void scheduleConfigurationChanged(Configuration config) throws RemoteException; argument
61 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config) argument
90 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, String profileName, ParcelFileDescriptor profileFd, boolean autoStopProfiler, Bundle testArguments, IInstrumentationWatcher testWatcher, int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
H A DApplicationThreadNative.java159 Configuration config = null;
161 config = Configuration.CREATOR.createFromParcel(data);
163 scheduleRelaunchActivity(b, ri, pi, configChanges, notResumed, config);
274 Configuration config = Configuration.CREATOR.createFromParcel(data);
281 persistent, config, compatInfo, services, coreSettings);
310 Configuration config = Configuration.CREATOR.createFromParcel(data);
311 scheduleConfigurationChanged(config);
715 int configChanges, boolean notResumed, Configuration config)
724 if (config != null) {
726 config
713 scheduleRelaunchActivity(IBinder token, List<ResultInfo> pendingResults, List<Intent> pendingNewIntents, int configChanges, boolean notResumed, Configuration config) argument
863 bindApplication(String packageName, ApplicationInfo info, List<ProviderInfo> providers, ComponentName testName, String profileName, ParcelFileDescriptor profileFd, boolean autoStopProfiler, Bundle testArgs, IInstrumentationWatcher testWatcher, int debugMode, boolean openGlTrace, boolean restrictedBackupMode, boolean persistent, Configuration config, CompatibilityInfo compatInfo, Map<String, IBinder> services, Bundle coreSettings) argument
930 scheduleConfigurationChanged(Configuration config) argument
[all...]
/frameworks/compile/libbcc/runtime/
H A DMakefile6 include make/config.mk
45 @echo " <platform name>-<config name>:"
46 @echo " build the libraries for a single platform config"
47 @echo " <platform name>-<config name>-<arch name>:"
48 @echo " build the libraries for a single config and arch"
127 $(foreach config,$(Tmp.Configs),\
128 $(call PerPlatformConfig_template,$(config)))
144 # Copy or lipo to create the per-config library.
/frameworks/av/include/media/
H A DIAudioPolicyService.h49 virtual status_t setForceUse(audio_policy_force_use_t usage, audio_policy_forced_cfg_t config) = 0;
/frameworks/av/libvideoeditor/lvpp/
H A DNativeWindowRenderer.cpp195 EGLConfig config; local
205 eglChooseConfig(mEglDisplay, configAttribs, &config, 1, &numConfigs);
208 mEglSurface = eglCreateWindowSurface(mEglDisplay, config,
213 mEglContext = eglCreateContext(mEglDisplay, config, EGL_NO_CONTEXT,
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.h48 effect_config_t config; member in struct:downmix_module_s
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp452 CHECK(GetAttribute(params.c_str(), "config", &val));
454 sp<ABuffer> config = decodeHex(val); local
455 CHECK(config != NULL);
457 ABitReader bits(config->data(), config->size());
/frameworks/base/core/java/android/view/
H A DWindowManagerGlobal.java508 public void reportNewConfiguration(Configuration config) { argument
512 config = new Configuration(config);
515 root.requestUpdateConfiguration(config);
H A DViewConfiguration.java131 * in frameworks/base/core/res/res/values/config.xml or the appropriate device resource overlay.
264 final Configuration config = res.getConfiguration();
267 if (config.isLayoutSizeAtLeast(Configuration.SCREENLAYOUT_SIZE_XLARGE)) {
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DTriangleRenderer.java37 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp77 EGLConfig config)
94 init(config);
124 void DisplayDevice::init(EGLConfig config) argument
138 surface = eglCreateWindowSurface(display, config, window, NULL);
70 DisplayDevice( const sp<SurfaceFlinger>& flinger, DisplayType type, bool isSecure, const wp<IBinder>& displayToken, const sp<ANativeWindow>& nativeWindow, const sp<FramebufferSurface>& framebufferSurface, EGLConfig config) argument
/frameworks/rs/driver/
H A DrsdGL.h37 EGLConfig config; member in struct:RsdGLRec::__anon1536
/frameworks/av/media/libeffects/lvm/wrapper/Bundle/
H A DEffectBundle.cpp538 pContext->config.inputCfg.accessMode = EFFECT_BUFFER_ACCESS_READ;
539 pContext->config.inputCfg.channels = AUDIO_CHANNEL_OUT_STEREO;
540 pContext->config.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT;
541 pContext->config.inputCfg.samplingRate = 44100;
542 pContext->config.inputCfg.bufferProvider.getBuffer = NULL;
543 pContext->config.inputCfg.bufferProvider.releaseBuffer = NULL;
544 pContext->config.inputCfg.bufferProvider.cookie = NULL;
545 pContext->config.inputCfg.mask = EFFECT_CONFIG_ALL;
546 pContext->config.outputCfg.accessMode = EFFECT_BUFFER_ACCESS_ACCUMULATE;
547 pContext->config
[all...]
/frameworks/base/core/java/android/net/
H A DIConnectivityManager.aidl120 ParcelFileDescriptor establishVpn(in VpnConfig config);
/frameworks/base/services/java/com/android/server/usb/
H A DUsbDeviceManager.java329 // persist.sys.usb.config should never be unset. But if it is, set it to "adb"
331 mDefaultFunctions = SystemProperties.get("persist.sys.usb.config", "adb");
336 // sanity check the sys.usb.config system property
338 String config = SystemProperties.get("sys.usb.config", "none");
339 if (!config.equals(mDefaultFunctions)) {
340 Slog.w(TAG, "resetting config to persistent property: " + mDefaultFunctions);
341 SystemProperties.set("sys.usb.config", mDefaultFunctions);
437 private boolean setUsbConfig(String config) { argument
438 if (DEBUG) Slog.d(TAG, "setUsbConfig(" + config
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DIWindowManagerImpl.java55 public IWindowManagerImpl(Configuration config, DisplayMetrics metrics, int rotation, argument
57 mConfig = config;
/frameworks/compile/libbcc/lib/AndroidBitcode/
H A DABCCompilerDriver.cpp75 Compiler::ErrorCode result = mCompiler.config(*mCompilerConfig);
122 Linker::ErrorCode result = mLinker.config(*mLinkerConfig);
/frameworks/compile/libbcc/lib/Core/
H A DCompiler.cpp43 "Invalid compiler config supplied (getTarget() returns NULL.) "
51 " (missing call to Compiler::config()?)",
103 enum ErrorCode err = config(pConfig);
113 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig) { function in class:Compiler
/frameworks/compile/libbcc/runtime/make/
H A Dlib_info.mk11 # 'arch'. This does not include any config specific
/frameworks/av/media/libstagefright/
H A DAVIExtractor.cpp969 sp<ABuffer> MakeMPEG4VideoCodecSpecificData(const sp<ABuffer> &config) { argument
970 size_t len1 = config->size() + GetSizeWidth(config->size()) + 1;
990 dst = EncodeSize(dst, config->size());
991 memcpy(dst, config->data(), config->size());
992 dst += config->size();
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp247 EGLConfig config; local
254 eglChooseConfig(display, attribs, &config, 1, &numConfigs);
255 surface = eglCreateWindowSurface(display, config, s.get(), NULL);
256 context = eglCreateContext(display, config, NULL, NULL);
/frameworks/base/services/java/com/android/server/display/
H A DWifiDisplayController.java536 WifiP2pConfig config = new WifiP2pConfig();
537 config.deviceAddress = mConnectingDevice.deviceAddress;
539 config.groupOwnerIntent = WifiP2pConfig.MIN_GROUP_OWNER_INTENT;
545 mWifiP2pManager.connect(mWifiP2pChannel, config, new ActionListener() {
/frameworks/base/test-runner/src/android/test/mock/
H A DMockResources.java46 public void updateConfiguration(Configuration config, DisplayMetrics metrics) { argument

Completed in 8712 milliseconds

12345678910