/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 | 162 Service::Service(const std::string& name, const std::vector<std::string>& args) in Service() function in android::init::Service 185 Service::Service(const std::string& name, unsigned flags, uid_t uid, gid_t gid, in Service() function in android::init::Service 213 void Service::NotifyStateChange(const std::string& new_state) const { in NotifyStateChange() 228 void Service::KillProcessGroup(int signal) { in KillProcessGroup() 247 void Service::SetProcessAttributes() { in SetProcessAttributes() 295 void Service::Reap() { in Reap() 347 void Service::DumpState() const { in DumpState() 355 bool Service::ParseCapabilities(const std::vector<std::string>& args, std::string* err) { in ParseCapabilities() 385 bool Service::ParseClass(const std::vector<std::string>& args, std::string* err) { in ParseClass() 390 bool Service::ParseConsole(const std::vector<std::string>& args, std::string* err) { in ParseConsole() [all …]
|
D | service_test.cpp | 30 constexpr auto memory_size = sizeof(Service); in TEST() 31 alignas(alignof(Service)) char old_memory[memory_size]; in TEST() 38 Service* service_in_old_memory = new (old_memory) Service("test_old_memory", dummy_args); in TEST() 57 Service* service_in_old_memory2 = new (old_memory) in TEST() 58 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, 114 using OptionParser = bool (Service::*) (const std::vector<std::string>& args, 203 void AddService(std::unique_ptr<Service> service); 204 Service* MakeExecOneshotService(const std::vector<std::string>& args); 208 Service* FindServiceByName(const std::string& name) const; 209 Service* FindServiceByPid(pid_t pid) const; 210 Service* FindServiceByKeychord(int keychord_id) const; 211 void ForEachService(const std::function<void(Service*)>& callback) const; [all …]
|
D | reboot.cpp | 376 ServiceManager::GetInstance().ForEachService([&kill_after_apps, &to_starts](Service* s) { in DoReboot() 387 Service* bootAnim = ServiceManager::GetInstance().FindServiceByName("bootanim"); in DoReboot() 388 Service* surfaceFlinger = ServiceManager::GetInstance().FindServiceByName("surfaceflinger"); in DoReboot() 390 ServiceManager::GetInstance().ForEachServiceInClass("animation", [](Service* s) { in DoReboot() 401 ServiceManager::GetInstance().ForEachService([](Service* s) { in DoReboot() 412 ServiceManager::GetInstance().ForEachService([&service_count](Service* s) { in DoReboot() 437 ServiceManager::GetInstance().ForEachService([](Service* s) { in DoReboot() 443 Service* voldService = ServiceManager::GetInstance().FindServiceByName("vold"); in DoReboot() 451 ServiceManager::GetInstance().ForEachService([&kill_after_apps](Service* s) { in DoReboot()
|
D | keychords.cpp | 39 void add_service_keycodes(Service* svc) in add_service_keycodes() 82 Service* svc = ServiceManager::GetInstance().FindServiceByKeychord(id); in handle_keychord()
|
D | keychords.h | 25 void add_service_keycodes(Service* svc);
|
D | builtins.cpp | 133 ForEachServiceInClass(args[1], [] (Service* s) { s->StartIfNotDisabled(); }); in do_class_start() 139 ForEachServiceInClass(args[1], [] (Service* s) { s->Stop(); }); in do_class_stop() 145 ForEachServiceInClass(args[1], [] (Service* s) { s->Reset(); }); in do_class_reset() 151 ForEachServiceInClass(args[1], [] (Service* s) { s->Restart(); }); in do_class_restart() 165 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]); in do_enable() 607 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]); in do_start() 618 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]); in do_stop() 628 Service* svc = ServiceManager::GetInstance().FindServiceByName(args[1]); in do_restart()
|
D | init_parser_test.cpp | 84 Service* svc = sm.MakeExecOneshotService(args); in Test_make_exec_oneshot_service()
|
D | init.cpp | 204 ServiceManager::GetInstance().ForEachServiceWithFlags(SVC_RESTARTING, [](Service* s) { in restart_processes() 210 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/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/core/libmemunreachable/tests/ |
D | Binder_test.cpp | 69 _exit(Service()); in Run() 93 int Service() { in Service() function in android::ServiceProcess
|
/system/bt/service/ |
D | gatt_server.h | 125 std::function<void(BLEStatus status, const Service& id)>; 137 bool AddService(const bluetooth::Service&, const ResultCallback& callback);
|
D | gatt_server.cc | 58 bool GattServer::AddService(const bluetooth::Service& service, in AddService() 305 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/prebuilts/api/26.0/private/ |
D | security_classes | 134 # Service manager
|
/system/sepolicy/private/ |
D | security_classes | 135 # Service manager
|
/system/sepolicy/reqd_mask/ |
D | security_classes | 135 # 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 | 114 # Property Service
|