OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BluetoothDiscoverySession
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/device/bluetooth/
bluetooth_discovery_session.h
16
//
BluetoothDiscoverySession
represents a current active or inactive device
20
// of an active
BluetoothDiscoverySession
exists. A
BluetoothDiscoverySession
is
22
// instance has not called
BluetoothDiscoverySession
::Stop. A
23
//
BluetoothDiscoverySession
might unexpectedly become inactive, if the adapter
27
//
BluetoothDiscoverySession
if their existing sessions have become inactive.
28
class
BluetoothDiscoverySession
{
37
// users are highly encouraged to call
BluetoothDiscoverySession
::Stop,
39
virtual ~
BluetoothDiscoverySession
();
45
// should request a new
BluetoothDiscoverySession
to make sure that devic
[
all
...]
bluetooth_discovery_session.cc
12
BluetoothDiscoverySession
::
BluetoothDiscoverySession
(
18
BluetoothDiscoverySession
::~
BluetoothDiscoverySession
() {
25
bool
BluetoothDiscoverySession
::IsActive() const {
29
void
BluetoothDiscoverySession
::Stop(
39
base::Bind(&
BluetoothDiscoverySession
::OnStop,
45
void
BluetoothDiscoverySession
::OnStop(const base::Closure& callback) {
50
void
BluetoothDiscoverySession
::MarkAsInactive() {
bluetooth_adapter.cc
127
scoped_ptr<
BluetoothDiscoverySession
> discovery_session(
128
new
BluetoothDiscoverySession
(scoped_refptr<BluetoothAdapter>(this)));
138
std::set<
BluetoothDiscoverySession
*> temp(discovery_sessions_);
139
for (std::set<
BluetoothDiscoverySession
*>::iterator
147
BluetoothDiscoverySession
* discovery_session) {
bluetooth_adapter.h
21
class
BluetoothDiscoverySession
;
243
// instance of
BluetoothDiscoverySession
will be returned to the caller via
245
// The returned
BluetoothDiscoverySession
is owned by the caller and it's the
252
// should always obtain a
BluetoothDiscoverySession
and call
253
//
BluetoothDiscoverySession
::Stop when done. When this method gets called,
259
typedef base::Callback<void(scoped_ptr<
BluetoothDiscoverySession
>)>
336
friend class
BluetoothDiscoverySession
;
393
BluetoothDiscoverySession
* discovery_session);
414
std::set<
BluetoothDiscoverySession
*> discovery_sessions_;
bluetooth_chromeos_unittest.cc
28
using device::
BluetoothDiscoverySession
;
266
for (ScopedVector<
BluetoothDiscoverySession
>::iterator iter =
270
BluetoothDiscoverySession
* session = *iter;
294
scoped_ptr<
BluetoothDiscoverySession
> discovery_session) {
391
ScopedVector<
BluetoothDiscoverySession
> discovery_sessions_;
[
all
...]
/external/chromium_org/device/bluetooth/test/
mock_bluetooth_discovery_session.cc
17
:
BluetoothDiscoverySession
(
mock_bluetooth_discovery_session.h
14
class MockBluetoothDiscoverySession : public
BluetoothDiscoverySession
{
/external/chromium_org/extensions/browser/api/bluetooth/
bluetooth_event_router.h
30
class
BluetoothDiscoverySession
;
135
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session);
142
// A map that maps extension ids to
BluetoothDiscoverySession
pointers.
143
typedef std::map<std::string, device::
BluetoothDiscoverySession
*>
bluetooth_event_router.cc
117
device::
BluetoothDiscoverySession
* session = iter->second;
222
device::
BluetoothDiscoverySession
* session = iter->second;
340
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session) {
bluetooth_apitest.cc
28
using device::
BluetoothDiscoverySession
;
79
scoped_ptr<
BluetoothDiscoverySession
>(mock_session_.release()));
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/
bluetooth_options_handler.h
163
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session);
229
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session_;
bluetooth_options_handler.cc
260
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session) {
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
hid_detection_screen_handler.h
161
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session);
201
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session_;
hid_detection_screen_handler.cc
92
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session) {
/external/chromium_org/components/pairing/
bluetooth_controller_pairing_controller.h
46
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session);
113
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session_;
bluetooth_controller_pairing_controller.cc
134
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session) {
/external/chromium_org/chrome/browser/ui/ash/
system_tray_delegate_chromeos.h
217
scoped_ptr<device::
BluetoothDiscoverySession
> discovery_session);
252
scoped_ptr<device::
BluetoothDiscoverySession
> bluetooth_discovery_session_;
system_tray_delegate_chromeos.cc
[
all
...]
Completed in 392 milliseconds