summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-21Merge "Revert "Choreographer: make DEFAULT_FRAME_DELAY can be changed by ↵linaro_android_4.2.2_stayawakeAmit Pundir
using property"" into linaro_android_4.2.2_stayawake
2013-06-21Revert "Choreographer: make DEFAULT_FRAME_DELAY can be changed by using ↵Amit Pundir
property" This reverts commit 72b94d77c463740af232d3738429813d687ff1aa Change-Id: Iee65aac7d2415c814f53ff16017491b386cfcfe0
2013-06-21Revert "Choreographer: fix the typo for the key of DEFAULT_FRAME_DELAY"Amit Pundir
This reverts commit 07751ef04e9edc8d25fcb594b0798a53ba34c827 Change-Id: I5df1c48397d367825f1cda92d092f0bcb9687f2b
2013-05-08Choreographer: fix the typo for the key of DEFAULT_FRAME_DELAYYongqin Liu
There is a bug that using the same key as SKIPPED_FRAME_WARNING_LIMIT for DEFAULT_FRAME_DELAY. In this fix change to use another new key(debug.choreographer.framedelay) for DEFAULT_FRAME_DELAY Change-Id: Id0a92beda1227bdea37ec15a7aa370a6e7da55f2 Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
2013-05-08Choreographer: make DEFAULT_FRAME_DELAY can be changed by using propertyYongqin Liu
In some emulators, it will need to take more time to finish one frame display, and that will cause the idle handler not reached by many message enqueud. so change DEFAULT_FRAME_DELAY to use the value of a property can make this flexible and be able to avoid such problem Change-Id: I25ccc178a2acba4a6090579f2b3bfa690b13a429 Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
2013-03-05Merge "SettingsProvider: disable lockscreen" into linaro_android_4.2.2_stayawakeAmit Pundir
2013-03-05SettingsProvider: disable lockscreenAmit Pundir
Change-Id: Id4c4028a1666e310cc8f3213f2582881dc082268 Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
2013-02-27PowerManagerService HACK: Never go to sleep modeAmit Pundir
Change-Id: Ic82459c794535d910dd907c021e399da24d5a613 Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
2013-02-21bctest: put debug messages to print PASS FAIL status of binder ioctsAmit Pundir
Change-Id: Ieadf464c9be0e4e8d05173d9aadb15b2db3f1e09
2013-02-14enable servicemanager bctestAmit Pundir
Change-Id: I153f2ab94e40739a47238e0782c6e1926304e28b
2013-02-13WindowManagerService: Hack to keep the system from suspendingZach Pfeffer
This seem to be a good, reproducible and lightweight method to predictably disable suspend from happening very, very early in boot. Change-Id: I88c55ddc2a425fa5793fd82ce78cf6440b94ad43 Signed-off-by: Zach Pfeffer <zach.pfeffer@linaro.org>
2013-02-13load non opengles wallpapers for platforms without hardware graphicsAmit Pundir
Platforms without a hardware graphics, frequently get "Unfortunately, System UI Crashed" pop-up message on boot-up, which is due to an Android Runtime Exception "java.lang.RuntimeException: eglConfig not initialized" when SystemUI fail to load OpenGLES wallpapers. This patch make sure that Android runtime checks for GPU availability (by checking a build time property "ro.nohardwaregfx") before loading opengles wallpapers. Change-Id: I1d5a37ff129cdd01c3f98b0cebb54d55469206d2
2013-02-13frameworks/base: Bring back Ethernet Connection ManagerBernhard Rosenkraenzer
Change-Id: I2b9a3c005481c9330e6b68ba403b327a0edd32a5 Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2013-02-13frameworks/base: Fix compile errorsBernhard Rosenkraenzer
Fix ISO C++11 incompatibility in TextLayoutCache and aliasing violation in FontRenderer Change-Id: I19a9560737005e72f706c12c0ccfdcd0c7765b06 Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2013-02-13base: Fix build after Parcel ABI fix in BinderBernhard Rosenkraenzer
Adapt code to the fact that writeString16's first parameter is now an uint16_t* to match the old ABI Change-Id: I138af645c877f343f0490152b9702698b7d36582 Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2013-02-13frameworks/base:(Hack)Print the content displayed with Canvas.drawTextYongqin Liu
This hack allows us to print content that displayed with the drawText method of Canvas.java when ro.debug.drawtext is set to true. This allows us to capture the contents on the screeen which will help us capture benchmark results for thirdparty apps which use drawText of Canvas to display results. Change-Id: Ic114fbe8d469ff27df57c585d3af322c703b4b83 Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
2013-02-13frameworks/base:(Hack)Print the content displayed with WebViewYongqin Liu
This hack allows us to print content that displayed with the loadDataWithBaseURL method of WebViewClassic.java when ro.debug.loadDataWithBaseURL is set to true. This allows us to capture the contents of WebView which will help us capture benchmark results for thirdparty apps which use loadDataWithBaseURL of WebViewClassic to display results. Change-Id: Id8e61e072b867501ef2e0e8eb2f6fb30b13206b4 Signed-off-by: Yongqin Liu <yongqin.liu@linaro.org>
2013-02-13frameworks/base: Fix build in ISO C++11 modeBernhard Rosenkraenzer
Fix various incompatibilities with ISO C++11: - Assumption that char16_t is defined to uint16_t - constexpr usage - macro constructs that could be interpreted as string literals - enum typesafety Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org> Conflicts: cmds/stagefright/SineSource.h core/jni/android/graphics/TextLayoutCache.cpp core/jni/android_util_Binder.cpp core/jni/android_view_KeyCharacterMap.cpp libs/gui/SurfaceTexture.cpp media/libstagefright/OMXCodec.cpp services/audioflinger/AudioResampler.h Change-Id: I185b97f07e89bed93b92546bc0fdf895bd0cc92d
2013-02-13Fix error when cpufreq is loaded at runtimeBernhard Rosenkraenzer
Change-Id: I4691bbfbb1a49b130ba4b9a0ed5ded3601e220fc Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2013-02-13frameworks/base: Fix aliasing violationsBernhard Rosenkraenzer
Fix violations of strict aliasing rules Change-Id: Ia83db6a0be18f52e8f274c581c3b42f031b39247 Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2013-02-13frameworks/base:(Hack)Print the content of textviewVishal Bhoj
This hack allows us to print content of Textview when ro.debug.textview is set . This allows us to capture the contents of textview which will help us capture benchmark results for thirdparty apps which use TextView to display results. Change-Id: I3500cc35b37c08d93e24ccaf12dcce359fc84da2 Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org>
2013-02-13frameworks/base: Fix various aliasing violationsBernhard Rosenkraenzer
Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2013-02-13frameworks: Report 100% battery levelVishal Bhoj
On devices without battery,the level is reported as 0 which causes certain apps which check battery level before executing to fail. The patch ensures that such apps work on devices without battery driver. Change-Id: I13b056ff52455f27de52ad1e459aa3d8c44b43a0 Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org>
2013-02-13frameworks/base: Disable H/w GL rendering based on propertyBernhard Rosenkraenzer
"ro.nohardwaregfx" can be set to true to have software rendering.The property could be set for each board by adding the 2 lines to device.mk file. PRODUCT_PROPERTY_OVERRIDES += \ ro.nohardwaregfx=true Based on ICS patch from Vishal Bhoj <Vishal.Bhoj@linaro.org> Change-Id: I547258ee021034102fe8d8e7cc0cdfa8a63df298 Signed-off-by: Bernhard Rosenkraenzer <Bernhard.Rosenkranzer@linaro.org>
2013-02-08merge in jb-mr1.1-release history after reset to jb-mr1.1-devandroid-4.2.2_r1.2android-4.2.2_r1.1android-4.2.2_r1jb-mr1.1-releaseThe Android Automerger
2013-02-08am 64ab8fdc: Merge "Doc change: remove protocol scheme on dashboard src url ↵android-cts-4.2_r2Dirk Dougherty
to avoid mixed content warning." into jb-mr1-dev # Via Android (Google) Code Review (1) and Dirk Dougherty (1) * commit '64ab8fdcb0a3015d3e6c4db0a1d66443085fd673': Doc change: remove protocol scheme on dashboard src url to avoid mixed content warning.
2013-02-08Merge "Doc change: remove protocol scheme on dashboard src url to avoid ↵Dirk Dougherty
mixed content warning." into jb-mr1-dev
2013-02-07am e60b6023: Merge "makefile changes for gcm javadocs" into jb-mr1-devRobert Ly
# Via Android (Google) Code Review (1) and Robert Ly (1) * commit 'e60b6023ae4fdea932d0effc553dddc38117d235': makefile changes for gcm javadocs
2013-02-08Merge "makefile changes for gcm javadocs" into jb-mr1-devRobert Ly
2013-02-07Doc change: remove protocol scheme on dashboard src url to avoid mixed ↵Dirk Dougherty
content warning. Change-Id: I3003fa163f7c9e10925d96f8d89005b42baed315
2013-02-07am 0e66f16a: Merge "Doc change: Scroller Javadoc Bug # 7966653" into jb-mr1-devKatie McCormick
# Via Android (Google) Code Review (1) and Katie McCormick (1) * commit '0e66f16abd651bdf5833f4aede4899e627d7b333': Doc change: Scroller Javadoc Bug # 7966653
2013-02-08Merge "Doc change: Scroller Javadoc Bug # 7966653" into jb-mr1-devKatie McCormick
2013-02-07Doc change: Scroller Javadoc Bug # 7966653Katie McCormick
Change-Id: I4365946f890a76fcfa78ca9d69f2a8e0848095a9
2013-02-07am 89fafaea: Doc update: clean upKatie McCormick
# Via Katie McCormick * commit '89fafaeae73cc265f13775944ccb2841bbc6766c': Doc update: clean up
2013-02-07merge in jb-mr1.1-release history after reset to jb-mr1.1-devThe Android Automerger
2013-02-07Doc update: clean upKatie McCormick
Change-Id: Idd11b36d54e01671d45764dd6ed327621a3fa682
2013-02-07makefile changes for gcm javadocsRobert Ly
Change-Id: I5653eb710f13f0a097cb1cf447469c4da7342fe2
2013-02-06am 00f49084: Merge "docs: fix renderscript links that currently require ↵Scott Main
redirect" into jb-mr1-dev # Via Android (Google) Code Review (1) and Scott Main (1) * commit '00f490844d89b146e5490204a5a483834950c489': docs: fix renderscript links that currently require redirect
2013-02-06Merge "docs: fix renderscript links that currently require redirect" into ↵Scott Main
jb-mr1-dev
2013-02-05Fix re-enabled state of up after action view collapseAdam Powell
A certain call ordering to the action bar could cause the record of the pre-action view expanded home button enabled state to be incorrect. Store this in all cases, not just when the action view is initially expanded. (Except for when we actually disable it for the expanded view.) If an action view is already expanded when we get a call to change the enabled state of the home/up button, don't modify the state of the up container or other accessibility info, but record the new state if requested. Bug 8142097 Change-Id: I070c151aa9f2046d2114ee541d964bf68c6f0def
2013-02-05Fix re-enabled state of up after action view collapseAdam Powell
A certain call ordering to the action bar could cause the record of the pre-action view expanded home button enabled state to be incorrect. Store this in all cases, not just when the action view is initially expanded. (Except for when we actually disable it for the expanded view.) If an action view is already expanded when we get a call to change the enabled state of the home/up button, don't modify the state of the up container or other accessibility info, but record the new state if requested. Bug 8142097 Change-Id: I070c151aa9f2046d2114ee541d964bf68c6f0def
2013-02-05am d6e0c147: Merge "docs: update auth doc to mention multiple scopes bug ↵Robert Ly
7644251" into jb-mr1-dev # Via Android (Google) Code Review (1) and Robert Ly (1) * commit 'd6e0c147175708bcc02813fc0f4008179e95b9e7': docs: update auth doc to mention multiple scopes bug 7644251
2013-02-05Merge "docs: update auth doc to mention multiple scopes bug 7644251" into ↵Robert Ly
jb-mr1-dev
2013-02-05docs: fix renderscript links that currently require redirectScott Main
Change-Id: Ie12ff2c4be5ca22ac43dfe3a16868c7bef8e4ae8
2013-02-05am 1247fbd4: docs: Removed the -e runner subcommand option. Bug: 7562330quddusc
# Via quddusc * commit '1247fbd43fc9d5492cb97d6313e851a6518ab4b8': docs: Removed the -e runner subcommand option. Bug: 7562330
2013-02-05merge in jb-mr1.1-release history after reset to jb-mr1.1-devThe Android Automerger
2013-02-05docs: Removed the -e runner subcommand option.quddusc
Bug: 7562330 Change-Id: I5fb7ee00583a8c25745796721ded8f6cba6f09ca
2013-02-05am ba84a04a: Merge "docs: update javadocs for gms and gcm" into jb-mr1-devRobert Ly
# Via Android (Google) Code Review (1) and Robert Ly (1) * commit 'ba84a04a2f98683f08cc7c73ec60341dc77d1eb9': docs: update javadocs for gms and gcm
2013-02-05Merge "docs: update javadocs for gms and gcm" into jb-mr1-devRobert Ly
2013-02-05docs: update javadocs for gms and gcmRobert Ly
Change-Id: If5c80d3fac68a6351b652a19c199de1107ebd593