Jason Parekh
de7c071e73
Automated import from //branches/donutburger/...@140559,140559
2009-03-24 17:54:03 -07:00
Jason Parekh
3ff637187a
Automated import from //branches/master/...@140509,140509
2009-03-24 17:50:29 -07:00
Evan Millar
0ea97b8b0b
Automated import from //branches/master/...@140499,140499
2009-03-24 17:49:23 -07:00
Jason Parekh
b109615ebe
Automated import from //branches/donutburger/...@140507,140507
2009-03-24 17:48:25 -07:00
Evan Millar
811058f175
Automated import from //branches/donutburger/...@140497,140497
2009-03-24 17:47:24 -07:00
Grace Kloba
e0e37bc2b4
Automated import from //branches/master/...@140426,140426
2009-03-24 17:39:42 -07:00
Mike Ritter
0859d0b631
Automated import from //branches/master/...@140419,140419
2009-03-24 17:39:14 -07:00
Grace Kloba
ac9de62d2b
Automated import from //branches/donutburger/...@140424,140424
2009-03-24 17:37:48 -07:00
Mike Ritter
cb8bf488c1
Automated import from //branches/donutburger/...@140418,140418
2009-03-24 17:37:19 -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
7b0b1ed979
auto import //branches/master/...@140412
2009-03-18 22:20:26 -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
The Android Open Source Project
15ab3eae2e
auto import from //branches/cupcake/...@132569
2009-02-20 07:38:31 -08:00
The Android Open Source Project
3001a03543
auto import from //branches/cupcake/...@132276
2009-02-19 10:57:31 -08:00
Rebecca Schultz Zavin
c35feb106e
Add support for camera preview to be in overlay surfaces.
...
Signed-off-by: Rebecca Schultz Zavin <rebecca@android.com>
2009-02-13 17:28:15 -08:00
Rebecca Schultz Zavin
31d459d81a
Add getBufferCount API to Overlay objects
...
Signed-off-by: Rebecca Schultz Zavin <rebecca@android.com>
2009-02-13 17:26:28 -08:00
Rebecca Schultz Zavin
bc4afde167
Need to dup file descriptor when reading from the binder for native handles
...
When reading a native handle that has passed through the binder,
the fds have to be duped to prevent them from getting closed when the binder
object is destructed.
Signed-off-by: Rebecca Schultz Zavin <rebecca@android.com>
2009-02-13 16:34:38 -08:00