aboutsummaryrefslogtreecommitdiffstats
path: root/emulator
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add keymaps for STOP and FASTFORWARD for bluez4.Jaikumar Ganesh2009-07-271-2/+2
| |
* | am 6675fec4: First pass at a WVGA skin.Xavier Ducrohet2009-07-2521-0/+387
|\ \ | |/ | | | | | | | | | | Merge commit '6675fec474d86d77947cf68d47dd36e9744b9f14' * commit '6675fec474d86d77947cf68d47dd36e9744b9f14': First pass at a WVGA skin.
| * First pass at a WVGA skin.Xavier Ducrohet2009-07-2421-0/+387
| |
* | am e0f85e6c: Delete non rotating skins and create a QVGA rotating skin.Xavier Ducrohet2009-07-2573-1274/+380
|\ \ | |/ | | | | | | | | | | Merge commit 'e0f85e6c7379c053cd3ece5bdd934337ff66cd45' * commit 'e0f85e6c7379c053cd3ece5bdd934337ff66cd45': Delete non rotating skins and create a QVGA rotating skin.
| * Delete non rotating skins and create a QVGA rotating skin.Xavier Ducrohet2009-07-2473-1274/+380
| | | | | | | | | | HVGA-P and HVGA-L were redundant with HVGA which supports both orientations. QVGA-P and QVGA-L has been replaced with QVGA which supports both orientations.
* | am 8aa42da0: Merge change 5638 into donutAndroid (Google) Code Review2009-06-305-0/+10
|\ \ | |/ | | | | | | | | | | Merge commit '8aa42da0f27be2437e02f43c203dc55ca085ee77' * commit '8aa42da0f27be2437e02f43c203dc55ca085ee77': Skins can now provide their own hardware support (via AVDs)
| * Skins can now provide their own hardware support (via AVDs)Xavier Ducrohet2009-06-295-0/+10
| |
* | Add new Bluez4 PLAY/PAUSE keycodes.Jaikumar Ganesh2009-06-111-1/+2
| |
* | am 8b057ed6: Fix bad qemud crash on emulator startup.David 'Digit' Turner2009-05-261-5/+4
|\ \ | |/ | | | | | | | | | | Merge commit '8b057ed6f6ec4e9eb829b230d6f2d35eaef8658e' * commit '8b057ed6f6ec4e9eb829b230d6f2d35eaef8658e': Fix bad qemud crash on emulator startup.
| * Fix bad qemud crash on emulator startup.David 'Digit' Turner2009-05-261-5/+4
| |
* | am af45b39d: This adds a new helper program (qemu-props) to support the ↵David 'Digit' Turner2009-05-263-2/+154
|\ \ | |/ | | | | | | | | | | | | | | emulated system. Merge commit 'af45b39d887ad4ec4a806d352009cdc28238f21f' * commit 'af45b39d887ad4ec4a806d352009cdc28238f21f': This adds a new helper program (qemu-props) to support the emulated system.
| * This adds a new helper program (qemu-props) to support the emulated system.David 'Digit' Turner2009-05-263-2/+154
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Its purpose is to contact the 'boot-properties' service during the boot process and to set the list of system properties read from the emulator program through it. It must be launched from /system/etc/init.goldfish.rc as root. It depends on the 'boot-properties' service being implemented by the emulator (in a later patch). If not available, it will simply timeout. This also fixes a potential crash in qemud which can happen in the following case: - client sends a command to a service - the service responds with one or more message - the service immediately closes the connection before the client can read the data what happened is that the FDHandler object was buffering out-going packets to the client, but the Multiplexer acted on the disconnection immediately. This resulted in: - client_free() being called - fdhandler_shutdown() being called - the FDHandler being placed on the 'closing' list to be able to send buffered packets later. And 'receiver_close' being called - client_fd_close() being called, which would call client_free() recursively - the second client_free() call would free the object - the first client_free() call would try to free the object again - ==> dlmalloc() detects a double-free and immediately aborts. the fixes simply avoids the calle to receiver_close() in fdhandler_shutdown() since this function is called from an explicit shutdown request from the multiplexer, it doesn't correspond to the case where the client has closed the connection itself.
* | am ceada119: Merge change 2320 into donutAndroid (Google) Code Review2009-05-231-4/+10
|\ \ | |/ | | | | | | | | | | Merge commit 'ceada119d3676a936988cb4b35f75ebf2c28b8ee' * commit 'ceada119d3676a936988cb4b35f75ebf2c28b8ee': Sensors: Use a native_handle for the data channel instead of a single file descriptor.
| * Sensors: Use a native_handle for the data channel instead of a single file ↵Mike Lockwood2009-05-221-4/+10
| | | | | | | | | | | | | | | | | | descriptor. This eliminates the requirement that all sensors share a single file descriptor. This, along with concurrent changes in other projects, fixes bugs b/1614524 and b/1614481 Signed-off-by: Mike Lockwood <lockwood@android.com>
* | am d7dc91d7: Merge change 2030 into donutAndroid (Google) Code Review2009-05-202-0/+67
|\ \ | |/ | | | | | | | | | | Merge commit 'd7dc91d749b920734c9e9f0a21c7c7e9672ef8b6' * commit 'd7dc91d749b920734c9e9f0a21c7c7e9672ef8b6': Add new trace tool for displaying all the memory regions in a process.
| * Add new trace tool for displaying all the memory regions in a process.Jack Veenstra2009-05-192-0/+67
| |
* | am b260872e: Merge change 2024 into donutAndroid (Google) Code Review2009-05-204-19/+67
|\ \ | |/ | | | | | | | | | | Merge commit 'b260872ea4ab52286e1abfa4e79d12feb3d46253' * commit 'b260872ea4ab52286e1abfa4e79d12feb3d46253': Add support for native (JNI) calls to the trace tools.
| * Add support for native (JNI) calls to the trace tools.Jack Veenstra2009-05-194-19/+67
| | | | | | | | | | Also fix a bug in profile_pid.cpp and add better output to stack_dump.cpp.
* | am b08d3a39: Merge change 2004 into donutAndroid (Google) Code Review2009-05-193-158/+330
|\ \ | |/ | | | | | | | | | | Merge commit 'b08d3a396914b1aaba1270a9021289bdbe3cac5f' * commit 'b08d3a396914b1aaba1270a9021289bdbe3cac5f': Handle munmap() and add support for tracing JNI (native) calls.
| * Handle munmap() and add support for tracing JNI (native) calls.Jack Veenstra2009-05-193-158/+330
| | | | | | | | | | | | | | | | | | The munmap() kernel calls are traced but the tracing code wasn't doing anything with them. This caused the number of mapped regions in a process to grow large in some cases and also caused symbol lookup errors in some rare cases. This change also adds support for new trace record types for supporting JNI (native) calls from Java into native code. This helps with constructing a more accurate call stack.
* | am bba5ffb: Merge change 1347 into donutAndroid (Google) Code Review2009-05-112-0/+258
|\ \ | |/ | | | | | | | | | | Merge commit 'bba5ffb847d10a65ce323f3c607f9f842c21e0c1' * commit 'bba5ffb847d10a65ce323f3c607f9f842c21e0c1': Add a new program for checking the correctness of the computed stack from a trace.
| * Add a new program for checking the correctness of the computed stack from a ↵Jack Veenstra2009-05-112-0/+258
| | | | | | | | | | | | | | | | | | | | trace. The check_stack program checks that the generated stack that includes both native functions and Java methods (generated from the emulator instruction trace plus the method trace) is consistent with the stack of Java methods that is computed from the method trace alone. (The method trace is generated by the Dalvik interpreter).
* | am e14d320: Merge change 1346 into donutAndroid (Google) Code Review2009-05-112-1/+89
|\ \ | |/ | | | | | | | | | | Merge commit 'e14d320465bc14fd413c3e735643fccb7020db2b' * commit 'e14d320465bc14fd413c3e735643fccb7020db2b': Better output for viewing the method trace.
| * Better output for viewing the method trace.Jack Veenstra2009-05-112-1/+89
| | | | | | | | | | | | This now keeps track of the names of the methods on the stack instead of just the addresses. This makes it easier to debug when something goes wrong.
* | am 6b56383: Merge changes 1344,1345 into donutAndroid (Google) Code Review2009-05-112-27/+75
|\ \ | |/ | | | | | | | | | | | | Merge commit '6b56383a3a9f086700436269e10602bb234cc25d' * commit '6b56383a3a9f086700436269e10602bb234cc25d': Fix the tracing code that keeps track of the Java method stack. Add a "-d time" option to stack_dump to dump the stack at the given time.
| * Fix the tracing code that keeps track of the Java method stack.Jack Veenstra2009-05-111-22/+41
| | | | | | | | | | | | | | This fixes a bug that was causing a "stack overflow" because it sometimes wasn't popping off a Java method when it should have. I also changed the showStack() method so that instead of always printing to stderr, you can pass in a FILE* object to print to.
| * Add a "-d time" option to stack_dump to dump the stack at the given time.Jack Veenstra2009-05-091-5/+34
| |
* | am 2822ae3: Merge change 1343 into donutAndroid (Google) Code Review2009-05-112-21/+21
|\ \ | |/ | | | | | | | | | | Merge commit '2822ae37115ebf13412bbef91339ee0d9454525e' * commit '2822ae37115ebf13412bbef91339ee0d9454525e': Fix compiler warnings by changing "char*" to "const char*".
| * Fix compiler warnings by changing "char*" to "const char*".Jack Veenstra2009-05-092-21/+21
| |
* | am 5ea0a94: Merge change 657 into donutAndroid (Google) Code Review2009-04-299-36/+36
|\ \ | |/ | | | | | | | | | | Merge commit '5ea0a9436cda662264cc0dcf92d3559d532383bb' * commit '5ea0a9436cda662264cc0dcf92d3559d532383bb': Fix a memory deallocation error that was crashing q2dm.
| * Fix a memory deallocation error that was crashing q2dm.Jack Veenstra2009-04-289-36/+36
| | | | | | | | Also fix a bunch of compile warnings by changing "char *" to "const char *".
| * AI 146315: am: CL 146314 modify GSM emulation to accomodate 1.0 and 1.1 ↵David Turner2009-04-151-3/+17
| | | | | | | | | | | | | | | | | | | | | | system images. without this, networking doesn't work well when using the 1.1 add-on with the cupcake sdk Original author: digit Merged from: //branches/cupcake/... Automated import of CL 146315
| * AI 145778: Manual merge changes 145382-145384 from cupcake.Andy Stadler2009-04-101-7/+6
| | | | | | | | Automated import of CL 145778
| * AI 144596: am: CL 144595 Fix the AVD configuration code to support ↵David Turner2009-04-051-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | "sdcard.path" in config.ini to indicate an explicit SD Card image file (instead of using the one in the content directory) Note that this also fix a bug where the SD Card image was not properly locked in the previous implementation. Allow the http-proxy support code to actually manage to receive chunked encoding data, instead of complaining needlessly. Introduce a new CharBuffer object that is used indirectly by "-radio <hostdevice>" and "-gps <hostdevice>" options Add new documentation for QEMUD and CharDriverState objects Update the Audio documentation with ASCII graphics (because I'm an artist too) Original author: digit Merged from: //branches/cupcake/... Automated import of CL 144596
| * AI 143204: am: CL 142988 Remove emulator support from user builds.Mike Lockwood2009-03-272-0/+2
| | | | | | | | | | | | | | | | | | Saves us 52K in /system partition. BUG=1739507 Original author: lockwood Merged from: //branches/cupcake/... Automated import of CL 143204
* | Merge branch 'readonly-p4-master'David Turner2009-04-181-3/+17
|\ \
| * | AI 146565: am: CL 146315 am: CL 146314 modify GSM emulation to accomodate ↵David Turner2009-04-181-3/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1.0 and 1.1 system images. without this, networking doesn't work well when using the 1.1 add-on with the cupcake sdk Original author: digit Merged from: //branches/cupcake/... Original author: android-build Automated import of CL 146565
* | | Merge branch 'readonly-p4-master'Dianne Hackborn2009-04-131-7/+6
|\ \ \ | |/ /
| * | AI 145994: Integrate #145778 from Donut.Dianne Hackborn2009-04-131-7/+6
| | | | | | | | | | | | Automated import of CL 145994
* | | Merge branch 'readonly-p4-master'David Turner2009-04-051-13/+13
|\ \ \ | |/ /
| * | AI 144597: am: CL 144596 am: CL 144595 Fix the AVD configuration code to ↵David Turner2009-04-051-13/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | support "sdcard.path" in config.ini to indicate an explicit SD Card image file (instead of using the one in the content directory) Note that this also fix a bug where the SD Card image was not properly locked in the previous implementation. Allow the http-proxy support code to actually manage to receive chunked encoding data, instead of complaining needlessly. Introduce a new CharBuffer object that is used indirectly by "-radio <hostdevice>" and "-gps <hostdevice>" options Add new documentation for QEMUD and CharDriverState objects Update the Audio documentation with ASCII graphics (because I'm an artist too) Original author: digit Merged from: //branches/cupcake/... Original author: android-build Automated import of CL 144597
| * | AI 143355: am: CL 143204 am: CL 142988 Remove emulator support from user builds.Mike Lockwood2009-03-272-0/+2
| |/ | | | | | | | | | | | | | | | | | | | | Saves us 52K in /system partition. BUG=1739507 Original author: lockwood Merged from: //branches/cupcake/... Original author: android-build Merged from: //branches/donutburger/... Automated import of CL 143355
* | Merge commit 'korg/cupcake'The Android Open Source Project2009-03-274-499/+1485
|\ \
| * | Automated import from //branches/cupcake/...@142988,142988Mike Lockwood2009-03-262-0/+2
| |/
| * auto import from //branches/cupcake_rel/...@140373The Android Open Source Project2009-03-183-499/+1483
| |
* | q2dm: correctly expect the return type of strchr(const char*) to beScott Tsai2009-03-211-2/+2
| | | | | | | | | | | | | | | | | | 'const char*' in C++ so that the code builds on gcc-4.4 ISO C++ overloads strchr() so that strchr(const char*) return 'const char*' and strchr(char *) return 'char *'. Since DmTrace::parseAndAddFunction really wants to write to its 'const char *name' argument I just casted a pointer pointing inside of 'name' to 'char*'
* | Correctly expect the return value of rindex(const char*) to be of typeScott Tsai2009-03-211-2/+2
| | | | | | | | | | | | | | | | | | | | 'const char*' to make the code build on gcc-4.4. The C++ spec overloads string fucntions like strtsr and rindex so that rindex(char *) returns 'char*' and rindex(const char*) returns 'const char*'. Without this patch you get an "invalid conversion from ‘const char*’ to ‘char*’" error on gcc-4.4
* | Merge commit 'remotes/korg/cupcake' into cupcake_to_masterJean-Baptiste Queru2009-03-182-0/+12
|\ \ | |/
| * auto import from //branches/cupcake/...@137873The Android Open Source Project2009-03-112-0/+12
| |
| * auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-03138-0/+13073
| |