Searched refs:config (Results 26 - 50 of 228) sorted by relevance

12345678910

/frameworks/native/opengl/libs/EGL/
H A Degl_object.cpp66 egl_surface_t::egl_surface_t(egl_display_t* dpy, EGLConfig config, argument
69 egl_object_t(dpy), surface(surface), config(config), win(win), cnx(cnx)
89 egl_context_t::egl_context_t(EGLDisplay dpy, EGLContext context, EGLConfig config, argument
92 config(config), read(0), draw(0), cnx(cnx), version(version) {
/frameworks/compile/libbcc/
H A Dlibbcc.mk35 LIBBCC_GEN_CONFIG_MK := $(LIBBCC_ROOT_PATH)/libbcc-gen-config-from-mk.mk
40 include $(LIBBCC_ROOT_PATH)/libbcc-config.mk
/frameworks/native/opengl/tests/include/
H A DglTestLib.h32 void glTestPrintEGLConfiguration(EGLDisplay dpy, EGLConfig config);
/frameworks/compile/mclinker/unittests/
H A DReadStageTest.cpp44 m_pLinker->config()->attrFactory().constraint().enableWholeArchive();
45 m_pLinker->config()->attrFactory().constraint().disableAsNeeded();
46 m_pLinker->config()->attrFactory().constraint().setSharedSystem();
49 m_pLinker->config()->attrFactory().predefined().setWholeArchive();
50 m_pLinker->config()->attrFactory().predefined().setDynamic();
58 m_pLinker->config()->options().setDyld("/usr/lib/ld.so.1");
59 m_pLinker->config()->options().setBsymbolic(true);
118 m_pLinker->config()->output().setType(mcld::Output::DynObj);
138 InputTree::iterator input, inEnd = m_pLinker->config()->inputs().end();
139 for (input = m_pLinker->config()
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHealth.java180 BluetoothHealthAppConfiguration config =
185 result = mService.registerAppConfiguration(config, wrapper);
202 * @param config The health app configuration
205 public boolean unregisterAppConfiguration(BluetoothHealthAppConfiguration config) { argument
207 if (mService != null && isEnabled() && config != null) {
209 result = mService.unregisterAppConfiguration(config);
229 * @param config The application configuration which has been registered using
231 * @return If true, the callback associated with the application config will be called.
234 BluetoothHealthAppConfiguration config) {
236 config !
233 connectChannelToSource(BluetoothDevice device, BluetoothHealthAppConfiguration config) argument
262 connectChannelToSink(BluetoothDevice device, BluetoothHealthAppConfiguration config, int channelType) argument
291 disconnectChannel(BluetoothDevice device, BluetoothHealthAppConfiguration config, int channelId) argument
320 getMainChannelFd(BluetoothDevice device, BluetoothHealthAppConfiguration config) argument
433 onHealthAppConfigurationStatusChange(BluetoothHealthAppConfiguration config, int status) argument
439 onHealthChannelStateChange(BluetoothHealthAppConfiguration config, BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd, int channelId) argument
[all...]
H A DBluetoothHealthAppConfiguration.java70 BluetoothHealthAppConfiguration config = (BluetoothHealthAppConfiguration) o;
71 // config.getName() can never be NULL
72 return mName.equals(config.getName()) &&
73 mDataType == config.getDataType() &&
74 mRole == config.getRole() &&
75 mChannelType == config.getChannelType();
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
H A DKeyguardScreenCallback.java60 void recreateMe(Configuration config); argument
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
H A DWifiApStress.java88 WifiConfiguration config = new WifiConfiguration();
89 config.SSID = NETWORK_ID;
90 config.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
91 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
92 config.preSharedKey = PASSWD;
103 assertTrue(mAct.mWifiManager.setWifiApEnabled(config, true));
118 assertTrue(mAct.mWifiManager.setWifiApEnabled(config, false));
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DActivityManagerTest.java97 ConfigurationInfo config = mActivityManager.getDeviceConfigurationInfo();
98 assertNotNull(config);
102 assertEquals(config.reqKeyboardType, vconfig.keyboard);
103 assertEquals(config.reqTouchScreen, vconfig.touchscreen);
104 assertEquals(config.reqNavigation, vconfig.navigation);
106 assertNotNull(config.reqInputFeatures & ConfigurationInfo.INPUT_FEATURE_FIVE_WAY_NAV);
109 assertNotNull(config.reqInputFeatures & ConfigurationInfo.INPUT_FEATURE_HARD_KEYBOARD);
/frameworks/compile/libbcc/runtime/make/
H A Dlib_platforms.mk30 $$(foreach config,$$(Configs),\
31 $$(call Set,$$(var).$$(config),UNDEFINED)))
58 $$(foreach config,$$(Configs),\
59 $$(if $$(call strneq,UNDEFINED,$$($$(var).$$(config))),\
60 $$(call CopyVariable,$$(var).$$(config),$(PlatformKey).$$(var).$$(config))))\
64 $$(foreach config,$$(Configs),\
66 $$(if $$(call strneq,UNDEFINED,$$($$(var).$$(config).$$(arch))),\
67 $$(call CopyVariable,$$(var).$$(config).$$(arch),\
68 $(PlatformKey).$$(var).$$(config)
[all...]
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLImpl.java37 public native boolean eglGetConfigAttrib(EGLDisplay display, EGLConfig config, int attribute, int[] value); argument
53 public EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) { argument
54 int eglContextId = _eglCreateContext(display, config, share_context, attrib_list);
61 public EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) { argument
62 int eglSurfaceId = _eglCreatePbufferSurface(display, config, attrib_list);
69 public EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) { argument
71 _eglCreatePixmapSurface(sur, display, config, native_pixmap, attrib_list);
78 public EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) { argument
92 eglSurfaceId = _eglCreateWindowSurface(display, config, sur, attrib_list);
94 eglSurfaceId = _eglCreateWindowSurfaceTexture(display, config,
148 _eglCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) argument
149 _eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) argument
150 _eglCreatePixmapSurface(EGLSurface sur, EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) argument
151 _eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) argument
152 _eglCreateWindowSurfaceTexture(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) argument
[all...]
/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...]
H A DWifiConfiguration.java517 * @param scannedAP the scan result used to construct the config entry
650 WifiConfiguration config = new WifiConfiguration();
651 config.networkId = in.readInt();
652 config.status = in.readInt();
653 config.disableReason = in.readInt();
654 config.SSID = in.readString();
655 config.BSSID = in.readString();
656 config.preSharedKey = in.readString();
657 for (int i = 0; i < config.wepKeys.length; i++)
658 config
[all...]
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pConfig.java139 WifiP2pConfig config = new WifiP2pConfig();
140 config.deviceAddress = in.readString();
141 config.wps = (WpsInfo) in.readParcelable(null);
142 config.groupOwnerIntent = in.readInt();
143 config.netId = in.readInt();
144 return config;
/frameworks/compile/libbcc/tools/mcld/
H A DMain.cpp187 LinkerConfig* config = NULL; local
190 config = new (std::nothrow) DefaultLinkerConfig();
192 config = new (std::nothrow) LinkerConfig(OptTargetTriple);
194 if (config == NULL) {
203 config->setSOName(OptSOName);
205 config->setSOName(pOutputFilename);
210 config->setSysRoot(OptSysRoot);
215 config->setDyld(OptDyld);
221 config->addWrap(*wrap);
227 config
[all...]
/frameworks/compile/mclinker/tools/mcld/
H A Dmain.cpp180 LinkerConfig* config = NULL; local
183 config = new (std::nothrow) DefaultLinkerConfig();
185 config = new (std::nothrow) LinkerConfig(OptTargetTriple);
187 if (config == NULL) {
196 config->setSOName(OptSOName);
198 config->setSOName(pOutputFilename);
203 config->setSysRoot(OptSysRoot);
208 config->setDyld(OptDyld);
214 config->addWrap(*wrap);
220 config
[all...]
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
H A DWifiClientTest.java123 WifiConfiguration config = new WifiConfiguration();
124 config.SSID = "\"TestSSID1\"";
125 config.allowedKeyManagement.set(KeyMgmt.NONE);
128 int netId = mWifiManager.addNetwork(config);
131 //check config list
135 if (c.networkId == netId && c.SSID.equals(config.SSID)) {
145 //check config list
160 WifiConfiguration config = new WifiConfiguration();
161 config.SSID = "\"TestSSID2\"";
162 config
[all...]
H A DWifiSoftAPTest.java71 WifiConfiguration config = new WifiConfiguration();
72 config.SSID = "abcdefghijklmnopqrstuvwxyz";
73 config.allowedKeyManagement.set(KeyMgmt.NONE);
74 mWifiConfig = config;
/frameworks/native/opengl/tests/gl2_jni/src/com/android/gl2jni/
H A DGL2JNIView.java141 for(EGLConfig config : configs) {
142 int d = findConfigAttrib(egl, display, config,
144 int s = findConfigAttrib(egl, display, config,
147 int r = findConfigAttrib(egl, display, config,
149 int g = findConfigAttrib(egl, display, config,
151 int b = findConfigAttrib(egl, display, config,
153 int a = findConfigAttrib(egl, display, config,
161 closestConfig = config;
169 EGLConfig config, int attribute, int defaultValue) {
171 if (egl.eglGetConfigAttrib(display, config, attribut
168 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
187 printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) argument
291 onSurfaceCreated(GL10 gl, EGLConfig config) argument
[all...]
/frameworks/native/opengl/tests/gl_perfapp/src/com/android/glperf/
H A DGLPerfView.java141 for(EGLConfig config : configs) {
142 int d = findConfigAttrib(egl, display, config,
144 int s = findConfigAttrib(egl, display, config,
147 int r = findConfigAttrib(egl, display, config,
149 int g = findConfigAttrib(egl, display, config,
151 int b = findConfigAttrib(egl, display, config,
153 int a = findConfigAttrib(egl, display, config,
161 closestConfig = config;
169 EGLConfig config, int attribute, int defaultValue) {
171 if (egl.eglGetConfigAttrib(display, config, attribut
168 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
187 printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) argument
291 onSurfaceCreated(GL10 gl, EGLConfig config) argument
[all...]
/frameworks/native/opengl/tests/gldual/src/com/android/gldual/
H A DGLDualGL2View.java144 for(EGLConfig config : configs) {
145 int d = findConfigAttrib(egl, display, config,
147 int s = findConfigAttrib(egl, display, config,
150 int r = findConfigAttrib(egl, display, config,
152 int g = findConfigAttrib(egl, display, config,
154 int b = findConfigAttrib(egl, display, config,
156 int a = findConfigAttrib(egl, display, config,
164 closestConfig = config;
172 EGLConfig config, int attribute, int defaultValue) {
174 if (egl.eglGetConfigAttrib(display, config, attribut
171 findConfigAttrib(EGL10 egl, EGLDisplay display, EGLConfig config, int attribute, int defaultValue) argument
190 printConfig(EGL10 egl, EGLDisplay display, EGLConfig config) argument
294 onSurfaceCreated(GL10 gl, EGLConfig config) argument
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DMiscRegressionTest.java32 Logger.global.config("This has logging Level.CONFIG, should become DEBUG");
/frameworks/base/tools/aapt/
H A DResourceFilter.cpp89 ResourceFilter::match(int axis, const ResTable_config& config) const
91 return match(axis, AaptGroupEntry::getConfigValueForAxis(config, axis));
95 ResourceFilter::match(const ResTable_config& config) const
98 if (!match(i, AaptGroupEntry::getConfigValueForAxis(config, i))) {
/frameworks/native/opengl/tools/glgen/specs/egl/
H A DEGL14.spec8 EGLBoolean eglGetConfigAttrib ( EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value )
9 EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list )
10 EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list )
11 EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )
18 EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list )
23 EGLContext eglCreateContext ( EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list )
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
H A DWifiConnectionTest.java97 for (WifiConfiguration config : networks) {
98 log(config.toString());
111 * @param config is the network configuration
114 private void connectToWifi(WifiConfiguration config) { argument
116 assertTrue("failed to connect to " + config.SSID,
117 mAct.connectToWifiWithConfiguration(config));
126 log("config.SSID = " + config.SSID);
130 assertTrue(config.SSID.contains(mAct.mWifiManager.getConnectionInfo().getSSID()));

Completed in 3410 milliseconds

12345678910