HomeSort by relevance Sort by last modified time
    Searched refs:weaved (Results 1 - 24 of 24) sorted by null

  /system/weaved/brillo/
weaved_system_properties.cc 17 namespace weaved { namespace
23 } // namespace weaved
weaved_system_properties.h 18 namespace weaved { namespace
24 } // namespace weaved
  /system/weaved/common/
binder_constants.cc 17 namespace weaved { namespace
23 } // namespace weaved
binder_constants.h 18 namespace weaved { namespace
24 } // namespace weaved
binder_utils.h 32 namespace weaved { namespace
65 } // namespace weaved
binder_utils.cc 21 namespace weaved { namespace
66 } // namespace weaved
  /device/intel/edison/base_product/
edison.mk 24 # Install edison-specific config file for weaved.
26 device/intel/edison/base_product/weaved.conf:system/etc/weaved/weaved.conf
weaved.conf 76 embedded_code_path=/etc/weaved/weaved.conf
  /system/update_engine/
weave_service.h 51 void OnWeaveServiceConnected(const std::weak_ptr<weaved::Service>& service);
55 void OnCheckForUpdates(std::unique_ptr<weaved::Command> cmd);
56 void OnTrackChannel(std::unique_ptr<weaved::Command> cmd);
60 std::unique_ptr<weaved::Service::Subscription> weave_service_subscription_;
61 std::weak_ptr<weaved::Service> weave_service_;
weave_service.cc 41 weave_service_subscription_ = weaved::Service::Connect(
49 const std::weak_ptr<weaved::Service>& service) {
114 void WeaveService::OnCheckForUpdates(std::unique_ptr<weaved::Command> command) {
123 void WeaveService::OnTrackChannel(std::unique_ptr<weaved::Command> command) {
Android.mk     [all...]
  /system/core/metricsd/
metrics_collector.h 116 void OnEnableMetrics(std::unique_ptr<weaved::Command> command);
119 void OnDisableMetrics(std::unique_ptr<weaved::Command> command);
218 // Callback invoked when a connection to weaved's service is established
220 void OnWeaveServiceConnected(const std::weak_ptr<weaved::Service>& service);
278 unique_ptr<weaved::Service::Subscription> weave_service_subscription_;
279 std::weak_ptr<weaved::Service> service_;
Android.mk 230 LOCAL_MODULE_PATH := $(TARGET_OUT_ETC)/weaved/traits
231 LOCAL_SRC_FILES := etc/weaved/traits/$(LOCAL_MODULE)
metrics_collector.cc 234 weave_service_subscription_ = weaved::Service::Connect(
249 const std::weak_ptr<weaved::Service>& service) {
269 std::unique_ptr<weaved::Command> command) {
284 std::unique_ptr<weaved::Command> command) {
  /system/weaved/buffet/
binder_weave_service.cc 26 using weaved::binder_utils::ToStatus;
27 using weaved::binder_utils::ToString;
28 using weaved::binder_utils::ToString16;
manager.cc 296 property_set(weaved::system_properties::kState, state_.c_str());
383 *id = weaved::binder_utils::ToString16(cloud_id_);
388 *id = weaved::binder_utils::ToString16(device_id_);
393 *name = weaved::binder_utils::ToString16(device_name_);
399 *description = weaved::binder_utils::ToString16(device_description_);
405 *location = weaved::binder_utils::ToString16(device_location_);
410 *name = weaved::binder_utils::ToString16(oem_name_);
415 *name = weaved::binder_utils::ToString16(model_name_);
420 *id = weaved::binder_utils::ToString16(model_id_);
425 *id = weaved::binder_utils::ToString16(pairing_session_id_)
    [all...]
binder_command_proxy.cc 22 using weaved::binder_utils::ParseDictionary;
23 using weaved::binder_utils::ToStatus;
24 using weaved::binder_utils::ToString;
25 using weaved::binder_utils::ToString16;
main.cc 59 weaved::binder::kWeaveServiceName,
78 const char kDefaultConfigFilePath[] = "/etc/weaved/weaved.conf";
79 const char kDefaultStateFilePath[] = "/data/misc/weaved/device_reg_info";
129 options.config_options.definitions = base::FilePath{"/etc/weaved"};
binder_command_proxy_unittest.cc 27 using weaved::binder_utils::ToString;
28 using weaved::binder_utils::ToString16;
  /system/weaved/
Android.mk 66 # Code shared between weaved daemon and libweaved client library
91 # Code shared between weaved daemon and unit test runner.
92 # This is essentially the implementation of weaved in a static library format.
130 # weaved
134 LOCAL_MODULE := weaved
144 LOCAL_INIT_RC := weaved.rc
158 # if you need to communicate with weaved.
  /system/weaved/libweaved/
command.cc 20 using weaved::binder_utils::ParseDictionary;
21 using weaved::binder_utils::ToString;
22 using weaved::binder_utils::ToString16;
23 using weaved::binder_utils::StatusToError;
25 namespace weaved { namespace
service.h 33 namespace weaved { namespace
35 // A weaved service is an abstract interface representing an instance of weave
37 // weaved process, it manages resources specific for an instance of the client.
39 // that were added by this client from the weaved's component tree.
115 // Creates an instance of weaved service asynchronously. This not only creates
117 // weaved daemon. Upon connection having been established, a |callback| is
121 // weaved is lost. If this happens, a connection is re-established and the
130 // to weaved is terminated and the service instance is discarded.
139 } // namespace weaved
service.cc 33 using weaved::binder_utils::StatusToError;
34 using weaved::binder_utils::ToString;
35 using weaved::binder_utils::ToString16;
37 // The semantic of weaved connection is a bit complicated and that's why we have
39 // When the client wants to connect to weaved they would call Service::Connect
51 // At the same time an asynchronous process to establish a connection to weaved
54 // succeeds, we know that weaved is running. We create a callback binder object,
56 // weaved in IWeaveServiceManager::connect() method. The weaved daemon keeps the
61 // 2. It notifies the client of weaved being ready to talk to (by callin
83 namespace weaved { namespace
    [all...]
command.h 33 namespace weaved { namespace

Completed in 851 milliseconds