Commit graph

1638 commits

Author SHA1 Message Date
Mike Lockwood
205021cd79 gps: Set SUPL server via hostname rather than IP address.
The GPS engine needs the hostname for the secure SUPL case
and deferring the DNS lookup to the HAL might be helpful in the future
if the SUPL server is on a carrier's private network.

Signed-off-by: Mike Lockwood <lockwood@android.com>
2009-06-19 14:57:20 -04:00
Mike Lockwood
192dee795e am 4403519a: gps: Add hooks for GPS location injection.
Merge commit '4403519ac60f99bf0100a7d6eed79b09bd9e5be7'

* commit '4403519ac60f99bf0100a7d6eed79b09bd9e5be7':
  gps: Add hooks for GPS location injection.
2009-06-11 11:41:27 -07:00
Mike Lockwood
4403519ac6 gps: Add hooks for GPS location injection.
This will allow injecting cell ID location to the GPS
(not implemented yet).
Signed-off-by: Mike Lockwood <lockwood@android.com>
2009-06-11 12:44:52 -04:00
David Turner
6a94ddc311 am d223b72d: am c69847d6: AI 149496: Backport emulator-related donut fixes into cupcake. This includes the following fixes: - remove potential qemud crash at system boot - fix GPS fix emulation - fix inter-emulator networking (DNS resolution helper now behaves correctly on all IPv6-capable systems) - add -prop <name>=<value> option to add system properties on boot - allow F5 keybinding for SEARCH on keyboard-less hardware configurations - allow skins to provide a "search" button - fixed bad QADD/QSUB/QDADD/QDSUB ARM CPU instructions emulation
Merge commit 'd223b72d503dd8f7a87b11daf4871aba10405804'

* commit 'd223b72d503dd8f7a87b11daf4871aba10405804':
  AI 149496: Backport emulator-related donut fixes into cupcake.
2009-06-02 14:37:40 -07:00
David Turner
d223b72d50 am c69847d6: AI 149496: Backport emulator-related donut fixes into cupcake. This includes the following fixes: - remove potential qemud crash at system boot - fix GPS fix emulation - fix inter-emulator networking (DNS resolution helper now behaves correctly on all IPv6-capable systems) - add -prop <name>=<value> option to add system properties on boot - allow F5 keybinding for SEARCH on keyboard-less hardware configurations - allow skins to provide a "search" button - fixed bad QADD/QSUB/QDADD/QDSUB ARM CPU instructions emulation
Merge commit 'c69847d6e5b418ef8e77893de73925aac5c64b5f' into donut

* commit 'c69847d6e5b418ef8e77893de73925aac5c64b5f':
  AI 149496: Backport emulator-related donut fixes into cupcake.
2009-06-02 13:15:19 -07:00
David Turner
c69847d6e5 AI 149496: Backport emulator-related donut fixes into cupcake.
This includes the following fixes:
  - remove potential qemud crash at system boot
  - fix GPS fix emulation
  - fix inter-emulator networking (DNS resolution helper now behaves correctly on all IPv6-capable systems)
  - add -prop <name>=<value> option to add system properties on boot
  - allow F5 keybinding for SEARCH on keyboard-less hardware configurations
  - allow skins to provide a "search" button
  - fixed bad QADD/QSUB/QDADD/QDSUB ARM CPU instructions emulation

Automated import of CL 149496
2009-06-02 12:30:48 -07:00
Android (Google) Code Review
07f6ea1942 Merge changes 2103,2104
* changes:
  move libbinder's header files under includes/binder
  add libbinder to makefile
2009-05-20 13:04:58 -07:00
Mathias Agopian
c1c3eee4a1 move libbinder's header files under includes/binder 2009-05-20 13:03:58 -07:00
Mathias Agopian
9cb19809c6 add libbinder to makefile 2009-05-20 13:03:47 -07:00
Android (Google) Code Review
65b952a29e am d5aa1991: Merge change 2038 into donut
Merge commit 'd5aa199102d893251c2934128494d09f60e44a6a'

* commit 'd5aa199102d893251c2934128494d09f60e44a6a':
  Remove deprecated version of openInputStream.
2009-05-20 08:54:48 -07:00
Android (Google) Code Review
f2f42d24f3 am 3ce68eb3: Merge change 1976 into donut
Merge commit '3ce68eb398b41509fce10819af59a4887a08099f'

* commit '3ce68eb398b41509fce10819af59a4887a08099f':
  Add input source parameter to openInputStream factory function.
2009-05-20 08:54:48 -07:00
David 'Digit' Turner
5ddef140e7 am 86a08ee8: Fix GPS emulation.
Merge commit '86a08ee892c0a569fa940f7bbd90116f502b2dc9'

* commit '86a08ee892c0a569fa940f7bbd90116f502b2dc9':
  Fix GPS emulation.
2009-05-20 08:54:48 -07:00
Android (Google) Code Review
d5aa199102 Merge change 2038 into donut
* changes:
  Remove deprecated version of openInputStream. Continuation of bug 1846343
2009-05-20 07:15:45 -07:00
Android (Google) Code Review
3ce68eb398 Merge change 1976 into donut
* changes:
  Add input source parameter to openInputStream factory function. This change lays the foundation for recording from different sources. A series of changes will follow that implement the factory function for the various hardware configurations. Finally, the deprecated function will be removed. Bug 1846343
2009-05-20 07:14:09 -07:00
David 'Digit' Turner
86a08ee892 Fix GPS emulation.
The problem was that qemu_gps_set_position_mode() was called with the value
GPS_POSITION_MODE_MS_BASED, which corresponds to AGPS (Assisted GPS), and
returned an error (which was not properly filtered by the JNI caller, but this
is the subject of another change).

This explains why GPS emulation doesn't work in the 1.5_r1 SDK. Unfortunately,
this fix requires generating a new system image for 1.5_r2 :-(

By the way, Mike, I don't understand why this position mode is being passed.
Looking at the code in GpsLocationProvider.java, I believe that this can only
happen if a SUPL host is given by the network, and I don't think this is the
case in the emulator, is it?
2009-05-20 14:18:45 +02:00
Dave Sparks
19f53f8083 Remove deprecated version of openInputStream.
Continuation of bug 1846343
2009-05-19 18:36:08 -07:00
Dave Sparks
c61651ca12 Add input source parameter to openInputStream factory function.
This change lays the foundation for recording from different sources.
A series of changes will follow that implement the factory function
for the various hardware configurations. Finally, the deprecated
function will be removed.
Bug 1846343
2009-05-19 13:51:40 -07:00
Mike Lockwood
8fd6a6f53b am 049ae36: GPS: Generalize SUPL support to include AGPS for CDMA
Merge commit '049ae36fcb9e9af8ee5e42284b9320e64b576ebd'

* commit '049ae36fcb9e9af8ee5e42284b9320e64b576ebd':
  GPS: Generalize SUPL support to include AGPS for CDMA
2009-05-11 10:37:28 -07:00
Mike Lockwood
049ae36fcb GPS: Generalize SUPL support to include AGPS for CDMA
Signed-off-by: Mike Lockwood <lockwood@android.com>
2009-05-11 09:47:59 -04:00
Jean-Baptiste Queru
68f7bda787 Merge donut into master 2009-04-22 17:12:35 -07:00
Dmitry Shmidt
7f30871192 Merge branch 'readonly-p4-master' 2009-04-20 09:08:09 -07:00
Dmitry Shmidt
93db627ba0 Merge branch 'readonly-p4-donut' into donut 2009-04-20 09:07:11 -07:00
Dmitry Shmidt
243af8b849 AI 146930: am: CL 146929 Make TI Wifi driver choice framework-independent - part 2
Original author: dimitrysh

Automated import of CL 146930
2009-04-20 09:06:40 -07:00
Dmitry Shmidt
6c0756701f AI 146929: Make TI Wifi driver choice framework-independent - part 2
BUG=1786365

Automated import of CL 146929
2009-04-20 09:05:42 -07:00
Mike Lockwood
1ea5429e78 gps: Add support for bringing up a GSM data connection on demand for SUPL.
Signed-off-by: Mike Lockwood <lockwood@android.com>
2009-04-14 16:21:50 -04:00
The Android Open Source Project
71ff0a19f0 Merge branch 'open_source_no_contributions' into google_internal 2009-03-29 08:55:10 -07:00
The Android Open Source Project
abaadf73a7 Merge commit 'korg/cupcake' 2009-03-27 15:31:11 -07:00
The Android Open Source Project
e18b7b21c2 auto import from //branches/cupcake_rel/...@140373 2009-03-18 17:39:47 -07:00
Jean-Baptiste Queru
c331e9046d Merge commit 'remotes/korg/cupcake' into merge 2009-03-17 16:08:45 -07:00
The Android Open Source Project
ec19f1e4f0 auto import from //branches/cupcake/...@137197 2009-03-09 11:52:14 -07:00
The Android Open Source Project
cc490161f6 auto import from //depot/cupcake/@135843 2009-03-03 19:32:14 -08:00
The Android Open Source Project
3bbe5328cd auto import from //depot/cupcake/@135843 2009-03-03 18:28:48 -08:00
The Android Open Source Project
1c83481e3c auto import from //branches/cupcake/...@132569 2009-02-20 07:38:32 -08:00
The Android Open Source Project
652994d394 auto import from //branches/cupcake/...@132276 2009-02-19 10:57:35 -08:00
The Android Open Source Project
6e5ad3c6e8 auto import from //branches/cupcake/...@130745 2009-02-10 15:44:04 -08:00
The Android Open Source Project
5af6317f26 Merge branch 'cupcake' 2009-01-20 14:05:37 -08:00
The Android Open Source Project
987df5db6d auto import from //branches/cupcake/...@127101 2009-01-20 14:03:59 -08:00
The Android Open Source Project
5ce01674d4 auto import from //branches/cupcake/...@126645 2009-01-15 16:12:14 -08:00