summaryrefslogtreecommitdiffstats
path: root/services/java/com/android/server/DropBoxManagerService.java
Commit message (Collapse)AuthorAgeFilesLines
* resolved conflicts for merge of 4b94c451 to stage-korg-masterJean-Baptiste Queru2010-12-131-2/+9
|\ | | | | | | Change-Id: I07b974f96ca598677e58623050e4668822e68f23
| * Added dropbox broadcast notificationHakan Still2010-12-081-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | To monitor the dropbox an application have to either poll the dropbox and keep track of all entries or observ the /data/system/dropbox directory. The later requires that the application runs as system-user. This commit adds that a broadcast intent is sent when something is written to the dropbox and an application can just listen on this intent and then reads the entry with help of the DropboxManager class. The application have to hold the permission android.permission.READ_LOGS to get the intent. Change-Id: I1f77f206a243df69f4ed5306078c47f7bf6181ec
* | Work on issue #3101415: Crespo apps seem to have their UID changed over time.Dianne Hackborn2010-10-151-1/+4
| | | | | | | | | | | | fsync! Change-Id: Ie6c5397202579935ac69bf61d3e7b3081ecf269c
* | Don't do single byte writes in DropBoxManagerServiceBrad Fitzpatrick2010-09-221-1/+5
| | | | | | | | | | Bug: 3018772 Change-Id: I6990041f059aeb2a4c29e59b1a3d78d19bf9b02f
* | Remove a log message Jason doesn't likeDan Egnor2010-07-261-2/+0
|/ | | | | Bug: 2856942 Change-Id: Ifc5cfc076bfed0918bb203ed9c82a42092ac3939
* Limit DropBox storage to 1000 files (by default).Dan Egnor2010-03-241-11/+22
| | | | | | | Also does trimming asynchronously (not directly in the broadcast receiver). Bug: 2541253 Change-Id: I7daf8bc618e2dce68a98571f5f7fbce4df1d6a76
* Fix rare NPE in DropBoxManagerServiceDan Egnor2010-03-101-1/+3
| | | | Change-Id: I2e9713802c59feb539d5d4c1ab1dfa21ec88d9f6
* Switch the services library to using the new SlogJoe Onorato2010-03-011-13/+13
|
* Simplify & update ANR logging; report ANR data into the dropbox.Dan Egnor2010-01-111-0/+7
| | | | | | | | | | | | | | Eliminate the per-process 200ms timeout during ANR thread-dumping. Dump all the threads at once, then wait for the file to stabilize. Seems to work great and is much, much, much faster. Don't dump stack traces to traces.txt on app crashes (it isn't very useful and mostly just clutters up the file). Tweak the formatting of the dropbox dumpsys a bit, for readability, and avoid running out of memory when dumping large log files. Report build & kernel version with kernel log dropbox entries.
* move some system services from gservices to secure settingsDoug Zongker2010-01-071-12/+21
| | | | Change-Id: Ie2dfb99a2b42b2cc9310b858c044d8684e3493fa
* More elimination of Formatter (I was tired of waiting severalDan Egnor2009-11-251-26/+26
| | | | seconds for "dumpsys dropbox"...).
* Add boot events (SYSTEM_LAST_KMSG and friends) to the dropbox.Dan Egnor2009-11-171-40/+42
| | | | Optimize DropBoxManagerService.dump() a bit.
* Rename [I]DropBox[Service] to [I]DropBoxManager[Service].Dan Egnor2009-11-121-0/+696
Un-hide the DropBoxManager interface, and update the public API accordingly.