Ficus Kirkpatrick
df5f5ec07f
Automated import from //branches/cupcake/...@141995,141995
2009-03-24 18:48:25 -07:00
Nick Pelly
07c7dbbab6
Automated import from //branches/cupcake/...@141977,141977
2009-03-24 18:46:44 -07:00
Suchi Amalapurapu
7f0ed3c071
Automated import from //branches/cupcake/...@141957,141957
2009-03-24 18:43:00 -07:00
Mike Lockwood
c68d9988a7
Automated import from //branches/cupcake/...@141894,141894
2009-03-24 18:36:06 -07:00
Romain Guy
32f2ccd393
Automated import from //branches/cupcake/...@141884,141884
2009-03-24 18:35:16 -07:00
Eric Fischer
d8b4b0d937
Automated import from //branches/cupcake/...@141866,141866
2009-03-24 18:33:42 -07:00
Jaikumar Ganesh
c3dd32d79c
Automated import from //branches/cupcake/...@141862,141862
2009-03-24 18:32:43 -07:00
Jack Palevich
c8405b6d02
Automated import from //branches/cupcake/...@141857,141857
2009-03-24 18:31:57 -07:00
Ficus Kirkpatrick
4ad62a4538
Automated import from //branches/cupcake/...@141736,141736
2009-03-24 18:17:51 -07:00
Dianne Hackborn
5ba90a0c4c
Automated import from //branches/cupcake/...@141723,141723
2009-03-24 18:15:17 -07:00
Andreas Huber
4873375b2a
Automated import from //branches/cupcake/...@141708,141708
2009-03-24 18:14:23 -07:00
Nick Pelly
610704c159
Automated import from //branches/cupcake/...@141693,141693
2009-03-24 18:10:51 -07:00
Wu-cheng Li
a34bb20db5
Automated import from //branches/cupcake/...@141613,141613
2009-03-24 18:01:34 -07:00
Jason Sams
7f1f3bb174
Automated import from //branches/cupcake/...@141597,141597
2009-03-24 17:58:31 -07:00
Dave Sparks
cb9a44ed08
Automated import from //branches/cupcake/...@141591,141591
2009-03-24 17:57:12 -07:00
Android Code Review
d91450e116
Merge
2009-03-23 15:26:38 -07:00
Android Code Review
4f638e9f08
Merge
2009-03-23 15:25:59 -07:00
Jean-Baptiste Queru
680f8c77d5
Deal better with situations where OpenCORE is disabled.
2009-03-23 12:00:23 -07:00
Scott Tsai
8a2b9083e3
localize: include <cstdio> in files that uses the printf family of
...
functions to make the code build on gcc-4.4
gcc-4.4 further cleaned up header include dependencies so that e.x.
including <iostream> no longer pulls in printf.
2009-03-21 08:08:36 +08:00
Scott Tsai
bfc9f4f830
Include stdio.h in tools/aidl/AST.h to make the code build on gcc-4.4
2009-03-21 07:06:07 +08:00
The Android Open Source Project
c2ad241504
auto import from //branches/cupcake_rel/...@141571
2009-03-19 23:08:54 -07:00
The Android Open Source Project
105925376f
auto import from //branches/cupcake_rel/...@140373
2009-03-18 17:39:46 -07:00
Jean-Baptiste Queru
2a73de7b21
Merge commit 'remotes/korg/cupcake' into merge
...
Conflicts:
core/java/android/view/animation/TranslateAnimation.java
core/jni/Android.mk
core/res/res/values-en-rGB/strings.xml
libs/audioflinger/AudioFlinger.cpp
libs/surfaceflinger/LayerScreenshot.cpp
packages/SettingsProvider/src/com/android/providers/settings/SettingsProvider.java
2009-03-18 11:33:14 -07:00
Jean-Baptiste Queru
42e48026b2
Revert "Add support for camera preview to be in overlay surfaces."
...
This reverts commit c35feb106e8ded282a261ae89075361ae5dc4214.
2009-03-18 11:08:56 -07:00
The Android Open Source Project
ba87e3e6c9
auto import from //branches/cupcake_rel/...@138607
2009-03-13 13:04:22 -07:00
The Android Open Source Project
c39a6e0c51
auto import from //branches/cupcake/...@137873
2009-03-11 12:11:56 -07:00
Jean-Baptiste Queru
69577ae794
Fix build.
...
Change 9099 was a little bit too aggressive and removed a line it shouldn't have.
2009-03-09 17:56:44 -07:00
Cyril Mottier
17ddd72f5c
AbsSeekBar slightly optimized by removing a redundant snippet of code
2009-03-09 21:03:52 +01:00
The Android Open Source Project
b2a3dd88a5
auto import from //branches/cupcake/...@137197
2009-03-09 11:52:12 -07:00
Cyril Mottier
9181dd4e08
A simple fix on a Javadoc comment. The main purpose of this commit is
...
for me to get to know git and repo and how to contribute to the Android
project.
2009-03-08 20:37:54 +01:00
The Android Open Source Project
f5b4b98fad
auto import from //depot/cupcake/@136745
2009-03-05 20:00:43 -08:00
The Android Open Source Project
53b4045212
auto import from //depot/cupcake/@136654
2009-03-05 17:04:48 -08:00
The Android Open Source Project
b22d55b9f8
auto import from //depot/cupcake/@136620
2009-03-05 15:45:10 -08:00
The Android Open Source Project
4df2423a94
auto import from //depot/cupcake/@136594
2009-03-05 14:34:35 -08:00
Yusuke Ohmichi(maimuzo)
accbadeb52
fix issue #1587
2009-03-04 14:14:21 -08:00
Evan JIANG
bfcb2193b3
Fix a FileObserver jni bug.
...
The path string in FileObserver jni will not be automatically released
in the while loop. Then it will cause too many local refs in the ref
table. When received too many file changed notifications/events, the
process will be killed for "Failed adding to JNI local ref table".
Test code:
=============================================================
import android.app.Activity;
import android.os.Bundle;
import android.os.FileObserver;
import android.util.Log;
import java.io.File;
import java.io.IOException;
public class TestApp extends Activity {
public static final String TAG="TestApp";
FileObserver observer;
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
setContentView(R.layout.main);
observer=new FileObserver("/tmp"){
@Override
public void onEvent(int event, String path) {
if(event == FileObserver.CREATE){
Log.e(TAG, "File created [" + path + "]");
}else if(event == FileObserver.DELETE){
Log.e(TAG, "File deleted [" + path + "]");
}
}
};
observer.startWatching();
File f=new File("/tmp/a.txt");
for (int i=0;i<300;i++) {
try {
f.createNewFile();
} catch (IOException e) {
}
f.delete();
}
}
}
================================================
The last 2 lines of the log:
E/dalvikvm( 705): Failed adding to JNI local ref table (has 512
entries)
E/dalvikvm( 705): VM aborting
2009-03-04 12:04:07 -08:00
The Android Open Source Project
c474dec3ff
auto import from //depot/cupcake/@135863
2009-03-04 09:49:09 -08:00
The Android Open Source Project
41df385128
auto import from //depot/cupcake/@135859
2009-03-03 22:58:27 -08:00
The Android Open Source Project
bdbdc4f929
auto import from //depot/cupcake/@135856
2009-03-03 21:00:54 -08:00
The Android Open Source Project
9066cfe988
auto import from //depot/cupcake/@135843
2009-03-03 19:31:44 -08:00
The Android Open Source Project
d83a98f4ce
auto import from //depot/cupcake/@135843
2009-03-03 18:28:45 -08:00
James E. Blair
90329a69f8
Fix issue #1324 : No audible call-waiting indication when in-call volume
...
is low
http://code.google.com/p/android/issues/detail?id=1324
Re-base the internally generated in-call audio volume so that it is
never muted, which is already the case for the hardware routed in-call
audio.
2009-03-03 16:24:40 -08:00
The Android Open Source Project
076357b856
auto import from //depot/cupcake/@132589
2009-03-03 14:04:24 -08:00
The Android Open Source Project
3dec7d563a
auto import from //depot/cupcake/@137055
2009-03-02 22:54:33 -08:00
Android Code Review
3c20152a5d
Merge
2009-03-02 14:18:07 -08:00
Android Code Review
5157efa864
Merge
2009-03-02 13:20:13 -08:00
Adrian Taylor
efd826e911
Fixing LayerScreenshot bitmap config value.
2009-03-02 12:11:47 -08:00
root
9f25eadc48
Fixed typing mistake causing process crashes.
2009-03-02 20:48:27 +01:00
Android Code Review
c8e4d3f918
Merge
2009-03-02 10:44:11 -08:00
James Wylder
074da8f9aa
Change scope on SettingsProvider.mDatabaseHelper and DatabaseHelper
...
This change will allow the DatabaseHelper to be inheritted and extended
without the need to make futher changes to the existing implementation.
2009-02-25 08:38:31 -06:00