Eric Chou
|
31225c1b70
|
Bug 777665 - patch 1: Hook up settings to Bluetooth. r=qdot, sr=mrbkap
|
2012-08-30 14:08:50 +08:00 |
Ehsan Akhgari
|
e368dc9c85
|
Bug 579517 - Part 1: Automated conversion of NSPR numeric types to stdint types in Gecko; r=bsmedberg
This patch was generated by a script. Here's the source of the script for
future reference:
function convert() {
echo "Converting $1 to $2..."
find . ! -wholename "*nsprpub*" \
! -wholename "*security/nss*" \
! -wholename "*/.hg*" \
! -wholename "obj-ff-dbg*" \
! -name nsXPCOMCID.h \
! -name prtypes.h \
-type f \
\( -iname "*.cpp" \
-o -iname "*.h" \
-o -iname "*.c" \
-o -iname "*.cc" \
-o -iname "*.idl" \
-o -iname "*.ipdl" \
-o -iname "*.ipdlh" \
-o -iname "*.mm" \) | \
xargs -n 1 sed -i -e "s/\b$1\b/$2/g"
}
convert PRInt8 int8_t
convert PRUint8 uint8_t
convert PRInt16 int16_t
convert PRUint16 uint16_t
convert PRInt32 int32_t
convert PRUint32 uint32_t
convert PRInt64 int64_t
convert PRUint64 uint64_t
convert PRIntn int
convert PRUintn unsigned
convert PRSize size_t
convert PROffset32 int32_t
convert PROffset64 int64_t
convert PRPtrdiff ptrdiff_t
convert PRFloat64 double
|
2012-08-22 11:56:38 -04:00 |
Eric Chou
|
2dc14ca1d9
|
Bug 730992 - Patch 2: The machinery in Bluetooth*Service, r=qdot, sr=mrbkap
---
dom/bluetooth/BluetoothCommon.h | 8 +
dom/bluetooth/BluetoothService.h | 17 +
dom/bluetooth/linux/BluetoothDBusService.cpp | 561 ++++++++++++++++++++++++-
dom/bluetooth/linux/BluetoothDBusService.h | 23 +
4 files changed, 586 insertions(+), 23 deletions(-)
|
2012-08-17 18:35:59 +08:00 |
Gina Yeh
|
141b9509a5
|
Bug 777671 - Final version: add function getPairedDevices() in nsIDOMBluetoothAdapter, r=qdot, sr=mrbkap
---
dom/bluetooth/BluetoothAdapter.cpp | 97 +++++++++++++++++++++++++-
dom/bluetooth/BluetoothAdapter.h | 2 +-
dom/bluetooth/BluetoothPropertyContainer.cpp | 32 +--------
dom/bluetooth/BluetoothPropertyContainer.h | 26 +------
dom/bluetooth/BluetoothService.h | 11 ++-
dom/bluetooth/BluetoothUtils.cpp | 48 ++++++++++++-
dom/bluetooth/BluetoothUtils.h | 9 ++-
dom/bluetooth/linux/BluetoothDBusService.cpp | 93 +++++++++++++++++++++++-
dom/bluetooth/linux/BluetoothDBusService.h | 4 +-
dom/bluetooth/nsIDOMBluetoothAdapter.idl | 3 +-
10 files changed, 261 insertions(+), 64 deletions(-)
|
2012-08-17 10:53:45 +08:00 |
Eric Chou
|
2dcdd775ec
|
Bug 758504 - Final: patch 2: Implement function to remove reserved services. r=qdot
|
2012-08-10 11:17:06 +08:00 |
Eric Chou
|
4596320121
|
Bug 758504 - Final: patch1: Implement function to add reserved services. r=qdot
|
2012-08-10 11:17:06 +08:00 |
Kyle Machulis
|
11d7f94bbe
|
Bug 768306 - Patch 1: Fix error handling in unpacking DBus replies, set up DBus blocking call handling thread; r=mrbkap
|
2012-08-08 10:46:39 -07:00 |
Eric Chou
|
de6f5f272e
|
Bug 780812 - [b2g-bluetooth] Implement function to get RFCOMM channel of specific Bluetooth service; r=qdot
|
2012-08-07 21:19:07 -07:00 |
Kyle Machulis
|
cdf8a37fda
|
Bug 761511: Patch 2 - Added BluetoothPropertyContainer base class and utility functions; r=mrbkap
|
2012-07-31 21:49:59 -07:00 |
Kyle Machulis
|
f8c0d08e82
|
Bug 740744: Asynchronous dbus events for bluetooth, Start/StopDiscovery and device event firing; r=bent sr=mrbkap
|
2012-07-17 20:41:54 -07:00 |