Searched refs:config (Results 76 - 100 of 112) sorted by relevance

12345

/frameworks/base/telephony/java/com/android/internal/telephony/
H A DPhoneBase.java626 Configuration config = am.getConfiguration();
627 config.locale = new Locale(bestMatch.substring(0,2),
629 config.userSetLocale = true;
630 am.updateConfiguration(config);
H A DRIL.java254 // The number of the required config values for broadcast SMS stored in the C struct
1888 public void setGsmBroadcastConfig(SmsBroadcastConfigInfo[] config, Message response) { argument
1891 int numOfConfig = config.length;
1895 rr.mp.writeInt(config[i].getFromServiceId());
1896 rr.mp.writeInt(config[i].getToServiceId());
1897 rr.mp.writeInt(config[i].getFromCodeScheme());
1898 rr.mp.writeInt(config[i].getToCodeScheme());
1899 rr.mp.writeInt(config[i].isSelected() ? 1 : 0);
1906 riljLog(config[i].toString());
/frameworks/base/test-runner/src/android/test/mock/
H A DMockResources.java46 public void updateConfiguration(Configuration config, DisplayMetrics metrics) { argument
/frameworks/base/libs/rs/
H A DAndroid.mk23 # TODO: This should go into build/core/config.mk
/frameworks/base/libs/utils/
H A DAssetManager.cpp211 void AssetManager::setConfiguration(const ResTable_config& config, const char* locale) argument
214 *mConfig = config;
217 } else if (config.language[0] != 0) {
219 spec[0] = config.language[0];
220 spec[1] = config.language[1];
221 if (config.country[0] != 0) {
223 spec[3] = config.country[0];
224 spec[4] = config.country[1];
/frameworks/base/opengl/libs/
H A DAndroid.mk48 # OpenGL drivers config file
/frameworks/base/opengl/tests/gl2_basic/
H A Dgl2_basic.cpp178 void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
220 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/base/opengl/tests/gl_basic/
H A Dgl_basic.cpp97 void printEGLConfiguration(EGLDisplay dpy, EGLConfig config) { argument
139 EGLint returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value);
/frameworks/base/tools/localize/
H A DXLIFFFile.cpp304 if (str.config == m_sourceConfig) {
307 else if (str.config == m_targetConfig) {
311 str.pos.Error("unknown config for string %s: %s", str.id.c_str(),
312 str.config.ToString().c_str());
588 XLIFFFile::GetStats(const string& config) const
591 stat.config = config;
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java843 Configuration config = getResources().getConfiguration();
844 if (config.orientation != Configuration.ORIENTATION_LANDSCAPE) {
990 Configuration config = getResources().getConfiguration();
991 return config.keyboard == Configuration.KEYBOARD_NOKEYS
992 || config.hardKeyboardHidden == Configuration.KEYBOARDHIDDEN_YES;
1250 // However, we skip this change for a config change, since if
1255 Configuration config = getResources().getConfiguration();
1256 if (config.keyboard != Configuration.KEYBOARD_NOKEYS) {
/frameworks/base/core/java/android/view/
H A DViewRoot.java362 final EGLConfig config = configs[0];
368 final EGLContext context = egl.eglCreateContext(eglDisplay, config,
375 final EGLSurface surface = egl.eglCreateWindowSurface(eglDisplay, config, mHolder, null);
917 if (DEBUG_CONFIGURATION) Log.v(TAG, "Visible with new config: "
1648 void updateConfiguration(Configuration config, boolean force) { argument
1650 "Applying new config to window "
1652 + ": " + config);
1655 sConfigCallbacks.get(i).onConfigurationChanged(config);
1660 // have the most recent config, whatever that is. Use
1663 config
[all...]
/frameworks/base/services/java/com/android/server/
H A DKeyInputQueue.java327 public void getInputConfiguration(Configuration config) { argument
329 config.touchscreen = Configuration.TOUCHSCREEN_NOTOUCH;
330 config.keyboard = Configuration.KEYBOARD_NOKEYS;
331 config.navigation = Configuration.NAVIGATION_NONAV;
338 config.touchscreen
343 config.keyboard
348 config.navigation
352 config.navigation
/frameworks/base/core/java/android/app/
H A DActivityManagerNative.java185 Configuration config = Configuration.CREATOR.createFromParcel(data);
188 requestCode, onlyIfNeeded, debug, config);
372 Configuration config = null;
374 config = Configuration.CREATOR.createFromParcel(data);
377 activityIdle(token, config);
748 Configuration config = getConfiguration();
750 config.writeToParcel(reply, 0);
756 Configuration config = Configuration.CREATOR.createFromParcel(data);
757 updateConfiguration(config);
1091 ConfigurationInfo config
1329 startActivityWithConfig(IApplicationThread caller, Intent intent, String resolvedType, Uri[] grantedUriPermissions, int grantedMode, IBinder resultTo, String resultWho, int requestCode, boolean onlyIfNeeded, boolean debug, Configuration config) argument
1551 activityIdle(IBinder token, Configuration config) argument
[all...]
H A DActivity.java3732 Configuration config) {
3734 lastNonConfigurationInstance, null, config);
3743 Configuration config) {
3772 mCurrentConfig = config;
3729 attach(Context context, ActivityThread aThread, Instrumentation instr, IBinder token, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, Object lastNonConfigurationInstance, Configuration config) argument
3737 attach(Context context, ActivityThread aThread, Instrumentation instr, IBinder token, int ident, Application application, Intent intent, ActivityInfo info, CharSequence title, Activity parent, String id, Object lastNonConfigurationInstance, HashMap<String,Object> lastNonConfigurationChildInstances, Configuration config) argument
/frameworks/base/include/utils/
H A DAssetManager.h112 void setConfiguration(const ResTable_config& config, const char* locale = NULL);
/frameworks/base/libs/audioflinger/
H A DAudioPolicyService.cpp178 status_t AudioPolicyService::setForceUse(AudioSystem::force_use usage, AudioSystem::forced_config config) argument
189 if (config < 0 || config >= AudioSystem::NUM_FORCE_CONFIG) {
194 mpPolicyManager->setForceUse(usage, config);
H A DAudioPolicyService.h50 virtual status_t setForceUse(AudioSystem::force_use usage, AudioSystem::forced_config config);
116 // Thread used for tone playback and to send audio config commands to audio flinger
120 // For audio config commands, it is necessary because audio flinger requires that the calling process (user)
/frameworks/base/opengl/tests/lighting1709/src/com/android/lightingtest/
H A DClearActivity.java70 public void onSurfaceCreated(GL10 gl, EGLConfig config) { argument
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DLockPatternKeyguardView.java245 public void recreateMe(Configuration config) {
246 mConfiguration = config;
/frameworks/base/
H A DAndroid.mk57 LOCAL_SRC_FILES += $(call find-other-java-files,core/config/debug)
59 LOCAL_SRC_FILES += $(call find-other-java-files,core/config/ndebug)
295 fwbase_dirs_to_document += core/config/sdk
/frameworks/base/media/java/android/media/
H A DAudioService.java272 "ro.config.vc_call_vol_steps",
1787 int config;
1790 config = AudioSystem.FORCE_BT_DESK_DOCK;
1793 config = AudioSystem.FORCE_BT_CAR_DOCK;
1797 config = AudioSystem.FORCE_NONE;
1799 AudioSystem.setForceUse(AudioSystem.FOR_DOCK, config);
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp489 SkBitmap::Config config = bitmap.getConfig(); local
491 RsElement e = SkBitmapToPredefined(config);
534 SkBitmap::Config config = bitmap.getConfig(); local
536 RsElement e = SkBitmapToPredefined(config);
557 SkBitmap::Config config = bitmap.getConfig(); local
559 RsElement e = SkBitmapToPredefined(config);
/frameworks/base/include/media/
H A DAudioSystem.h347 static status_t setForceUse(force_use usage, forced_config config);
/frameworks/base/tests/CoreTests/android/core/
H A DMiscRegressionTest.java107 Logger.global.config("This has logging Level.CONFIG, should become DEBUG");
/frameworks/base/media/libmedia/
H A DAudioSystem.cpp438 LOGV("ioConfigChanged() new config for output %d samplingRate %d, format %d channels %d frameCount %d latency %d",
537 status_t AudioSystem::setForceUse(force_use usage, forced_config config) argument
541 return aps->setForceUse(usage, config);

Completed in 297 milliseconds

12345