| /hardware/libhardware/modules/audio_remote_submix/ |
| audio_hw.cpp | 146 struct submix_config config; member in struct:android::route_config 359 const struct audio_config * const config, 377 rsxadev->routes[route_idx].config.input_channel_mask = config->channel_mask; 379 rsxadev->routes[route_idx].config.input_sample_rate = config->sample_rate; 384 rsxadev->routes[route_idx].config.output_sample_rate = 48000; 385 rsxadev->routes[route_idx].config.output_channel_mask = AUDIO_CHANNEL_OUT_STEREO; 392 rsxadev->routes[route_idx].config.output_channel_mask = config->channel_mask [all...] |
| /hardware/libhardware/modules/radio/ |
| radio_hw.c | 88 radio_hal_band_config_t config; member in struct:stub_radio_tuner 121 radio_hal_band_config_t config; member in union:thread_command::__anon32299 142 cmd->config = *(radio_hal_band_config_t *)param; 143 ALOGV("%s CMD_CONFIG type %d", __func__, cmd->config.type); 320 tuner->config = cmd->config; 322 event.config = tuner->config; 324 __func__, tuner->config.type, 325 tuner->config.lower_limit, tuner->config.upper_limit) [all...] |
| /hardware/qcom/audio/post_proc/ |
| volume_listener.c | 78 effect_config_t config; member in struct:vol_listener_context_s 318 ALOGV("%s:: volume not changed, stick to same config ..... ", __func__); 353 if (context->config.outputCfg.accessMode == EFFECT_BUFFER_ACCESS_ACCUMULATE) { 406 context->config = *(effect_config_t *)p_cmd_data;
|
| /hardware/qcom/audio/voice_processing/ |
| voice_processing.c | 69 effect_config_t config; member in struct:session_s 295 session->config.inputCfg.samplingRate = 16000; 296 session->config.inputCfg.channels = AUDIO_CHANNEL_IN_MONO; 297 session->config.inputCfg.format = AUDIO_FORMAT_PCM_16_BIT; 298 session->config.outputCfg.samplingRate = 16000; 299 session->config.outputCfg.channels = AUDIO_CHANNEL_IN_MONO; 300 session->config.outputCfg.format = AUDIO_FORMAT_PCM_16_BIT; 333 static int session_set_config(struct session_s *session, effect_config_t *config) 337 if (config->inputCfg.samplingRate != config->outputCfg.samplingRate | [all...] |
| /hardware/qcom/camera/usbcamcore/src/ |
| QCameraMjpegDecode.cpp | 234 jpegd_cfg_t config; local 425 memset(&config, 0, sizeof(jpegd_cfg_t)); 426 config.preference = (jpegd_preference_t) p_args->preference; 427 config.decode_from = JPEGD_DECODE_FROM_AUTO; 428 config.rotation = p_args->rotation; 429 config.scale_factor = p_args->scale_factor; 430 config.hw_rotation = p_args->hw_rotation; 436 rc = jpegd_start(decoder, &config, &dest, &p_output_buffers, output_buffers_count);
|
| /hardware/qcom/display/msm8996/sdm/libs/core/fb/ |
| hw_primary.cpp | 144 DLOGI("Current Config: %u x %u", *curr_x_pixels, *curr_y_pixels); 170 DisplayConfigVariableInfo config; local 178 config.x_pixels = UINT32(atoi(line.c_str() + xpos + 1)); 179 config.y_pixels = UINT32(atoi(line.c_str() + ypos + 1)); 180 DLOGI("Found mode %d x %d", config.x_pixels, config.y_pixels); 181 display_configs_.push_back(config); 184 if (curr_x_pixels == config.x_pixels && curr_y_pixels == config.y_pixels) { 186 DLOGI("Active config index %u", active_config_index_) [all...] |
| /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
| UploadedTexture.java | 20 import android.graphics.Bitmap.Config; 87 public Config config; field in class:UploadedTexture.BorderKey 92 int x = config.hashCode() ^ length; 101 && config == o.config && length == o.length; 119 boolean vertical, Config config, int length) { 122 key.config = config; 233 Config config = bitmap.getConfig(); local [all...] |
| /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/ |
| UploadedTexture.java | 20 import android.graphics.Bitmap.Config; 88 public Config config; field in class:UploadedTexture.BorderKey 93 int x = config.hashCode() ^ length; 102 && config == o.config && length == o.length; 120 boolean vertical, Config config, int length) { 123 key.config = config; 234 Config config = bitmap.getConfig(); local [all...] |
| /packages/apps/Settings/src/com/android/settings/inputmethod/ |
| InputMethodAndSubtypeEnabler.java | 65 final Configuration config = getResources().getConfiguration(); local 66 mHaveHardKeyboard = (config.keyboard == Configuration.KEYBOARD_QWERTY);
|
| /pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
| TestingCamera21.java | 212 XmlPullParser config = getResources().getXml(R.xml.still_camera); local 213 readConfig(config); 252 TLog.e("Unable to parse new config.", e); 254 TLog.e("Unable to read new config.", e);
|
| /prebuilts/tools/common/m2/repository/org/apache/maven/maven-archiver/2.4.1/ |
| maven-archiver-2.4.1.jar | |
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
| ConfigurationDescription.java | 60 private static final String ATTR_CONFIG = "config"; //$NON-NLS-1$ 184 String config = element.getAttribute(ATTR_CONFIG); local 185 Iterable<String> segments = Splitter.on('-').split(config);
|
| /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
| LaunchConfigDelegate.java | 221 // make a config class 222 AndroidLaunchConfiguration config = new AndroidLaunchConfiguration(); local 224 // fill it with the config coming from the ILaunchConfiguration object 225 config.set(configuration); 246 doLaunch(configuration, mode, monitor, project, androidLaunch, config, controller, 252 AndroidLaunchConfiguration config, AndroidLaunchController controller, 257 if (config.mLaunchAction == ACTION_ACTIVITY) { 258 // Get the activity name defined in the config 271 config.mLaunchAction = ACTION_DO_NOTHING; 283 revertToNoActionLaunch(project, config); [all...] |
| /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/launch/ |
| NdkDebuggerTab.java | 257 public void setDefaults(ILaunchConfigurationWorkingCopy config) { 258 NdkHelper.setLaunchConfigDefaults(config); 262 public void initializeFrom(ILaunchConfiguration config) { 263 mGdbPathText.setText(getAttribute(config, NdkLaunchConstants.ATTR_NDK_GDB, 265 mGdbInitPathText.setText(getAttribute(config, 268 mGdbRemotePortText.setText(getAttribute(config, IGDBLaunchConfigurationConstants.ATTR_PORT, 271 List<String> solibs = getAttribute(config, NdkLaunchConstants.ATTR_NDK_SOLIB, 279 private String getAttribute(ILaunchConfiguration config, String key, String defaultValue) { 281 return config.getAttribute(key, defaultValue); 287 private List<String> getAttribute(ILaunchConfiguration config, String key [all...] |
| /system/bt/btif/src/ |
| btif_config.c | 42 #include "osi/include/config.h" 79 static void btif_config_remove_unpaired(config_t *config); 80 static void btif_config_remove_restricted(config_t *config); 133 static pthread_mutex_t lock; // protects operations on |config|. 134 static config_t *config; variable 148 config = btif_config_open(CONFIG_FILE_PATH); 150 if (!config) { 151 LOG_WARN("%s unable to load config file: %s; using backup.", 153 config = btif_config_open(CONFIG_BACKUP_PATH); 157 if (!config) { 221 config_t *config = config_new(filename); local [all...] |
| /system/core/adb/ |
| usb_linux.cpp | 139 struct usb_config_descriptor* config; local 179 // should have config descriptor next 180 config = (struct usb_config_descriptor *)bufptr; 182 if (config->bLength != USB_DT_CONFIG_SIZE || config->bDescriptorType != USB_DT_CONFIG) {
|
| /system/extras/perfprofd/tests/ |
| perfprofd_test.cc | 56 // Temporary config file that we will emit for the daemon to read 140 /// config file. 302 // version of GMS core, then the config directory we're interested in 323 W: unable to open config directory /does/not/exist: (No such file or directory) 324 I: profile collection skipped (missing config directory) 448 // Gracefully handly malformed items in the config file 509 // Set up config to avoid these annotations (they are tested elsewhere) 510 ConfigReader config; local 511 config.overrideUnsignedEntry("collect_cpu_utilization", 0); 512 config.overrideUnsignedEntry("collect_charging_state", 0) [all...] |
| /system/media/alsa_utils/ |
| alsa_device_profile.c | 221 struct pcm_config config = profile->default_config; local 222 config.rate = rate; 226 profile->direction, &config); 321 static int read_alsa_device_config(alsa_device_profile * profile, struct pcm_config * config) 351 config->channels = pcm_params_get_min(alsa_hw_params, PCM_PARAM_CHANNELS); 355 config->channels < 2 && pcm_params_get_max(alsa_hw_params, PCM_PARAM_CHANNELS) >= 2) { 356 config->channels = 2; 358 config->rate = pcm_params_get_min(alsa_hw_params, PCM_PARAM_RATE); 360 if (config->rate < 48000 && 362 config->rate = 48000 [all...] |
| /system/update_engine/payload_consumer/ |
| delta_performer_unittest.cc | 140 PayloadGenerationConfig config; local 141 config.version.major = major_version; 142 config.version.minor = minor_version; 145 EXPECT_TRUE(payload.Init(config)); [all...] |
| /frameworks/base/services/core/java/com/android/server/notification/ |
| ZenModeHelper.java | 98 private final ConditionProviders.Config mServiceConfig; 215 ZenModeConfig config = mConfigs.get(user); local 216 if (config == null) { 217 if (DEBUG) Log.d(TAG, reason + " generating default config for user " + user); 218 config = mDefaultConfig.copy(); 219 config.user = user; 222 setConfigLocked(config, reason); 508 private static void dump(PrintWriter pw, String prefix, String var, ZenModeConfig config) { 510 if (config == null) { 511 pw.println(config); 532 final ZenModeConfig config = ZenModeConfig.readXml(parser, mConfigMigration); local 809 final ZenModeConfig config = ZenModeConfig.readXml(parser, mConfigMigration); local 1089 public final ZenModeConfig config; field in class:ZenModeHelper.H.ConfigMessageData [all...] |
| /packages/apps/Settings/src/com/android/settings/wifi/ |
| WifiConfigController.java | 225 WifiConfiguration config = mAccessPoint.getConfig(); local 226 if (config.getIpAssignment() == IpAssignment.STATIC) { 230 StaticIpConfiguration staticConfig = config.getStaticIpConfiguration(); 239 mSharedCheckBox.setEnabled(config.shared); 240 if (!config.shared) { 244 if (config.getProxySettings() == ProxySettings.STATIC) { 247 } else if (config.getProxySettings() == ProxySettings.PAC) { 253 if (config != null && config.isPasspoint()) { 256 config.providerFriendlyName)) 287 WifiConfiguration config = mAccessPoint.getConfig(); local 456 WifiConfiguration config = new WifiConfiguration(); local 1007 WifiConfiguration config = null; local 1059 WifiConfiguration config = null; local [all...] |
| /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/ |
| saxon-9.1.0.8-dom.jar | |
| /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/ |
| ModuleRepoTest.java | 46 private static final String CONFIG = 65 private static final String FILENAME = "%s.config"; 129 File config = new File(testsDir, String.format(FILENAME, name)); local 134 FileUtil.writeToFile(String.format(CONFIG, preparer, moduleClass, name), config); local 179 assertEquals("Wrong number of config files found.", 3, configFiles.length);
|
| /cts/tests/vr/src/android/vr/cts/ |
| OpenGLESActivity.java | 230 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig config) { 236 EGLContext context = egl.eglCreateContext(display, config, EGL10.EGL_NO_CONTEXT, 256 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig config) { 262 EGLContext context = egl.eglCreateContext(display, config, EGL10.EGL_NO_CONTEXT, 281 EGLConfig config, Object nativeWindow) { 287 result = egl.eglCreateWindowSurface(display, config, nativeWindow, attrib_list); 329 EGLConfig config = chooseConfig(egl, display, configs); local 330 if (config == null) { 331 throw new IllegalArgumentException("No config chosen"); 333 return config; [all...] |
| /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/ |
| DeviceInfoInstrument.java | 209 Configuration config = getContext().getResources().getConfiguration(); local 210 int screenLayout = config.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK;
|