HomeSort by relevance Sort by last modified time
    Searched defs:config (Results 651 - 675 of 2436) sorted by null

<<21222324252627282930>>

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vpx_codec.h 211 } config; /**< Configuration pointer aliasing union */ member in struct:vpx_codec_ctx
  /hardware/intel/common/utils/ISV/omx/
isv_omxcomponent.cpp 455 OMX_CONFIG_BOOLEANTYPE *config = static_cast<OMX_CONFIG_BOOLEANTYPE*>(pComponentConfigStructure); local
456 if (config->bEnabled) {
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/common/devices/
PhysicalDevice.cpp 204 // fill in all config handles
212 bool PhysicalDevice::getDisplayAttributes(uint32_t config,
230 DisplayConfig *configChosen = mDisplayConfigs.itemAt(config);
232 WTRACE("failed to get display config");
279 DisplayConfig *config = mDisplayConfigs.itemAt(i); local
280 delete config;
345 // use active fb dimension as config width/height
346 // add display config vfresh/mFpsDivider to lower FPS
347 DisplayConfig *config = new DisplayConfig(mode.vrefresh/mFpsDivider, local
352 mDisplayConfigs.push_front(config);
374 DisplayConfig *config = mDisplayConfigs.itemAt(j); local
385 DisplayConfig *config = new DisplayConfig(compatMode->vrefresh, local
508 DisplayConfig *config = mDisplayConfigs.itemAt(i); local
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/common/devices/
PhysicalDevice.cpp 198 // fill in all config handles
207 bool PhysicalDevice::getDisplayAttributes(uint32_t config,
225 DisplayConfig *configChosen = mDisplayConfigs.itemAt(config);
227 WLOGTRACE("failed to get display config");
274 DisplayConfig *config = mDisplayConfigs.itemAt(i); local
275 delete config;
340 // use active fb dimension as config width/height
341 DisplayConfig *config = new DisplayConfig(mode.vrefresh, local
346 mDisplayConfigs.push_front(config);
348 // init the active display config
368 DisplayConfig *config = mDisplayConfigs.itemAt(j); local
379 DisplayConfig *config = new DisplayConfig(compatMode->vrefresh, local
481 DisplayConfig *config = mDisplayConfigs.itemAt(i); local
    [all...]
  /hardware/libhardware/modules/vehicle/
vehicle.c 193 vehicle_prop_config_t* config = find_config(data->prop); local
194 if (config == NULL) {
195 ALOGE("vdev_get: cannot find config 0x%x", data->prop);
198 data->value_type = config->value_type;
267 vehicle_prop_config_t* config = find_config(data->prop); local
268 if (config == NULL) {
269 ALOGE("vdev_set: cannot find config 0x%x", data->prop);
272 if (config->value_type != data->value_type) {
274 config->value_type);
435 vehicle_prop_config_t* config = find_config(prop) local
493 vehicle_prop_config_t* config = find_config(prop); local
    [all...]
  /hardware/libhardware/tests/hwc/
util.c 113 unsigned format, EGLConfig *config) {
152 *config = cfg[i];
158 fprintf(stderr, "cannot find matching config\n");
167 EGLConfig config = { 0 }; local
197 if ((res = select_config_for_window(display, config_attrs, format, &config)))
200 surface = eglCreateWindowSurface(display, config, window, NULL);
204 context = eglCreateContext(display, config, EGL_NO_CONTEXT, context_attrs);
  /libcore/ojluni/src/main/java/sun/util/
LocaleServiceProviderPool.java 139 config(e.toString());
143 private static void config(String message) { method in class:LocaleServiceProviderPool
145 logger.config(message);
393 config(
506 config("A locale(" + locale + ") has non-empty extensions, but has illformed fields.");
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
BitmapUtils.java 130 private static Bitmap.Config getConfig(Bitmap bitmap) {
131 Bitmap.Config config = bitmap.getConfig(); local
132 if (config == null) {
133 config = Bitmap.Config.ARGB_8888;
135 return config;
  /packages/apps/Messaging/src/com/android/messaging/sms/
BugleCarrierConfigValuesLoader.java 86 * Loading carrier config values
90 * @return the source of the config, could be "resources" or "resources+system"
168 Configuration config = context.getResources().getConfiguration(); local
169 subConfig.mcc = config.mcc;
170 subConfig.mnc = config.mnc;
179 * Add or update a carrier config key/value pair to the Bundle
  /packages/apps/Settings/src/com/android/settings/vpn2/
AppDialogFragment.java 175 final VpnConfig config = service.getVpnConfig(userId); local
176 return config != null ? config.user : null;
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiApDialog.java 90 WifiConfiguration config = new WifiConfiguration(); local
98 config.SSID = mSsid.getText().toString();
100 config.apBand = mBandIndex;
104 config.allowedKeyManagement.set(KeyMgmt.NONE);
105 return config;
108 config.allowedKeyManagement.set(KeyMgmt.WPA2_PSK);
109 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
112 config.preSharedKey = password;
114 return config;
180 Log.i(TAG, "config on channelIndex : " + mBandIndex + " Band: "
    [all...]
WifiDialogActivity.java 101 final WifiConfiguration config = dialog.getController().getConfig(); local
105 if (config == null) {
110 wifiManager.save(config, null /* listener */);
115 wifiManager.connect(config, null /* listener */);
126 if (config != null) {
127 resultData.putExtra(KEY_WIFI_CONFIGURATION, config);
  /packages/services/Car/service/src/com/android/car/hal/
SensorHalService.java 173 VehiclePropConfig config = mSensorToHalProperty.get(sensorType); local
174 if (config == null) {
178 mHal.subscribeProperty(this, config.getProp(), fixSamplingRateForProperty(config, rate));
183 VehiclePropConfig config; local
185 config = mSensorToHalProperty.get(sensorType);
187 if (config == null) {
191 VehiclePropValue value = mHal.getVehicleNetwork().getProperty(config.getProp());
195 Integer.toHexString(config.getProp()), e);
227 VehiclePropConfig config = mSensorToHalProperty.get(sensorType) local
    [all...]
  /platform_testing/tests/androidbvt/src/com/android/androidbvt/
ConnectivityWifiTests.java 117 WifiConfiguration config = new WifiConfiguration(); local
118 config.SSID = NETWORK_ID;
119 config.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
120 config.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
121 config.preSharedKey = PASSWD;
129 mWifiManager.setWifiApEnabled(config, true));
152 assertTrue("Wifi ap disable call fails", mWifiManager.setWifiApEnabled(config,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
atmlec.h 80 struct atmlec_config_msg config; member in union:atmlec_msg::__anon38954
sdla.h 83 short config; member in struct:sdla_conf
102 short config; member in struct:sdla_dlci_conf
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_stp.h 41 struct ebt_stp_config_info config; member in struct:ebt_stp_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
atmlec.h 80 struct atmlec_config_msg config; member in union:atmlec_msg::__anon40856
sdla.h 83 short config; member in struct:sdla_conf
102 short config; member in struct:sdla_dlci_conf
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_bridge/
ebt_stp.h 41 struct ebt_stp_config_info config; member in struct:ebt_stp_info
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
Canvas.py 57 def config(self, cnf={}, **kw): member in class:CanvasItem
176 def config(self, cnf={}, **kw): member in class:Group
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
Canvas.py 57 def config(self, cnf={}, **kw): member in class:CanvasItem
176 def config(self, cnf={}, **kw): member in class:Group
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/
atmlec.h 85 struct atmlec_config_msg config; member in union:atmlec_msg::__anon55980
mic_common.h 31 __le64 config[0]; member in struct:mic_device_desc
  /prebuilts/ndk/current/platforms/android-21/arch-arm/usr/include/linux/netfilter_bridge/
ebt_stp.h 60 struct ebt_stp_config_info config; member in struct:ebt_stp_info

Completed in 2005 milliseconds

<<21222324252627282930>>