HomeSort by relevance Sort by last modified time
    Searched refs:weave (Results 1 - 25 of 207) sorted by null

1 2 3 4 5 6 7 8 9

  /external/libweave/src/
json_error_codes.cc 1 // Copyright 2015 The Weave Authors. All rights reserved.
7 namespace weave { namespace
16 } // namespace weave
json_error_codes.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
8 namespace weave { namespace
19 } // namespace weave
registration_status.cc 1 // Copyright 2015 The Weave Authors. All rights reserved.
5 #include <weave/device.h>
6 #include <weave/enum_to_string.h>
7 #include <weave/export.h>
9 namespace weave { namespace
26 } // namespace weave
http_constants.cc 1 // Copyright 2015 The Weave Authors. All rights reserved.
7 #include <weave/enum_to_string.h>
8 #include <weave/provider/http_client.h>
10 namespace weave { namespace
27 const weave::EnumToStringMap<HttpClient::Method>::Map kMapMethod[] = {
39 } // namespace weave
http_constants.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
8 namespace weave { namespace
30 } // namespace weave
  /external/libweave/examples/provider/
bluez_client.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
8 #include <weave/provider/bluetooth.h>
10 namespace weave { namespace
13 // Example of weave::Bluetooth implemented with bluez.
22 } // namespace weave
bluez_client.cc 1 // Copyright 2015 The Weave Authors. All rights reserved.
7 namespace weave { namespace
14 } // namespace weave
  /external/libweave/include/weave/provider/test/
mock_bluetooth.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
8 #include <weave/provider/bluetooth.h>
10 namespace weave { namespace
20 } // namespace weave
mock_dns_service_discovery.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
8 #include <weave/provider/dns_service_discovery.h>
15 namespace weave { namespace
30 } // namespace weave
mock_network.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
8 #include <weave/provider/network.h>
14 namespace weave { namespace
31 } // namespace weave
mock_wifi.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
8 #include <weave/provider/network.h>
14 namespace weave { namespace
32 } // namespace weave
  /external/libweave/include/weave/provider/
bluetooth.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
8 namespace weave { namespace
21 } // namespace weave
config_store.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
15 #include <weave/enum_to_string.h>
16 #include <weave/error.h>
17 #include <weave/settings.h>
19 namespace weave { namespace
33 // // set all other required settings, see include/weave/settings.h
41 // std::ifstream str("/var/lib/weave/weave_" + name + ".json");
54 // std::ofstream str("/var/lib/weave/weave_" + name + ".json");
96 } // namespace weave
wifi.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
11 #include <weave/error.h>
13 namespace weave { namespace
39 } // namespace weave
network.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
11 #include <weave/error.h>
12 #include <weave/stream.h>
14 namespace weave { namespace
54 } // namespace weave
  /system/weaved/brillo/android/weave/
IWeaveClient.aidl 17 package android.weave;
19 import android.weave.IWeaveCommand;
20 import android.weave.IWeaveService;
  /external/libweave/examples/daemon/common/
daemon.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
5 #include <weave/device.h>
6 #include <weave/error.h>
68 : task_runner_{new weave::examples::EventTaskRunner},
70 new weave::examples::FileConfigStore(opts.model_id_,
72 http_client_{new weave::examples::CurlHttpClient(task_runner_.get())},
73 network_{new weave::examples::EventNetworkImpl(task_runner_.get())},
74 bluetooth_{new weave::examples::BluetoothImpl} {
78 dns_sd_.reset(new weave::examples::AvahiClient);
80 new weave::examples::HttpServerImpl{task_runner_.get()})
    [all...]
  /system/weaved/buffet/
socket_stream.h 23 #include <weave/provider/network.h>
24 #include <weave/stream.h>
28 class SocketStream : public weave::Stream {
44 static std::unique_ptr<weave::Stream> ConnectBlocking(const std::string& host,
48 std::unique_ptr<weave::Stream> socket,
50 const weave::provider::Network::OpenSslSocketCallback& callback);
bluetooth_client.h 23 #include <weave/provider/bluetooth.h>
27 class BluetoothClient : public weave::provider::Bluetooth {
binder_weave_service.h 25 #include "android/weave/IWeaveClient.h"
26 #include "android/weave/BnWeaveService.h"
28 namespace weave { namespace
35 // An implementation of android::weave::IWeaveService binder.
36 // This object is a proxy for weave::Device. A new instance of weave service is
40 class BinderWeaveService final : public android::weave::BnWeaveService {
42 BinderWeaveService(weave::Device* device,
43 android::sp<android::weave::IWeaveClient> client);
47 // Binder methods for android::weave::IWeaveService
    [all...]
  /external/libweave/src/privet/
device_ui_kind.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
10 namespace weave { namespace
16 } // namespace weave
openssl_utils.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
11 namespace weave { namespace
19 } // namespace weave
  /external/libweave/include/weave/test/
unittest_utils.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
14 namespace weave { namespace
33 } // namespace weave
36 EXPECT_PRED2(weave::test::IsEqualValue, *weave::test::CreateValue(expected), \
  /external/libweave/examples/daemon/lock/
lock.cc 1 // Copyright 2015 The Weave Authors. All rights reserved.
7 #include <weave/device.h>
8 #include <weave/enum_to_string.h>
13 namespace weave { namespace
17 const weave::EnumToStringMap<LockState>::Map kLockMapMethod[] = {
26 } // namespace weave
67 // how to handle commands for a Weave lock.
71 void Register(weave::Device* device) {
86 void OnLockSetConfig(const std::weak_ptr<weave::Command>& command) {
96 weave::lockstate::LockState new_lock_status
    [all...]
  /external/libweave/src/notification/
notification_parser.h 1 // Copyright 2015 The Weave Authors. All rights reserved.
14 namespace weave { namespace
23 } // namespace weave

Completed in 1339 milliseconds

1 2 3 4 5 6 7 8 9