summaryrefslogtreecommitdiffstats
path: root/core/jni/Android.mk
Commit message (Collapse)AuthorAgeFilesLines
* Bluetooth: API change.Nick Pelly2009-08-181-1/+1
| | | | | | | | | | | | | | | Split BluetoothDevice into BluetoothDevice and BluetoothAdapter. BluetoothAdapter: Represents the local BT adapter. Operations on the local adapter (start a scan, etc). BluetoothDevice: Represents a remote BT device. Operations on remote devices (pair, connect, etc). IBluetoothDevice.aidl -> Bluetooth.aidl BluetoothDeviceService.java -> BluetoothDeviceService.java TODO: Javadoc
* rename libsgl/libcorecg to libskiaMike Reed2009-07-101-2/+1
|
* Merge commit 'goog/master' into merge_masterMathias Agopian2009-07-011-1/+3
|\
| * am b505ae41: Merge change 5459 into donutAndroid (Google) Code Review2009-06-251-1/+2
| |\ | | | | | | | | | | | | | | | | | | Merge commit 'b505ae4195d9b8a93c71b1f9da6d7d8c3aaa3c08' * commit 'b505ae4195d9b8a93c71b1f9da6d7d8c3aaa3c08': Make the BackupHelperDispatcher properly handle multiple helpers.
| | * Make the BackupHelperDispatcher properly handle multiple helpers.Joe Onorato2009-06-251-1/+2
| | |
| * | am c44989d6: Merge change 5350 into donutAndroid (Google) Code Review2009-06-251-0/+1
| |\ \ | | |/ | | | | | | | | | | | | | | | Merge commit 'c44989d6c7bcc761fb37f54fd37aac2070ba8e5e' * commit 'c44989d6c7bcc761fb37f54fd37aac2070ba8e5e': move ui/Time.cpp to core/jni, since this is the only place it is used
| | * move ui/Time.cpp to core/jni, since this is the only place it is usedMathias Agopian2009-06-251-0/+1
| | |
* | | merge master in master_glMathias Agopian2009-06-241-2/+1
|\ \ \ | |/ /
| * | am 856dd8a6: Merge change 4952 into donutAndroid (Google) Code Review2009-06-221-2/+1
| |\ \ | | |/ | | | | | | | | | | | | | | | Merge commit '856dd8a60a70a5b7dca2bf2114872ce063e2ad60' * commit '856dd8a60a70a5b7dca2bf2114872ce063e2ad60': Helper API cleanup. Allows multiple helpers to function,
| | * Helper API cleanup. Allows multiple helpers to function,Joe Onorato2009-06-221-2/+1
| | | | | | | | | | | | | | | because they'll always go in the same order, and this lets us not have to write headers to keep them paired.
* | | Merge commit 'goog/master' into merge_masterMathias Agopian2009-06-191-1/+6
|\ \ \ | |/ /
| * | Process new property definitions for JIT-specific options for apps ↵Ben Cheng2009-06-191-0/+4
| | | | | | | | | | | | performance tuning and debugging.
| * | am 16ce3504: Merge change 4708 into donutAndroid (Google) Code Review2009-06-181-1/+2
| |\ \ | | |/ | | | | | | | | | | | | | | | Merge commit '16ce3504c5bf98d95d5c36001f755bb4b15253c9' * commit '16ce3504c5bf98d95d5c36001f755bb4b15253c9': Make RestoreHelper and friends also write out the snapshot state.
| | * Make RestoreHelper and friends also write out the snapshot state.Joe Onorato2009-06-181-1/+2
| | |
* | | Merge commit 'goog/master' into merge_masterMathias Agopian2009-06-161-0/+1
|\ \ \ | |/ /
| * | am 2fdd428e: Fix some backup reader/writer issues; make local transport do ↵Christopher Tate2009-06-141-0/+1
| |\ \ | | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | backup Merge commit '2fdd428e0f18384160f7c38ce3a2cd9ba7e7b2c2' * commit '2fdd428e0f18384160f7c38ce3a2cd9ba7e7b2c2': Fix some backup reader/writer issues; make local transport do backup Fix the jni initializer. Add RestoreFileHelper, BackupDataInput, and add java wrappers for the methods on BackupDataOutput. Fix bug #1812041: activity manager crash with bad args. Journal backup requests so that they won't be lost in a crash Fix data connection issues.
| | * Add RestoreFileHelper, BackupDataInput, and add java wrappers for the ↵Joe Onorato2009-06-121-0/+1
| | | | | | | | | | | | methods on BackupDataOutput.
* | | Merge commit 'goog/master' into merge_masterMathias Agopian2009-05-271-3/+2
|\ \ \ | |/ / | | | | | | | | | | | | Conflicts: include/ui/Rect.h libs/ui/ISurfaceComposer.cpp
| * | am c0139711: Merge change 2432 into donutAndroid (Google) Code Review2009-05-271-2/+1
| |\ \ | | |/ | | | | | | | | | | | | | | | Merge commit 'c0139711b0e4a07ad997fb4130c674ed2d90e2fc' * commit 'c0139711b0e4a07ad997fb4130c674ed2d90e2fc': Make android_runtime to not include libemoji but use dlopen() instead.
| | * Make android_runtime to not include libemoji but use dlopen() instead.Daisuke Miyakawa2009-05-271-2/+1
| | | | | | | | | | | | This must be submitted with change 2432
| * | New BluetoothSocket API.Nick Pelly2009-05-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Modeled on blocking java.net.Socket and java.net.ServerSocket library. Public interface is: public final class BluetoothSocket implements Closeable { public static BluetoothSocket createRfcommSocket(String address, int port) throws IOException; public static BluetoothSocket createInsecureRfcommSocket(String address, int port) throws IOException; public void connect() throws IOException; public void close() throws IOException; public String getAddress(); public InputStream getInputStream() throws IOException; public OutputStream getOutputStream() throws IOException; } public final class BluetoothServerSocket implements Closeable { public static BluetoothServerSocket listenUsingRfcommOn(int port) throws IOException; public static BluetoothServerSocket listenUsingUnsecureRfcommOn(int port) throws IOException; public BluetoothSocket accept() throws IOException; public BluetoothSocket accept(int timeout) throws IOException; public void close() throws IOException; }
* | | merge master to master_glMathias Agopian2009-05-221-1/+2
|\ \ \ | |/ /
| * | Remove Database.java API.Nick Pelly2009-05-201-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | This provided SDP functionality to Java, but is not currently used by any Apps. I will shortly be providing SDP functionality in a new API, but it will be quite different to this one, and in the mean-time keeping this stale code updated with other API changes is a pain.
| * | checkpoint: split libutils into libutils + libbinderMathias Agopian2009-05-201-0/+1
| | |
| * | am e2914615: Merge change 2099 into donutAndroid (Google) Code Review2009-05-201-0/+1
| |\ \ | | |/ | | | | | | | | | | | | | | | Merge commit 'e29146158b6048936671decc060d398a68333fc0' * commit 'e29146158b6048936671decc060d398a68333fc0': Hook up the backup data writer, and add a utility to read the backup data files.
| | * Hook up the backup data writer, and add a utility to read the backup data files.Joe Onorato2009-05-201-0/+1
| | |
* | | Merge commit 'goog/master' into merge_masterMathias Agopian2009-05-081-1/+2
|\ \ \ | |/ /
| * | manual merge of 7ec32ccThe Android Open Source Project2009-05-081-1/+2
| |\ \ | | |/ | | | | | | Merge commit '7ec32cc'
| | * More backup testsJoe Onorato2009-05-071-1/+2
| | |
* | | Merge commit 'goog/master' into merge_masterMathias Agopian2009-04-301-0/+1
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: libs/surfaceflinger/Layer.cpp libs/surfaceflinger/SurfaceFlinger.cpp opengl/libagl/egl.cpp opengl/libs/EGL/egl.cpp opengl/libs/GLES_CM/gl.cpp opengl/libs/GLES_CM/gl_api.in opengl/libs/gl_entries.in opengl/libs/tools/glapigen
| * | am 1fb758e: Merge change 546 into donutAndroid (Google) Code Review2009-04-291-0/+1
| |\ \ | | |/ | | | | | | | | | | | | | | | Merge commit '1fb758e94b5b9e342b6dc6452cb5bd7cf0cc4ed6' * commit '1fb758e94b5b9e342b6dc6452cb5bd7cf0cc4ed6': Add (hidden for now) purgeable bitmaps
| | * Add (hidden for now) purgeable bitmapsMike Reed2009-04-241-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | BitmapFactory::Options now let you specify if the resulting bitmap can be "purgeable". If so, then its decoded pixels may be purged when not actively being drawn, freeing up that RAM. When such a bitmap is drawn, it will automatically be re-decoded on demand. This is done by having the bitmap keep a reference/copy of the encoded data. Where it is a reference or a copy is controlled by the "shareable" flag in Options. If this is true, the implementation *may* just reference the encode data (e.g. a file descriptor) rathern than making a complete copy of it. Currently, purgeable is not supported for generic inputstreams, but is enabled for byte-array, file-descriptor, and assets, though for impl reasons only file-descripts are currently enabled for "shareable", but that may change in the future.
| | * Add an Android-specific static OpenGL ES 1.1 Java API.Jack Palevich2009-04-161-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change adds four new public classes that expose a static OpenGL ES 1.1 API: android.opengl.GLES10 android.opengl.GLES10Ext android.opengl.GLES11 android.opengl.GLES11Ext Benefits: + The static API is slightly faster (1% to 4%) than the existing Interface based JSR239 API. + The static API is similar to the C API, which should make it easier to import C-based example code. + The static API provides a clear path for adding new OpenGL ES 1.1 extensions and OpenGL ES 2.0 APIs, neither of which currently have a JSR standard. Example: import static android.opengl.GLES10.*; ... glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); Note that it is possible to mix-and-match calls to both the static and JSR239 APIs. This works because neither API maintains state. They both call through to the same underlying C OpenGL ES APIs. Implementation details: This change enhances the "glgen" "gen" script to generate both the original JSR239 and new static OpenGL ES APIs. The contents of the generated JSR239 classes remained the same as before, so there is no need to check in new versions of the generated JSR239 classes. As part of this work the gen script was updated to be somewhat more robust, and to work with git instead of perforce. The script prints out commands to git add the generated files, but leaves it up to the script runner to actually execute those commands.
* | | Merge commit 'goog/master' into merge_masterMathias Agopian2009-04-171-0/+4
|\ \ \ | |/ /
| * | Manually merge 129, 174, and 233 from donutJack Palevich2009-04-171-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds a static OpenGL ES API. Here are the three commit messages for the original changes: Clean up trivial Eclipse warnings and fix whitespace. Added @Override to overridden methods. Removed unused imports. Converted tabs to spaces. Removed \r characters from end-of-lines. Add .gitignore file to ignore the .class files that are generated when the "gen" script is run. This is the 2nd commit message: Improve glgen + gen script is really a bash script rather than a sh script, so declare that to be true. (For example, it uses pushd, which is a part of bash, but not a part of sh. Not sure how this worked until now. Possibly gen was only run in environments where /bin/sh was really bash. + Check the results of the java compile of the code generator, and abort the script if the compile fails. + Turn on the bash shell option that guards against using uninitialized variables in the script. + Remove the generated class files. Refactor JniCodeEmitter into two classes: a general-purpose JniCodeEmitter and a specific Jsr239CodeEmitter. The hope is to use JniCodeEmitter as a base for emitting static OpenGL ES bindings. This is the 3rd commit message: Add an Android-specific static OpenGL ES 1.1 Java API. This change adds four new public classes that expose a static OpenGL ES 1.1 API: android.opengl.GLES10 android.opengl.GLES10Ext android.opengl.GLES11 android.opengl.GLES11Ext Benefits: + The static API is slightly faster (1% to 4%) than the existing Interface based JSR239 API. + The static API is similar to the C API, which should make it easier to import C-based example code. + The static API provides a clear path for adding new OpenGL ES 1.1 extensions and OpenGL ES 2.0 APIs, neither of which currently have a JSR standard. Example: import static android.opengl.GLES10.*; ... glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); Note that it is possible to mix-and-match calls to both the static and JSR239 APIs. This works because neither API maintains state. They both call through to the same underlying C OpenGL ES APIs. Implementation details: This change enhances the "glgen" "gen" script to generate both the original JSR239 and new static OpenGL ES APIs. The contents of the generated JSR239 classes remained the same as before, so there is no need to check in new versions of the generated JSR239 classes. As part of this work the gen script was updated to be somewhat more robust, and to work with git instead of perforce. The script prints out commands to git add the generated files, but leaves it up to the script runner to actually execute those commands.
* | | Integrate from //sandbox/mathias/donut/...@145728Mathias Agopian2009-04-101-0/+2
|/ / | | | | | | SurfaceFlinger rework for new EGL driver model support.
* | AI 144129: Remove hidden class android.os.Exec.Jack Palevich2009-04-021-1/+0
|/ | | | | | | | | Change BugReportService to use java.os.ProcessBuilder instead. Remove unused import from DumpStateReceiver. An earlier change list created a private copy of this class for Term. BUG=1750582 Automated import of CL 144129
* auto import from //branches/cupcake/...@137197The Android Open Source Project2009-03-091-3/+5
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-031-0/+194
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-031-194/+0
|
* auto import from //branches/cupcake/...@130745The Android Open Source Project2009-02-101-2/+2
|
* auto import from //branches/cupcake/...@126645The Android Open Source Project2009-01-151-0/+5
|
* auto import from //branches/cupcake/...@125939The Android Open Source Project2009-01-091-1/+6
|
* Code drop from //branches/cupcake/...@124589The Android Open Source Project2008-12-171-5/+13
|
* Initial ContributionThe Android Open Source Project2008-10-211-0/+176