HomeSort by relevance Sort by last modified time
    Searched defs:configs (Results 1 - 25 of 35) sorted by null

1 2

  /frameworks/base/opengl/tests/configdump/
configdump.cpp 68 EGLConfig* configs; local
74 configs = new EGLConfig[n];
75 eglGetConfigs(dpy, configs, n, &n);
81 eglGetConfigAttrib(dpy, configs[i], attributes[attr].attribute, &value);
86 delete [] configs;
  /frameworks/base/libs/ui/
EGLUtils.cpp 69 // Get all the "potential match" configs...
73 EGLConfig* const configs = (EGLConfig*)malloc(sizeof(EGLConfig)*numConfigs); local
74 if (eglChooseConfig(dpy, attrs, configs, numConfigs, &n) == EGL_FALSE) {
75 free(configs);
83 eglGetConfigAttrib(dpy, configs[i], EGL_NATIVE_VISUAL_ID, &nativeVisualId);
85 config = configs[i];
90 free(configs);
  /packages/apps/Camera/src/com/android/camera/ui/
CameraEGLConfigChooser.java 54 throw new RuntimeException("No configs match configSpec");
57 EGLConfig[] configs = new EGLConfig[numConfig[0]]; local
59 mConfigSpec, configs, configs.length, numConfig)) {
63 return chooseConfig(egl, display, configs);
67 EGL10 egl, EGLDisplay display, EGLConfig configs[]) {
76 for (int i = 0, n = configs.length; i < n; ++i) {
78 display, configs[i], EGL10.EGL_STENCIL_SIZE, value)) {
82 result = configs[i];
89 if (result == null) result = configs[0]
    [all...]
  /cts/tests/tests/graphics/src/android/opengl/cts/
EglConfigTest.java 79 // Avoid configs like RGBA0008 which crash even though they have the window bit set.
91 EGLConfig[] configs = new EGLConfig[numConfigs[0]]; local
92 if (egl.eglChooseConfig(display, attributeList, configs, configs.length,
97 if (egl.eglGetConfigAttrib(display, configs[i], EGL10.EGL_CONFIG_ID,
OpenGlEsVersionTest.java 89 EGLConfig[] configs = new EGLConfig[numConfigs[0]]; local
90 if (egl.eglGetConfigs(display, configs, numConfigs[0], numConfigs)) {
93 if (egl.eglGetConfigAttrib(display, configs[i],
107 Log.e(TAG, "Getting configs with EGL10#eglGetConfigs failed: "
112 Log.e(TAG, "Getting number of configs with EGL10#eglGetConfigs failed: "
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
FixLaunchConfig.java 87 ILaunchConfiguration[] configs = findConfigs(mProject.getName()); local
90 for (ILaunchConfiguration config : configs) {
136 // create a temp list to hold all the valid configs
140 ILaunchConfiguration[] configs = manager.getLaunchConfigurations(configType); local
142 for (ILaunchConfiguration config : configs) {
  /cts/tests/src/android/opengl/cts/
EglConfigGLSurfaceView.java 65 EGLConfig[] configs = new EGLConfig[1]; local
66 if (egl.eglChooseConfig(display, attributeList, configs, 1, new int[] {1})) {
68 printConfig(egl, display, configs[0]);
69 return configs[0];
  /development/ndk/platforms/android-5/samples/hello-gl2/src/com/android/gl2jni/
GL2JNIView.java 168 throw new IllegalArgumentException("No configs match configSpec");
171 /* Allocate then read the array of minimally matching EGL configs
173 EGLConfig[] configs = new EGLConfig[numConfigs]; local
174 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
177 printConfigs(egl, display, configs);
181 return chooseConfig(egl, display, configs);
185 EGLConfig[] configs) {
186 for(EGLConfig config : configs) {
222 EGLConfig[] configs) {
223 int numConfigs = configs.length
    [all...]
  /frameworks/base/opengl/tests/gl2_basic/
gl2_basic.cpp 239 EGLConfig* configs = (EGLConfig*) malloc(sizeof(EGLConfig) * numConfig); local
240 if (! configs) {
241 printf("Could not allocate configs.\n");
245 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
248 free(configs);
254 printEGLConfiguration(dpy, configs[i]);
257 free(configs);
  /frameworks/base/opengl/tests/gl2_jni/src/com/android/gl2jni/
GL2JNIView.java 129 throw new IllegalArgumentException("No configs match configSpec");
131 EGLConfig[] configs = new EGLConfig[numConfigs]; local
132 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
133 // printConfigs(egl, display, configs);
134 return chooseConfig(egl, display, configs);
138 EGLConfig[] configs) {
141 for(EGLConfig config : configs) {
178 EGLConfig[] configs) {
179 int numConfigs = configs.length;
183 printConfig(egl, display, configs[i])
    [all...]
  /frameworks/base/opengl/tests/gl_basic/
gl_basic.cpp 170 EGLConfig* configs = (EGLConfig*) malloc(sizeof(EGLConfig) * numConfig); local
171 if (! configs) {
172 printf("Could not allocate configs.\n");
176 returnVal = eglGetConfigs(dpy, configs, numConfig, &numConfig);
179 free(configs);
185 printEGLConfiguration(dpy, configs[i]);
188 free(configs);
  /frameworks/base/opengl/tests/gldual/src/com/android/gldual/
GLDualGL2View.java 132 throw new IllegalArgumentException("No configs match configSpec");
134 EGLConfig[] configs = new EGLConfig[numConfigs]; local
135 egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
136 // printConfigs(egl, display, configs);
137 return chooseConfig(egl, display, configs);
141 EGLConfig[] configs) {
144 for(EGLConfig config : configs) {
181 EGLConfig[] configs) {
182 int numConfigs = configs.length;
186 printConfig(egl, display, configs[i])
    [all...]
  /external/dnsmasq/src/
dhcp.c 492 struct dhcp_config *config_find_by_address(struct dhcp_config *configs, struct in_addr addr)
496 for (config = configs; config; config = config->next)
662 struct dhcp_config *find_config(struct dhcp_config *configs,
673 for (config = configs; config; config = config->next)
690 for (config = configs; config; config = config->next)
696 for (config = configs; config; config = config->next)
703 for (candidate = NULL, count = 0, config = configs; config; config = config->next)
885 struct dhcp_config *configs, *cp; local
887 for (configs = daemon->dhcp_conf; configs; configs = configs->next
    [all...]
option.c 2712 struct dhcp_config *configs, *cp, **up; local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
SimSmsInterfaceManager.java 305 SmsBroadcastConfigInfo[] configs = local
307 return setCellBroadcastConfig(configs) && setCellBroadcastActivation(true);
312 private boolean setCellBroadcastConfig(SmsBroadcastConfigInfo[] configs) {
314 log("Calling setGsmBroadcastConfig with " + configs.length + " configurations");
320 mPhone.mCM.setGsmBroadcastConfig(configs, response);
  /frameworks/base/tools/localize/
localize.cpp 207 const vector<string>& configs)
210 for (size_t i=0; i<configs.size(); i++) {
211 string config = configs[i];
223 vector<string> configs; local
224 configs.push_back(config);
225 err = select_files(&allResFiles, configs, settings, rootDir);
233 select_files(vector<vector<string> > *allResFiles, const vector<string>& configs,
240 for (size_t i=0; i<configs.size(); i++) {
241 const string& config = configs[i];
259 const string& targetLocale, const vector<string>& configs)
628 vector<string> configs; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutDeviceManager.java 183 Map<String, FolderConfiguration> configs = device.getConfigs(); local
184 newDevice.addConfigs(configs);
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettings.java 361 List<WifiConfiguration> configs = mWifiManager.getConfiguredNetworks(); local
362 if (configs != null) {
364 for (WifiConfiguration config : configs) {
  /frameworks/base/tools/aapt/
Command.cpp 1170 Vector<ResTable_config> configs; local
1199 Vector<ResTable_config> configs; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
ConfigurationComposite.java 843 Map<String, FolderConfiguration> configs = mState.device.getConfigs(); local
1306 Map<String, FolderConfiguration> configs = mDeviceList.get(0).getConfigs(); local
    [all...]
  /development/samples/GlobalTime/src/com/android/globaltime/
GlobalTime.java 283 EGLConfig[] configs = new EGLConfig[1]; local
285 egl.eglChooseConfig(dpy, configSpec, configs, 1, num_config);
286 mEGLConfig = configs[0];
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java 764 "No configs match configSpec");
767 EGLConfig[] configs = new EGLConfig[numConfigs]; local
768 if (!egl.eglChooseConfig(display, mConfigSpec, configs, numConfigs,
772 EGLConfig config = chooseConfig(egl, display, configs);
780 EGLConfig[] configs);
    [all...]
  /frameworks/base/opengl/libs/EGL/
egl.cpp 187 egl_config_t* configs; member in struct:android::egl_display_t
191 egl_display_t() : magic('_dpy'), numTotalConfigs(0), configs(0) { }
503 egl_connection_t* const cnx = &gEGLImpl[dp->configs[intptr_t(config)].impl];
740 dp->configs = new egl_config_t[ dp->numTotalConfigs ];
745 dp->configs[k].impl = i;
746 dp->configs[k].config = dp->disp[i].config[j];
747 dp->configs[k].configId = k + 1; // CONFIG_ID start at 1
753 &dp->configs[k].implConfigId);
760 qsort( dp->configs,
816 delete [] dp->configs;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AndroidLaunchController.java 1226 ILaunchConfiguration[] configs = manager.getLaunchConfigurations(type); local
    [all...]
  /frameworks/base/libs/utils/
ResourceTypes.cpp 1261 Vector<const ResTable_type*> configs; member in struct:android::ResTable::Type
3602 Vector<ResTable_config> configs; local
    [all...]

Completed in 1044 milliseconds

1 2