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

1 2

  /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...]
  /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);
  /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/tools/localize/
localize.h 31 const string& configs);
33 const vector<string>& configs);
36 int select_files(vector<vector<string> > *allResFiles, const vector<string>& configs,
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...]
  /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: "
  /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...]
  /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) {
  /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/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...]
  /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...]
  /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...]
  /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/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/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);
  /external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/
buildbin.sh 18 CONFIGSDIR=../configs/
  /sdk/eclipse/buildConfig/
build.properties 22 # configs - the list of {os, ws, arch} configurations to build.
43 # configs=win32,win32,x86 & linux,motif,x86
45 configs = *, *, *
46 #configs=win32, win32, x86 & \
57 # By default PDE creates one archive (result) per entry listed in the configs property.
59 # artifacts for all the platforms listed in the configs property.
85 #jnlp.configs=${configs} #uncomment to filter the content of the generated jnlp files based on the configuration being built
  /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];
  /frameworks/base/core/jni/
com_google_android_gles_jni_EGLImpl.cpp 195 jintArray attrib_list, jobjectArray configs, jint config_size, jintArray num_config) {
198 || (configs != NULL && _env->GetArrayLength(configs) < config_size)
206 if (configs == NULL) {
213 success = eglChooseConfig(dpy, attrib_base, configs ? nativeConfigs : 0, config_size, &num);
220 if (success && configs!=NULL) {
223 _env->SetObjectArrayElement(configs, i, obj);
363 jobjectArray configs, jint config_size, jintArray num_config) {
364 if (display == NULL || (configs != NULL && _env->GetArrayLength(configs) < config_size
    [all...]
  /frameworks/base/opengl/java/android/opengl/
EGLLogWrapper.java 48 EGLConfig[] configs, int config_size, int[] num_config) {
55 boolean result = mEgl10.eglChooseConfig(display, attrib_list, configs,
57 arg("configs", configs);
180 public boolean eglGetConfigs(EGLDisplay display, EGLConfig[] configs,
187 boolean result = mEgl10.eglGetConfigs(display, configs, config_size,
189 arg("configs", configs);
  /frameworks/base/opengl/java/com/google/android/gles_jni/
EGLImpl.java 35 public native boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config);
37 public native boolean eglGetConfigs(EGLDisplay display, EGLConfig[] configs, int config_size, int[] num_config);
  /frameworks/base/opengl/java/javax/microedition/khronos/egl/
EGL10.java 97 boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config_size, int[] num_config);
106 boolean eglGetConfigs(EGLDisplay display, EGLConfig[] configs, int config_size, int[] num_config);
  /libcore/luni/src/main/java/java/util/logging/
LogManager.java 450 String configs = props.getProperty("config");
451 if (null != configs) {
452 StringTokenizer st = new StringTokenizer(configs, " ");
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
importgl.h 66 FNDEF(EGLBoolean, eglChooseConfig, (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config));
72 FNDEF(EGLBoolean, eglGetConfigs, (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config));

Completed in 770 milliseconds

1 2