Searched defs:configs (Results 1 - 5 of 5) sorted by relevance

/packages/services/Car/libvehiclenetwork/java/src/com/android/car/vehiclenetwork/
H A DVehiclePropConfigsParcelable.java26 public final VehiclePropConfigs configs; field in class:VehiclePropConfigsParcelable
28 public VehiclePropConfigsParcelable(VehiclePropConfigs configs) { argument
29 this.configs = configs;
35 configs = VehiclePropConfigs.parseFrom(blob);
49 dest.writeBlob(configs.toByteArray());
/packages/apps/LegacyCamera/src/com/android/camera/panorama/
H A DMosaicRendererSurfaceView.java159 throw new IllegalArgumentException("No configs match configSpec");
162 /* Allocate then read the array of minimally matching EGL configs
164 EGLConfig[] configs = new EGLConfig[numConfigs];
165 egl.eglChooseConfig(display, CONFIG_ATTRIBUTES, configs, numConfigs, numConfig);
168 printConfigs(egl, display, configs);
172 return chooseConfig(egl, display, configs);
176 EGLConfig[] configs) {
177 for (EGLConfig config : configs) {
213 EGLConfig[] configs) {
214 int numConfigs = configs
175 chooseConfig(EGL10 egl, EGLDisplay display, EGLConfig[] configs) argument
212 printConfigs(EGL10 egl, EGLDisplay display, EGLConfig[] configs) argument
[all...]
/packages/apps/Settings/src/com/android/settings/drawable/
H A DDrawableWrapper.java54 public void setChangingConfigurations(int configs) { argument
55 mDrawable.setChangingConfigurations(configs);
/packages/services/Car/service/src/com/android/car/hal/
H A DVehicleHal.java266 public static void dumpProperties(PrintWriter writer, Collection<VehiclePropConfig> configs) { argument
267 for (VehiclePropConfig config : configs) {
/packages/services/Car/vehicle_network_service/
H A DVehicleNetworkService.cpp379 vehicle_prop_config_t const* configs = mDevice->list_properties(mDevice, &numConfigs); local
383 mProperties->getList().push_back(&configs[i]);
385 configs = getInternalProperties();
387 mProperties->getList().push_back(&configs[i]);

Completed in 611 milliseconds