/system/bt/service/common/bluetooth/ |
D | service.h | 25 class Service { 27 Service() = default; 28 Service(const Service& other); 29 Service(uint16_t handle, bool primary, const UUID& uuid, in Service() function 31 const std::vector<Service>& included_services) in Service() 37 Service& operator=(const Service& other); 38 virtual ~Service() = default; 41 bool Equals(const Service& other) const; 42 bool operator==(const Service& rhs) const; 43 bool operator!=(const Service& rhs) const; [all …]
|
D | service.cc | 20 Service::Service(const Service& other) { in Service() function in bluetooth::Service 28 Service& Service::operator=(const Service& other) { in operator =() 39 bool Service::Equals(const Service& other) const { in Equals() 45 bool Service::operator==(const Service& rhs) const { return Equals(rhs); } in operator ==() 47 bool Service::operator!=(const Service& rhs) const { return !Equals(rhs); } in operator !=()
|
/system/core/init/ |
D | service.cpp | 153 Service::Service(const std::string& name, const std::vector<std::string>& args) in Service() function in Service 172 Service::Service(const std::string& name, unsigned flags, uid_t uid, gid_t gid, in Service() function in Service 196 void Service::NotifyStateChange(const std::string& new_state) const { in NotifyStateChange() 212 void Service::KillProcessGroup(int signal) { in KillProcessGroup() 230 void Service::SetProcessAttributes() { in SetProcessAttributes() 271 void Service::Reap() { in Reap() 323 void Service::DumpState() const { in DumpState() 331 bool Service::ParseCapabilities(const std::vector<std::string>& args, std::string* err) { in ParseCapabilities() 361 bool Service::ParseClass(const std::vector<std::string>& args, std::string* err) { in ParseClass() 366 bool Service::ParseConsole(const std::vector<std::string>& args, std::string* err) { in ParseConsole() [all …]
|
D | service_test.cpp | 27 constexpr auto memory_size = sizeof(Service); in TEST() 28 alignas(alignof(Service)) char old_memory[memory_size]; in TEST() 35 Service* service_in_old_memory = new (old_memory) Service("test_old_memory", dummy_args); in TEST() 53 Service* service_in_old_memory2 = new (old_memory) in TEST() 54 Service("test_old_memory", 0U, 0U, 0U, std::vector<gid_t>(), CapSet(), 0U, "", dummy_args); in TEST()
|
D | service.h | 67 class Service { 69 Service(const std::string& name, const std::vector<std::string>& args); 71 Service(const std::string& name, unsigned flags, uid_t uid, gid_t gid, 112 using OptionParser = bool (Service::*) (const std::vector<std::string>& args, 191 void AddService(std::unique_ptr<Service> service); 192 Service* MakeExecOneshotService(const std::vector<std::string>& args); 196 Service* FindServiceByName(const std::string& name) const; 197 Service* FindServiceByPid(pid_t pid) const; 198 Service* FindServiceByKeychord(int keychord_id) const; 199 void ForEachService(const std::function<void(Service*)>& callback) const; [all …]
|
D | reboot.cpp | 335 ServiceManager::GetInstance().ForEachService([&kill_after_apps, &to_starts](Service* s) { in DoReboot() 344 Service* bootAnim = ServiceManager::GetInstance().FindServiceByName("bootanim"); in DoReboot() 345 Service* surfaceFlinger = ServiceManager::GetInstance().FindServiceByName("surfaceflinger"); in DoReboot() 347 ServiceManager::GetInstance().ForEachServiceInClass("animation", [](Service* s) { in DoReboot() 358 ServiceManager::GetInstance().ForEachService([](Service* s) { in DoReboot() 369 ServiceManager::GetInstance().ForEachService([&service_count](Service* s) { in DoReboot() 394 ServiceManager::GetInstance().ForEachService([](Service* s) { in DoReboot() 400 Service* voldService = ServiceManager::GetInstance().FindServiceByName("vold"); in DoReboot() 408 ServiceManager::GetInstance().ForEachService([&kill_after_apps](Service* s) { in DoReboot()
|
D | keychords.cpp | 37 void add_service_keycodes(Service* svc) in add_service_keycodes() 80 Service* svc = ServiceManager::GetInstance().FindServiceByKeychord(id); in handle_keychord()
|
D | builtins.cpp | 135 ForEachServiceInClass(args[1], [] (Service* s) { s->StartIfNotDisabled(); }); in do_class_start() 141 ForEachServiceInClass(args[1], [] (Service* s) { s->Stop(); }); in do_class_stop() 147 ForEachServiceInClass(args[1], [] (Service* s) { s->Reset(); }); in do_class_reset() 153 ForEachServiceInClass(args[1], [] (Service* s) { s->Restart(); }); in do_class_restart() 162 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]); in do_enable() 576 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]); in do_start() 587 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]); in do_stop() 597 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]); in do_restart()
|
D | init_parser_test.cpp | 82 Service* svc = sm.MakeExecOneshotService(args); in Test_make_exec_oneshot_service()
|
D | init.cpp | 174 ServiceManager::GetInstance().ForEachServiceWithFlags(SVC_RESTARTING, [](Service* s) { in restart_processes() 180 Service* svc = ServiceManager::GetInstance().FindServiceByName(name); in handle_control_message()
|
/system/bt/service/common/android/bluetooth/ |
D | bluetooth_gatt_service.h | 32 class BluetoothGattService : public Parcelable, public ::bluetooth::Service { 35 BluetoothGattService(const ::bluetooth::Service& service) in BluetoothGattService() 36 : ::bluetooth::Service(service){}; // NOLINT(implicit) in BluetoothGattService() 39 : ::bluetooth::Service(includedService.handle(), in BluetoothGattService()
|
D | bluetooth_gatt_included_service.h | 37 const ::bluetooth::Service& service) // NOLINT(implicit) in BluetoothGattIncludedService()
|
/system/update_engine/ |
D | weave_service.h | 51 void OnWeaveServiceConnected(const std::weak_ptr<weaved::Service>& service); 60 std::unique_ptr<weaved::Service::Subscription> weave_service_subscription_; 61 std::weak_ptr<weaved::Service> weave_service_;
|
D | weave_service.cc | 41 weave_service_subscription_ = weaved::Service::Connect( in Init() 49 const std::weak_ptr<weaved::Service>& service) { in OnWeaveServiceConnected()
|
/system/bt/service/test/ |
D | parcelable_unittest.cc | 39 using bluetooth::Service; 183 Service s = in TEST() 184 Service(0x0001, true, UUID("CAFE"), in TEST() 206 bool result = TestData<Service, android::bluetooth::BluetoothGattService>(s); in TEST()
|
D | gatt_server_unittest.cc | 255 Service service(0, true, uuid0, {}, {}); in SetUpTestService() 258 service, [&](BLEStatus status, const Service& added_service) { in SetUpTestService()
|
/system/bt/service/ |
D | gatt_server.h | 124 std::function<void(BLEStatus status, const Service& id)>; 136 bool AddService(const bluetooth::Service&, const ResultCallback& callback);
|
D | gatt_server.cc | 69 bool GattServer::AddService(const bluetooth::Service& service, in AddService() 310 Service service(svc[0].attribute_handle, true, UUID(svc[0].uuid), {}, {}); in ServiceAddedCallback()
|
/system/ca-certificates/files/ |
D | 6fcc125d.0 | 29 Issuer: C=US, O=VISA, OU=Visa International Service Association, CN=Visa eCommerce Root 33 Subject: C=US, O=VISA, OU=Visa International Service Association, CN=Visa eCommerce Root
|
/system/sepolicy/private/ |
D | security_classes | 134 # Service manager
|
/system/sepolicy/reqd_mask/ |
D | security_classes | 134 # Service manager
|
/system/bt/service/ipc/binder/ |
D | bluetooth_gatt_server_binder_server.cc | 82 const bluetooth::Service& service) { in AddService()
|
/system/bt/service/example/heart_rate/ |
D | heart_rate_server.cc | 242 bluetooth::Service hrService( in OnServerRegistered()
|
/system/sepolicy/public/ |
D | vold.te | 111 # Property Service
|
/system/core/liblog/ |
D | README | 186 temporarily backed-up either because of Denial Of Service (DOS) logging
|