Searched defs:config (Results 1 - 25 of 159) sorted by relevance

1234567

/frameworks/native/libs/gui/
H A DGuiConfig.cpp23 static const char* config = local
29 configStr.append(config);
/frameworks/native/libs/ui/
H A DUiConfig.cpp26 static const char* config = local
32 configStr.append(config);
/frameworks/native/opengl/tools/glgen/stubs/egl/
H A DeglCreateWindowSurface.java1 // C function EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
5 EGLConfig config,
13 EGLConfig config,
20 EGLConfig config,
38 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset);
40 surface = _eglCreateWindowSurfaceTexture(dpy, config,
3 _eglCreateWindowSurface( EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
11 _eglCreateWindowSurfaceTexture( EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
19 eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, Object win, int[] attrib_list, int offset ) argument
/frameworks/support/v4/froyo/android/support/v4/view/
H A DViewConfigurationCompatFroyo.java25 public static int getScaledPagingTouchSlop(ViewConfiguration config) { argument
26 return config.getScaledPagingTouchSlop();
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLConfigImpl.java24 EGLConfigImpl(int config) { argument
25 mEGLConfig = config;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealthCallback.java34 * @param config Bluetooth Health app configuration
42 public void onHealthAppConfigurationStatusChange(BluetoothHealthAppConfiguration config, argument
44 Log.d(TAG, "onHealthAppConfigurationStatusChange: " + config + "Status: " + status);
53 * @param config The Health app configutation
61 public void onHealthChannelStateChange(BluetoothHealthAppConfiguration config, argument
64 Log.d(TAG, "onHealthChannelStateChange: " + config + "Device: " + device +
/frameworks/native/opengl/tests/finish/
H A Dfinish.cpp44 EGLConfig config; local
55 dpy, configAttribs, window, &config);
61 surface = eglCreateWindowSurface(dpy, config, window, NULL);
62 context = eglCreateContext(dpy, config, NULL, NULL);
/frameworks/native/opengl/tests/lib/
H A DglTestLib.cpp69 void glTestPrintEGLConfiguration(EGLDisplay dpy, EGLConfig config) argument
111 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute,
/frameworks/native/opengl/tests/testPauseResume/src/com/android/test/
H A DTestView.java79 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/textures/
H A Dtextures.cpp40 EGLConfig config; local
51 dpy, configAttribs, window, &config);
57 surface = eglCreateWindowSurface(dpy, config, window, NULL);
58 context = eglCreateContext(dpy, config, NULL, NULL);
/frameworks/support/v4/java/android/support/v4/view/
H A DViewConfigurationCompat.java30 public int getScaledPagingTouchSlop(ViewConfiguration config); argument
38 public int getScaledPagingTouchSlop(ViewConfiguration config) { argument
39 return config.getScaledTouchSlop();
48 public int getScaledPagingTouchSlop(ViewConfiguration config) { argument
49 return ViewConfigurationCompatFroyo.getScaledPagingTouchSlop(config);
72 public static int getScaledPagingTouchSlop(ViewConfiguration config) { argument
73 return IMPL.getScaledPagingTouchSlop(config);
/frameworks/av/media/libeffects/downmix/
H A DEffectDownmix.h48 effect_config_t config; member in struct:downmix_module_s
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
H A DWifiConnectionTest.java67 for (WifiConfiguration config : networks) {
68 log(config.toString());
80 * @param config is the network configuration
83 private void connectToWifi(WifiConfiguration config) { argument
85 assertTrue("failed to connect to " + config.SSID,
86 connectToWifiWithConfiguration(config));
95 log("config.SSID = " + config.SSID);
99 assertTrue(config.SSID.contains(mWifiManager.getConnectionInfo().getSSID()));
H A DWifiAssociationTest.java93 * @param config is the network configuration
96 private void connectToWifi(WifiConfiguration config) { argument
98 assertTrue("failed to associate with " + config.SSID,
99 connectToWifiWithConfiguration(config));
102 assertTrue("failed to connect with " + config.SSID,
108 assertTrue(config.SSID.contains(mWifiManager.getConnectionInfo().getSSID()));
126 WifiConfiguration config = new WifiConfiguration();
127 config.SSID = mSsid;
133 config.allowedKeyManagement.set(KeyMgmt.NONE);
138 config
[all...]
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
H A DCubeRenderer.java100 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/EGLTest/
H A DEGL_test.cpp59 EGLConfig config; local
67 success = eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs);
74 success = eglGetConfigAttrib(mEglDisplay, config, EGL_RED_SIZE, &components[0]);
77 success = eglGetConfigAttrib(mEglDisplay, config, EGL_GREEN_SIZE, &components[1]);
80 success = eglGetConfigAttrib(mEglDisplay, config, EGL_BLUE_SIZE, &components[2]);
91 EGLConfig config; local
101 EXPECT_TRUE(eglChooseConfig(mEglDisplay, attrs, &config, 1, &numConfigs));
114 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, config,
126 EGLConfig config; local
138 success = eglChooseConfig(mEglDisplay, attrs, &config,
[all...]
/frameworks/native/opengl/tests/filter/
H A Dfilter.cpp35 EGLConfig config; local
51 dpy, s_configAttribs, window, &config);
52 surface = eglCreateWindowSurface(dpy, config, window, NULL);
55 eglChooseConfig(dpy, s_configAttribs, &config, 1, &numConfigs);
57 surface = eglCreatePbufferSurface(dpy, config, attribs);
62 context = eglCreateContext(dpy, config, NULL, NULL);
/frameworks/native/opengl/tests/gl_jni/src/com/android/gljni/
H A DGLJNIView.java79 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DTriangleRenderer.java37 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/native/opengl/tests/include/
H A DEGLUtils.h101 EGLConfig config = NULL; local
106 config = configs[i];
114 *outConfig = config;
/frameworks/native/opengl/tests/linetex/
H A Dlinetex.cpp44 EGLConfig config; local
55 dpy, configAttribs, window, &config);
61 surface = eglCreateWindowSurface(dpy, config, window, NULL);
62 context = eglCreateContext(dpy, config, NULL, NULL);
/frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/
H A DTestFramerateView.java87 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Daacenc_core.c40 void AacInitDefaultConfig(AACENC_CONFIG *config) argument
43 config->adtsUsed = 1;
44 config->nChannelsIn = 2;
45 config->nChannelsOut = 2;
46 config->bitRate = 128000;
47 config->bandWidth = 0;
58 const AACENC_CONFIG config /* pre-initialized config struct */
72 hAacEnc->config = config;
[all...]
/frameworks/base/services/java/com/android/server/
H A DAttributeCache.java84 public void updateConfiguration(Configuration config) { argument
86 int changes = mConfiguration.updateFrom(config);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiApConfigStore.java143 WifiConfiguration config = new WifiConfiguration();
153 config.SSID = in.readUTF();
155 config.allowedKeyManagement.set(authType);
157 config.preSharedKey = in.readUTF();
159 mWifiApConfig = config;
175 private void writeApConfiguration(final WifiConfiguration config) { argument
182 out.writeUTF(config.SSID);
183 int authType = config.getAuthType();
186 out.writeUTF(config.preSharedKey);
204 WifiConfiguration config
[all...]

Completed in 4573 milliseconds

1234567