Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2011-07-05 | bluetooth: Remove data in all situations | Luiz Augusto von Dentz | 1 | -22/+57 | |
If an adapter or device is removed any data associate should be removed, otherwise the next time they appear/are created the drivers may not asssociate again. | |||||
2011-06-30 | bluetooth: make uuid profile detection more generic | Luiz Augusto von Dentz | 1 | -13/+18 | |
2011-06-06 | bluetooth: Remove usage of ofono.h | Denis Kenzior | 1 | -1/+3 | |
2011-05-31 | bluetooth: Initialize GError properly | Denis Kenzior | 1 | -1/+1 | |
2011-05-27 | bluetooth: Remove usage of unused variable | Marcel Holtmann | 1 | -2/+1 | |
2011-02-17 | bluetooth: add DBG() messages | Gustavo F. Padovan | 1 | -0/+4 | |
2011-02-17 | bluetooth: fix crash by removing record | Gustavo F. Padovan | 1 | -0/+12 | |
When bluetoothd is not running we should not call RemoveRecord() | |||||
2011-02-17 | bluetooth: change how we report DBus errors | Gustavo F. Padovan | 1 | -13/+20 | |
2011-02-17 | bluetooth: add a bluetoothd connect watch | Gustavo F. Padovan | 1 | -10/+14 | |
This fix a issue with sending DBus messages when bluetoothd is not up yet. | |||||
2011-02-17 | bluetooth: move find_adapter_cb to better place. | Gustavo F. Padovan | 1 | -26/+26 | |
2011-02-15 | bluetooth: Reset adapter_any_path to NULL in unref | Denis Kenzior | 1 | -0/+1 | |
2011-02-15 | bluetooth: style issues | Denis Kenzior | 1 | -3/+3 | |
2011-02-15 | bluetooth: single SDP record for all adapters | Frédéric Dalleau | 1 | -76/+64 | |
2011-02-08 | bluetooth: Minor style fixes | Denis Kenzior | 1 | -3/+5 | |
2011-02-08 | bluetooth: Get rid of memory leaks on error | Denis Kenzior | 1 | -24/+29 | |
2011-02-08 | bluetooth: Refactor the authorization process | Denis Kenzior | 1 | -53/+15 | |
It is unnecessary to keep the IO watch around after the authorization process has finished. This also means client_list variable is not really needed. Since we destroy the watch once the auth_cb is called, we can also remove the auth_pending variable. Finally, the null check of path is not necessary | |||||
2011-02-08 | bluetooth: Add Bluetooth service authorization support | Frédéric Danis | 1 | -10/+115 | |
2011-02-08 | bluetooth: Add bluetooth server support | Frédéric Danis | 1 | -3/+244 | |
2011-02-08 | bluetooth: Optimize D-Bus call flow | Frédéric Danis | 1 | -3/+14 | |
We can call manager GetProperties once inside bluetooth_ref and avoid calling it every time bluetooth_register_uuid is called. | |||||
2011-01-20 | bluetooth: Add reference count for bluetooth utils | Frédéric Danis | 1 | -19/+32 | |
Add bluetooth_ref()/bluetooth_unref() to support reference count in bluetooth utils. | |||||
2010-11-29 | plugins: explicitly compare pointers to NULL | Lucas De Marchi | 1 | -3/+3 | |
This patch was generated by the following semantic patch (http://coccinelle.lip6.fr/) // <smpl> @fix disable is_null,isnt_null1@ expression *E; @@ - !E + E == NULL // </smpl> | |||||
2010-10-01 | plugins: Mode fixups for copyrigh headers | Marcel Holtmann | 1 | -1/+2 | |
2010-06-21 | bluetooth: Various style issues | Denis Kenzior | 1 | -8/+13 | |
2010-06-21 | bluetooth: add PropertyChanged watch | Gustavo F. Padovan | 1 | -1/+75 | |
This one is a bit diferent from the hfp.c one, so a separated patch for it. | |||||
2010-06-21 | bluetooth: add watches for service and adapters | Gustavo F. Padovan | 1 | -0/+78 | |
Exactly the same code from hfp.c | |||||
2010-06-21 | bluetooth: add device_properties_cb() and has_uuid() | Gustavo F. Padovan | 1 | -2/+69 | |
2010-06-21 | bluetooth: Move functions from hfp.c to bluetooth.c | Gustavo F. Padovan | 1 | -0/+122 | |
The part that call device_properties_cb is commented to permit this patch compile. device_properties_cb() will be changed, so it will have separated patch. | |||||
2010-06-17 | bluetooth: Rename & expose parse_properties | Denis Kenzior | 1 | -2/+1 | |
2010-06-17 | bluetooth: Rename send_method_call_with_reply | Denis Kenzior | 1 | -3/+4 | |
2010-06-17 | Move create_path() to bluetooth plugin | Gustavo F. Padovan | 1 | -0/+22 | |
2010-06-17 | Add parse properties stuff to bluetooth.c | Gustavo F. Padovan | 1 | -0/+84 | |
2010-06-17 | Add send_method_call_with_reply to bluetooth.c | Gustavo F. Padovan | 1 | -0/+53 | |
2010-06-17 | Add bluetooth plugin skeleton. | Gustavo F. Padovan | 1 | -0/+75 | |
The bluetooth plugin has bluetooth_resgister_uuid() and bluetooth_unresgister_uuid() where bluetooth profiles plugins such as HFP and DUN can register themselves to get know about BlueZ stuff ( new devices, bluetoothd shutdown, etc..) |