summaryrefslogtreecommitdiffstats
path: root/services
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Some debugging support.Dianne Hackborn2010-09-241-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - New feature to "am monitor" to have it automatically launch gdbserv for you when a crash/ANR happens, and tell you how to run the client. - Update dumpstate to match new location of binder debug logs - Various commented out logs that are being used to track down issues. Change-Id: Ia5dd0cd2df983a1fc6be697642a4590aa02a26a5
* | | SIP: longer timeout for making call, shorter for cancellingHung-ying Tyan2010-09-251-1/+1
|/ / | | | | | | | | | | http://b/3021865 Change-Id: I354ebcc00f1ac68e4b7b466745c36aeb314f9138
* | Merge "Move long Connectivity tasks to handler thread." into gingerbreadRobert Greenwalt2010-09-241-92/+198
|\ \
| * | Move long Connectivity tasks to handler thread.Robert Greenwalt2010-09-231-92/+198
| |/ | | | | | | | | | | | | Reduce ANR potential. bug:2942829 Change-Id: I21610b462d5ab91821015cd16eecd86d2c0580d1
* | Merge "Fix issue 3007862" into gingerbreadEric Laurent2010-09-241-40/+49
|\ \
| * | Fix issue 3007862Eric Laurent2010-09-241-40/+49
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed a cross deadlock condition between audioflinger and audio policy service mutexes. Audioflinger::createEffect() locks audioflinger mutex and then calls AudioSystem::getOutputForEffect() which ends up in AudioPolicyService::getOutputForEffect() which locks audio policy service mutex. If at the same time, the command thread in audio policy service is processing a command(set volume, set route...), the mutex is locked and the command will call one audioflinger method which in turn will attempt to lock audioflinger mutex. The fix consists in releasing audioflinger mutex before calling getOutputForEffect(). Change-Id: Id44e7feb36e0a295731f6aa97cf32d022edd34d0
* | | SDP: remove dead code.Chia-chi Yeh2010-09-241-1/+0
| | | | | | | | | | | | Change-Id: I2a5764a2b9cabc54b0ac18666e494c1cb39c4e9b
* | | Refactoring SIP classes to get ready for API review.Hung-ying Tyan2010-09-243-62/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | + replace SipAudioCall and its Listener interfaces with real implementations, + remove SipAudioCallImpl.java, most of it is has become part of SipAudioCall, + add SipSession and its Listener classes to wrap ISipSession and ISipSessionListener, + move SipSessionState to SipSession.State, + make SipManager keep context and remove the context argument from many methods of its, + rename SipManager.getInstance() to newInstance(), + rename constant names for action strings and extra keys to follow conventions, + set thread names for debugging purpose. Change-Id: Ie1790dc0e8f49c06c7fc80d33fec0f673a9c3044
* | | Merge "Crash apps when they provide bad notifications instead of crashing ↵Joe Onorato2010-09-231-1/+3
|\ \ \ | | | | | | | | | | | | the system process." into gingerbread
| * | | Crash apps when they provide bad notifications instead of crashing the ↵Joe Onorato2010-09-231-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | system process. Bug: 2958415 Change-Id: I9cbef340fb20a64eca8493950b814399c26ce197
* | | | Merge "Handle OPTIONS requests from SIP servers." into gingerbreadChung-yih Wang2010-09-231-0/+6
|\ \ \ \ | |_|/ / |/| | |
| * | | Handle OPTIONS requests from SIP servers.Chung-yih Wang2010-09-241-0/+6
| | | | | | | | | | | | | | | | Change-Id: I849d5ea4c4c56a06d25ccdc6b959274c59c47200
* | | | Fix issue #3022508: Crash during media scanDianne Hackborn2010-09-233-234/+489
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't kill processes for excessive wake lock use, even if they are in the background, as long as they have running services. Also fix some problems with this, such as not noting the kill in battery stats. And add killing of processes for cpu usage as well, along with some optimizations to computing CPU usage. And fix BatteryWaster to be better behaving for testing these cases. Add new "monitor" command to am to watch as the activity manager does stuff (so we can catch things at the point of ANR). Finally some miscellaneous debug output for the stuff here, as well as in progress debugging of an ANR. Change-Id: Ib32f55ca50fb7486b4be4eb5e695f8f60c882cd1
* | | Merge "Fix a deadlock I ran into." into gingerbreadDianne Hackborn2010-09-231-13/+13
|\ \ \ | |_|/ |/| |
| * | Fix a deadlock I ran into.Dianne Hackborn2010-09-221-13/+13
| | | | | | | | | | | | | | | | | | | | | Activity manager was calling into the backup service (and other things) with its lock held. Change-Id: Id55093e09cc5fe81b73b85968184816d956e0ae8
* | | Merge "Cleanup Netd to prevent getting hung." into gingerbreadRobert Greenwalt2010-09-233-8/+34
|\ \ \ | |_|/ |/| |
| * | Cleanup Netd to prevent getting hung.Robert Greenwalt2010-09-223-8/+34
| |/ | | | | | | | | | | | | | | | | | | If the sending of the command fails we should note it and not wait forever for the response. We should also not say we're ready until we actually are. bug:2993205 Change-Id: I380f0312ac4693ad184a526b330fdfa23f6ac558
* | Don't do single byte writes in DropBoxManagerServiceBrad Fitzpatrick2010-09-221-1/+5
| | | | | | | | | | Bug: 3018772 Change-Id: I6990041f059aeb2a4c29e59b1a3d78d19bf9b02f
* | Merge "Fix NPE in PowerManagerService on boot, if some settings are ↵Amith Yamasani2010-09-221-8/+17
|\ \ | | | | | | | | | corrupted." into gingerbread
| * | Fix NPE in PowerManagerService on boot, if some settings are corrupted.Amith Yamasani2010-09-221-8/+17
| | | | | | | | | | | | | | | Bug: 2715038 Change-Id: I10c08b359ff3cde732c37eb6dff0877cdb021cd9
* | | Request permission for global audio effects.Eric Laurent2010-09-221-14/+18
|/ / | | | | | | | | | | | | Applications creating an audio effect on the output mix must have the MODIFY_AUDIO_SETTINGS permission. Change-Id: I57d88533f91ad0d33680107d79abcec28f7263b5
* | Merge "GpsLocationProvider: Fix race condition while bringing up APN for ↵Mike Lockwood2010-09-221-2/+7
|\ \ | | | | | | | | | SUPL." into gingerbread
| * | GpsLocationProvider: Fix race condition while bringing up APN for SUPL.Mike Lockwood2010-09-221-2/+7
| |/ | | | | | | | | | | | | | | | | | | | | | | If handleUpdateNetworkState() is called before ConnectivityManager.startUsingNetworkFeature() returns, then we will not call native_agps_data_conn_open() to inform the GPS that the APN is up. So we now set mAGpsDataConnectionState to AGPS_DATA_CONNECTION_OPENING before calling ConnectivityManager.startUsingNetworkFeature() to avoid this problem. Change-Id: I5e1597d6494dc8ab68e608911c546a7a04f2ea07 Signed-off-by: Mike Lockwood <lockwood@android.com>
* | Merge "SipService: fix thread/socket leak" into gingerbreadHung-ying Tyan2010-09-221-3/+3
|\ \ | |/ |/|
| * SipService: fix thread/socket leakHung-ying Tyan2010-09-231-3/+3
| | | | | | | | | | | | | | | | | | | | | | Should call SipSessionGroup.close() instead of closeNotToReceiveCalls() to stop the SIP stack (which will stop the MessageProcessor thread and close its socket). Might be related to ANR's reported by: http://b/issue?id=3021924 http://b/issue?id=3021927 Change-Id: I4ead1d81fc9abac983f5753b825d20bc1cc79866
* | Fix race reading input configuration during system startup.Jeff Brown2010-09-212-23/+42
| | | | | | | | Change-Id: I9360c4ec5c29937fce06b44ffc71fca58c8b3d5f
* | Make wifi scan async. (don't auto-merge)Irfan Sheriff2010-09-211-14/+19
| | | | | | | | | | | | | | | | | | | | | | | | When an entity (NLP for example) acquires a WifiLock and initiates a scan, scan can get blocked until driver starts. scan returns no useful info, scan results are broadcast when obtained. Bug: 2964633 Change-Id: Iaefc32bb6b82f0718285a18ac600e6bbbb096e77
* | Merge "Inet status bug fix" into gingerbreadRobert Greenwalt2010-09-211-0/+16
|\ \
| * | Inet status bug fixRobert Greenwalt2010-09-211-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | Don't wipe out the connected status every time we get a cellular status change. Don't filter out disconnect event for wifi - we need them. bug:3009923 Change-Id: I68cadac5f44d6eb4e0fe711fda7c5d218abb45bd
* | | Fix issue #2999757: "Application Redirected" dialogue showing up erraticallyDianne Hackborn2010-09-201-17/+21
| | | | | | | | | | | | | | | | | | Give up on this for now. Change-Id: Ic66a36d468f8bcb313d9bde2809124cdfd74adb3
* | | Merge "Fix #2999258: ANR in Settings after every reboot" into gingerbreadDianne Hackborn2010-09-201-39/+97
|\ \ \ | |/ / |/| |
| * | Fix #2999258: ANR in Settings after every rebootDianne Hackborn2010-09-201-39/+97
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The main problem here was in the error recovery when we are waiting for a process to start but it has failed for some reason. The code was just setting mPendingBroadcast to null, but this would cause an eventual ANR because the state was not set back to IDLE so we would continue waiting for the broadcast without trying to restart its process. Now we set it to idle. We also need to reset the "nextReceiver" index, so there is a new mPendingBroadcastRecvIndex variable holding what it should be set back to. While digging into this, I found a number of other lesser problems: - There is a race when booting the system where we set mSystemReady to true before restarting the upgrade processes. This could allow a broadcast to happen between those two and its process to immediately be removed. To fix this, there is a new mProcessesReady that is set once we are truly ready to start launching processes. - There were various places where we were calling sendBroadcastLocked() without the flag to send only to receivers... if this is called before mProcessesReady is set, then we would end up sticking any process for the broadcast on the holding list to not get launched until later (and hang up all broadcasts as they want for it). Now we always make sure to set this appropriately. - sendBroadcastInPackage() was not doing all of the validation that sendBroadcast() does. And of course a bunch of new debugging logs that were done in the course of tracking this down. Change-Id: I6134bbd94fdb73db8b693507b29499eae012d543
* | | Merge "Add Inet Condition log to bugreports" into gingerbreadRobert Greenwalt2010-09-201-0/+27
|\ \ \ | |/ / |/| |
| * | Add Inet Condition log to bugreportsRobert Greenwalt2010-09-201-0/+27
| |/ | | | | | | | | | | Reports who reports what condition on which network at what time. Where is implied. Change-Id: I89fbc7323dec438041859fcc934169fa325f0133
* | Merge "LocationManager: Hide location provider and geocode provider APIs." ↵Mike Lockwood2010-09-201-1/+1
|\ \ | | | | | | | | | into gingerbread
| * | LocationManager: Hide location provider and geocode provider APIs.Mike Lockwood2010-09-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Also rename Geocoder.isImplemented() to Geocoder.isPresent() BUG: 3000738 BUG: 3001413 Change-Id: I56bb4e9a9c59f8b79de585eeb168f74c3ff1a853 Signed-off-by: Mike Lockwood <lockwood@android.com>
* | | Merge "DO NOT MERGE. Wifi service now blames apps for its wake lock use." ↵Dianne Hackborn2010-09-201-1/+2
|\ \ \ | |/ / |/| | | | | into gingerbread
| * | DO NOT MERGE. Wifi service now blames apps for its wake lock use.Dianne Hackborn2010-09-201-1/+2
| | | | | | | | | | | | Change-Id: Ic57d8f77527bbfea6a129b8f348fe9108157b4d8
* | | Merge "In theory the package manager now scans /vendor/app" into gingerbreadDianne Hackborn2010-09-201-2/+18
|\ \ \
| * | | In theory the package manager now scans /vendor/appDianne Hackborn2010-09-201-2/+18
| | |/ | |/| | | | | | | | | | | | | Not tested. Change-Id: Ib6120d645074c95dd0afd1476f6167aec5d50bb9
* | | Some battery improvements:Dianne Hackborn2010-09-202-2/+7
|/ / | | | | | | | | | | | | | | | | | | - New API for iterating over history that will allow a better implementation in the future. - Now do writes asynchronously. Also improve the documentation for Activity.onRetainNonInstanceState(). Change-Id: Idf67f2796a8868eb62f288bcbb2bad29876c8554
* | SipService: move event handling out of system server's main threadHung-ying Tyan2010-09-201-1/+66
| | | | | | | | | | | | http://b/issue?id=2998047 Change-Id: Ibe0b6a19bb8b453fa852a94b3daf3cb80d7377b0
* | SIP: convert enum to static final int.Hung-ying Tyan2010-09-203-63/+61
| | | | | | | | | | | | Converts SipErrorCode and SipSessionState. Change-Id: Iee3a465649ea89d395b2336bbd673c25113e5f93
* | Merge "SIP: add config flag for wifi-only configuration." into gingerbreadHung-ying Tyan2010-09-191-0/+11
|\ \
| * | SIP: add config flag for wifi-only configuration.Hung-ying Tyan2010-09-201-0/+11
| | | | | | | | | | | | | | | | | | http://b/issue?id=2994029 Change-Id: I328da9b0f8b70d660dbcefffdac8250341792101
* | | DO NOT MERGE Tethering: Delay 1000ms before processing USB disconnect eventsMike Lockwood2010-09-191-2/+24
| |/ |/| | | | | | | | | | | | | | | | | This change is already in master On some devices, switching the USB configuration to enable RNDIS can result in multiple USB disconnect/reconnect events being generated. Change-Id: I14b02aaca11bb708f6b3334e41a2f4d4fa7b7296 Signed-off-by: Mike Lockwood <lockwood@android.com>
* | Improve power tracking of WIFI use.Dianne Hackborn2010-09-172-13/+52
|/ | | | | | | | | | | | | We now distribute "wifi started" time across all apps that are holding WIFI locks that cause it to be started. But only when WIFI would not normally be running. Also have a mechanism to distribute other WIFI work that has happened across those processes based on their use. Also fixed a bug where we were not retaining the CPU speed step stats across boots...! Change-Id: I00e3153b98429166273750512cc37e7975211ab9
* Merge "Add timer to SIP session creation process." into gingerbreadHung-ying Tyan2010-09-161-23/+96
|\
| * Add timer to SIP session creation process.Hung-ying Tyan2010-09-171-23/+96
| | | | | | | | | | | | | | | | | | | | | | | | + add timer parameter to ISipSession.make/changeCall(), + add timer paramter to SipAudioCall.make/answer/hold/continueCall()'s, + add timer parameter to SipManager.makeAudioCall(), + modify implementation in SipSessionGroup, SipAudioCallImpl accordingly, + make SipPhone to use it with 8-second timeout. http://b/issue?id=2994748 Change-Id: I661a887e5810087ddc5e2318335e2fa427f80ec6
* | Merge "surfaceflinger / GL extensions cleanup" into gingerbreadMathias Agopian2010-09-165-8/+8
|\ \