OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SetP2PUpdatePermission
(Results
1 - 13
of
13
) sorted by null
/system/update_engine/binder_bindings/android/brillo/
IUpdateEngine.aidl
31
void
SetP2PUpdatePermission
(in boolean enabled);
/system/update_engine/client_library/include/update_engine/
client.h
75
virtual bool
SetP2PUpdatePermission
(bool enabled) = 0;
/system/update_engine/client_library/
client_binder.cc
85
bool BinderUpdateEngineClient::
SetP2PUpdatePermission
(bool enabled) {
86
return service_->
SetP2PUpdatePermission
(enabled).isOk();
client_dbus.cc
84
bool DBusUpdateEngineClient::
SetP2PUpdatePermission
(bool enabled) {
85
return proxy_->
SetP2PUpdatePermission
(enabled, nullptr);
client_binder.h
60
bool
SetP2PUpdatePermission
(bool enabled) override;
client_dbus.h
53
bool
SetP2PUpdatePermission
(bool enabled) override;
/system/update_engine/
dbus_service.cc
100
bool DBusUpdateEngineService::
SetP2PUpdatePermission
(ErrorPtr* error,
102
return common_->
SetP2PUpdatePermission
(error, in_enabled);
common_service.h
97
bool
SetP2PUpdatePermission
(brillo::ErrorPtr* error, bool in_enabled);
binder_service_brillo.h
71
android::binder::Status
SetP2PUpdatePermission
(bool enabled) override;
dbus_service.h
96
bool
SetP2PUpdatePermission
(brillo::ErrorPtr* error,
binder_service_brillo.cc
121
Status BinderUpdateEngineBrilloService::
SetP2PUpdatePermission
(bool enabled) {
122
return CallCommonHandler(&UpdateEngineService::
SetP2PUpdatePermission
,
common_service.cc
189
bool UpdateEngineService::
SetP2PUpdatePermission
(ErrorPtr* error,
update_engine_client.cc
338
if (!client_->
SetP2PUpdatePermission
(enabled)) {
Completed in 177 milliseconds