OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetP2PUpdatePermission
(Results
1 - 13
of
13
) sorted by null
/system/update_engine/binder_bindings/android/brillo/
IUpdateEngine.aidl
32
boolean
GetP2PUpdatePermission
();
/system/update_engine/client_library/include/update_engine/
client.h
76
virtual bool
GetP2PUpdatePermission
(bool* enabled) const = 0;
/system/update_engine/client_library/
client_binder.cc
89
bool BinderUpdateEngineClient::
GetP2PUpdatePermission
(bool* enabled) const {
90
return service_->
GetP2PUpdatePermission
(enabled).isOk();
client_dbus.cc
88
bool DBusUpdateEngineClient::
GetP2PUpdatePermission
(bool* enabled) const {
89
return proxy_->
GetP2PUpdatePermission
(enabled, nullptr);
client_binder.h
61
bool
GetP2PUpdatePermission
(bool* enabled) const override;
client_dbus.h
54
bool
GetP2PUpdatePermission
(bool* enabled) const override;
/system/update_engine/
dbus_service.cc
105
bool DBusUpdateEngineService::
GetP2PUpdatePermission
(ErrorPtr* error,
107
return common_->
GetP2PUpdatePermission
(error, out_enabled);
common_service.h
101
bool
GetP2PUpdatePermission
(brillo::ErrorPtr* error, bool* out_enabled);
binder_service_brillo.h
72
android::binder::Status
GetP2PUpdatePermission
(
dbus_service.h
101
bool
GetP2PUpdatePermission
(brillo::ErrorPtr* error,
binder_service_brillo.cc
126
Status BinderUpdateEngineBrilloService::
GetP2PUpdatePermission
(
128
return CallCommonHandler(&UpdateEngineService::
GetP2PUpdatePermission
,
common_service.cc
204
bool UpdateEngineService::
GetP2PUpdatePermission
(ErrorPtr* error,
update_engine_client.cc
372
if (!client_->
GetP2PUpdatePermission
(&enabled)) {
Completed in 331 milliseconds