[android-porting] Re: [Android-x86 ] Notice: Build broken is fixed

2009-08-02 Thread Chen Yang
Just finished one round of proof build of the public AOSP code: here is the summary: 1.missing one _BYTE_ORDER define in bionic/arch-x86/include/machine/_types.h --- a/libc/arch-x86/include/machine/_types.h +++ b/libc/arch-x86/include/machine/_types.h @@ -119,5 +119,6 @@ typedefvoid *

[android-porting] Re: how to use of built-in hardware video codecs

2009-08-02 Thread spark
implement openmax using hardware accelerate On 7月31日, 上午10时34分, RisingSun wrote: > I suppose that Android uses the OPENCORE from packet video to do all > the stuffs related to video encoding and decoding. I want to use the > built in capabilities of my processor which provides Standard le

[android-porting] Questions about dexopt entry points

2009-08-02 Thread profect
Hi all, Dexopt can deal with two kinds of files, zip and dex, which are differentiated by command line options, --zip and --dex. I find one entry point for --dex in Android system code. It is in the function dvmOptimizeDexFile() in the file DexOptimize.c. In this function only dex is specified. My

[android-porting] Re: Questions about dexopt entry points

2009-08-02 Thread profect
Another related question: Is there any mechanism to prevent other processes to use the output odex file before the current process finishes optimization? Thanks. On Sun, Aug 2, 2009 at 10:07 PM, profect wrote: > Hi all, > > Dexopt can deal with two kinds of files, zip and dex, which are > diff

[android-porting] Re: Calling System.exit(0) causes Dalvik crash

2009-08-02 Thread Mercury
Hi fadden, Thank you for your answer. I have tried to free allocated heap memory to avoid leak memory. I'm meeting another issue about libffi issue and would like to have your comment about it. When Dalvik VM calls to libffi, it causese Dalvik crash with below stack trace: stack trace informa

[android-porting] Re: [Android-x86 ] Notice: Build broken is fixed

2009-08-02 Thread Yi Sun
Have you run the image? There should be more issues, the 10482 was not fixed yet (not sure about today's status), the init.rc has new entries need to add Yi On Sun, Aug 2, 2009 at 3:21 AM, Chen Yang wrote: > Just finished one round of proof build of the public AOSP code: > here is the summa

[android-porting] Re: [Android-x86 ] Notice: Build broken is fixed

2009-08-02 Thread Chen Yang
yes, I have run it. 10482 has 2 issues, my 2nd item fixed one issue. I don't know whether current framework has the right kind of implementation that may expose the 2nd issue of that. At least, from what I have run, I haven't found problems so far. -- Chen On Mon, Aug 3, 2009 at 2:10 AM, Yi Sun w

[android-porting] Re: [Android-x86 ] Notice: Build broken is fixed

2009-08-02 Thread Yi Sun
Chihwei backed out both from android-x86 On 2009-8-2, at 16:54, Chen Yang wrote: > yes, I have run it. > 10482 has 2 issues, my 2nd item fixed one issue. I don't know > whether current framework has the right kind of implementation that > may expose the 2nd issue of that. At least, from wh

[android-porting] Re: List of platforms that android has been ported to

2009-08-02 Thread Howard M. Harte
I ported it to a Sophia Systems Sandgate 2g (PXA270) platform, but never got the touchscreen to work correctly. It was usable with a USB mouse and keyboard, and the filesystem was on Compact FLASH. -Howard On Jul 31, 11:58 pm, Jerome Duval wrote: > There is a started port on the Dell Axim x51v

[android-porting] Re: List of platforms that android has been ported to

2009-08-02 Thread Anil Sasidharan
Hi, Android has been ported to PXA 310 as well. Warm Regards, Anil On Mon, Aug 3, 2009 at 8:01 AM, Howard M. Harte wrote: > > I ported it to a Sophia Systems Sandgate 2g (PXA270) platform, but > never got the touchscreen to work correctly. It was usable with a USB > mouse and k

[android-porting] Problem in connecting to Bluetooth devices

2009-08-02 Thread Sidharth Malhotra
Hi all, I am using the latest cupcake build. When I start Bluetooth (BT) UI and inquire for devices, a few strange things are happening: 1. Sometimes Inquiry does not show any devices on the UI. Upon debgging with help from hcidump, I see that a inquiry command is sent and some devices are found

[android-porting] building android hidden code under frameworks/base/core/java/com/android/internal

2009-08-02 Thread riazrahaman
I find that the code under /frameworks/base/core/java/com/android/ internal to have a few package.html files with "@hide" string, there by hiding all the code in those folders. Also some functions in the code located in those locations have the "@hide" to find a few functions. As per my understan