summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Return CAMERA_ERROR_SERVER_DIED to camera app when camera service dies (bug ↵James Dong2009-07-021-0/+6
| | | | 1956726)
* Fix issue #1673793: Theme styles don't apply.Dianne Hackborn2009-06-301-1/+3
| | | | | | | | | | | | | | | | | | | It turns out this was not a problem in the resource code at all. Rather, the system process has a cache of pre-loaded attributes it uses to avoid continually reloading things as it needs them. Well it turns out this cache wasn't flushed after a package was uninstalled or a configuration changed, so you could re-install an app where you change its style resources so its theme now points to one that is inconsistent in the cache. This is mostly a problem for developers, where they continually install new versions of an app where resources have changed. This could possibly show up when updating an app on a normal phone, although the problem would eventually correct itself since this cache uses weak references. Anyway, the cache is now reworked to be flushed appropriately. This change also includes an update to aapt to be able to dump the contents of bags in resources.
* Merge change 5593 into donutAndroid (Google) Code Review2009-06-291-10/+20
|\ | | | | | | | | * changes: Add in TTS engine interface the methods to query the availability for a language, to set the synthesis audio format, to query the current language, country and variant setting.
| * Add in TTS engine interface the methods to query the availability for a ↵Jean-Michel Trivi2009-06-291-10/+20
| | | | | | | | | | | | | | language, to set the synthesis audio format, to query the current language, country and variant setting.
* | Merge change 5544 into donutAndroid (Google) Code Review2009-06-261-7/+3
|\ \ | | | | | | | | | | | | * changes: Pipe all the camera callbacks to Java to facilitate the addition of new features. This will make it easy to add things like zoom callbacks without modifying the entire camera stack. Bug 1837832.
| * | Pipe all the camera callbacks to Java to facilitate the additionDave Sparks2009-06-261-7/+3
| | | | | | | | | | | | | | | | | | of new features. This will make it easy to add things like zoom callbacks without modifying the entire camera stack. Bug 1837832.
* | | Expand support for different screen sizes.Dianne Hackborn2009-06-261-5/+45
| |/ |/| | | | | | | | | | | | | | | Applications can now declare that they support small, normal, or large screens. Resource selection can also be done based on these sizes. By default, pre-Donut apps are false for small and large, and Donut or later apps are assumed to support all sizes. In either case they can use <supports-screens> in their manifest to declare what they actually support.
* | Use the same interface in the TTS engine interface for setLanguage and ↵Jean-Michel Trivi2009-06-261-10/+31
|/ | | | | | loadLanguage. Adding function to check the support level for a language in TTS engine interface.
* move ui/Time.cpp to core/jni, since this is the only place it is usedMathias Agopian2009-06-251-89/+0
|
* Merge change 5243 into donutAndroid (Google) Code Review2009-06-241-0/+1
|\ | | | | | | | | * changes: Only report "unknown metadata" once per restore helper
| * Only report "unknown metadata" once per restore helperChristopher Tate2009-06-241-0/+1
| | | | | | | | Also removes the auto-free object, replacing it with direct memory manipulation.
* | Cleanup header file. Disallow copy of Camera object by making copyDave Sparks2009-06-241-5/+2
|/ | | | constructor and operator= private.
* Remove deprecated callback function support.Dave Sparks2009-06-241-23/+0
| | | | | | | This is the last of a 3-part change to modify the camera to use a more streamlined callback interface. This change removes the old code. Bug 1884362
* Use a ref-counted callback interface for Camera.Dave Sparks2009-06-241-0/+13
| | | | | | | | | This allows the camera service to hang onto the callback interface until all callbacks have been processed. This prevents problems where pending callbacks in binder worker threads are processed after the Java camera object and its associated native resources have been released. Bug 1884362
* Merge change 5100 into donutAndroid (Google) Code Review2009-06-231-1/+83
|\ | | | | | | | | * changes: Fill in CDMA gaps and clean up ToneGenerator code
| * Fill in CDMA gaps and clean up ToneGenerator codeDavid Krause2009-06-231-1/+83
| |
* | Add file mode to the file-backup saved state blobsChristopher Tate2009-06-231-0/+1
|/ | | | | | | | | | | | | | | | This change puts the file's access mode into the saved-state blob used by the file backup helpers. The tests have been updated for the new blob content format. What this change *doesn't* do is actually backup/restore the file mode. This change is a prerequisite for that, but mode preservation in backup/restore will require adding metadata to the backup data stream itself, so will be approached a bit more carefully. (Also fixed one outright bug in the test program: ReadEntityData() had been changed to return a ssize_t union of either a byte-count or a negative number indicating error, but the test program was still assuming that nonzero == error, and was spuriously failing.)
* add glTexParameteri() and fix glTexParameteriv()Mathias Agopian2009-06-221-1/+1
|
* Merge change 4910 into donutAndroid (Google) Code Review2009-06-221-13/+13
|\ | | | | | | | | * changes: fix warnings that will show up with GCC 4.4 (in master)
| * fix warnings that will show up with GCC 4.4 (in master)Mathias Agopian2009-06-221-13/+13
| |
* | Helper API cleanup. Allows multiple helpers to function,Joe Onorato2009-06-221-0/+3
|/ | | | | because they'll always go in the same order, and this lets us not have to write headers to keep them paired.
* Report densities in badging, debugging for nine patch bug.Dianne Hackborn2009-06-191-1/+1
| | | | | | | The aapt tool now reports all available densities like it already did for locales. Also this includes more resource data output, which I was using to examine bug #1867049 (which at this point I am unable to reproduce).
* backup stuffJoe Onorato2009-06-181-0/+1
|
* Make RestoreHelper and friends also write out the snapshot state.Joe Onorato2009-06-181-0/+35
|
* FileRestoreHelper and RestoreHelperDispatcher work.Joe Onorato2009-06-171-1/+1
|
* checkpoint BackupDatAInput / RestoreHelperJoe Onorato2009-06-161-24/+3
|
* Updating TTS engine interface for setting the language based on language, ↵Jean-Michel Trivi2009-06-161-7/+11
| | | | | | country and variant codes coming from a java.util.Locale instance.
* Merge change 3981 into donutAndroid (Google) Code Review2009-06-123-4/+2
|\ | | | | | | | | * changes: Removed trailing whitespaces.
| * Removed trailing whitespaces.Nicolas Catania2009-06-113-4/+2
| |
* | Make the file backup helper not crash if a file you requestedJoe Onorato2009-06-111-0/+1
| | | | | | | | | | can't be stated. This means you don't need to know if the files you are backing up exist or not -- we'll figure it out for you.
* | Fix SharedPrefsBackupHelper so it doesn't hard code the paths to the files.Joe Onorato2009-06-111-1/+2
|/ | | | This took quite a bit of refactoring.
* Merge change 1548 into donutAndroid (Google) Code Review2009-06-081-7/+31
|\ | | | | | | | | * changes: NJ-1409: (frameworks/base) Support new audio encoding types(AMR and AAC).
| * NJ-1409: (frameworks/base) Support new audio encoding types(AMR and AAC).Jianhong Jiang2009-06-081-7/+31
| |
* | Cleaning up comments in interface for TTS engines.Jean-Michel Trivi2009-06-051-44/+73
| |
* | Updating TtsEngine.h and SynthProxy.cpp so that buffer memoryCharles Chen2009-06-051-17/+22
| | | | | | | | management is handled on the system side.
* | rename a few files to camel-case, add copyright noticesMathias Agopian2009-06-041-0/+0
|/
* Adding TTS error code to signal missing resources (for instance missing ↵Jean-Michel Trivi2009-05-281-1/+2
| | | | language files).
* minor clean-up to Rect and Point.Mathias Agopian2009-05-262-34/+27
| | | | | | - return "const" objects for overloaded operators to disallow constructs like: (a+b) = c; - don't return references to non-static members, it's not always safe. - Point.cpp was empty, so get rid of it
* Fix issue 1846343 - part 1Eric Laurent2009-05-263-7/+18
| | | | | | | | This change is the first part of a fix for issue 1846343, : - Added new enum values for input sources in AudioRecord and MediaRecorder for voice uplink, downlink and uplink+downlink sources. - renamed streamType to inputSource in all native functions handling audio record. A second change is required in opencore author driver and android audio input to completely fix the issue.
* Add header declaring the interface for TTS engines to implement.Jean-Michel Trivi2009-05-211-0/+167
|
* bring the native_handle stuff back from master_glMathias Agopian2009-05-201-8/+10
|
* Hook up the backup data writer, and add a utility to read the backup data files.Joe Onorato2009-05-201-8/+16
|
* Update aapt badging for native code, configs, density, etc.Dianne Hackborn2009-05-181-0/+12
|
* Add the backup data file writer C++ class.Joe Onorato2009-05-151-3/+62
|
* Implement the C++ class to write the backed up file data.Joe Onorato2009-05-152-10/+76
|
* Get the backup calling through to the file backup helper.Joe Onorato2009-05-141-1/+1
| | | | | This includes some cleanup to make the parameters match between BackupService.onBackup and FileBackupHelper.performBackup.
* Modify camera framework to use new streamlined binder interface.Dave Sparks2009-05-112-32/+18
| | | | | | | | | This is the second half of bug 1837832. Modifies the camera client and camera service to use the new binder interface. Removes the old binder interface. There will be one more part to this change to surface the undefined callbacks to the Java layer so that partners can implement new features without having to touch the stack.
* fix the sim build. disables the tests for now.Joe Onorato2009-05-081-1/+1
|
* Add new binder methods to camera client to support generic callbacksDave Sparks2009-05-072-0/+21
| | | | | | | This is the first step in a multi-step change to move from the old specific callbacks to a generic callback. This will allow future flexibility in the interface without requiring binder rewrites. Bug 1837832
* Fixed issue 1709450: Requirements for CDMA Tone GeneratorEric Laurent2009-05-061-19/+70
| | | | | | | | | | Added new tone types for CDMA IS-95 specific tones. Automatic selection between IS-95, CEPT and JAPAN version base on operator country code for call supervisory tones. Also improved tone generator capabilities: - Each tone segment can now generate its own set of frequencies - A tone does not have to be a succession of alternating ON/OFF segments - The sequence repetition does not have to start from first segment