#[non_exhaustive]#[repr(u32)]pub enum AServiceManager_AddServiceFlag {
ADD_SERVICE_ALLOW_ISOLATED = 1,
ADD_SERVICE_DUMP_FLAG_PRIORITY_CRITICAL = 2,
ADD_SERVICE_DUMP_FLAG_PRIORITY_HIGH = 4,
ADD_SERVICE_DUMP_FLAG_PRIORITY_NORMAL = 8,
ADD_SERVICE_DUMP_FLAG_PRIORITY_DEFAULT = 16,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ADD_SERVICE_ALLOW_ISOLATED = 1
This allows processes with AID_ISOLATED to get the binder of the service added.
Services with methods that perform file IO, web socket creation or ways to egress data must not be added with this flag for privacy concerns.
ADD_SERVICE_DUMP_FLAG_PRIORITY_CRITICAL = 2
This allows processes with AID_ISOLATED to get the binder of the service added.
Services with methods that perform file IO, web socket creation or ways to egress data must not be added with this flag for privacy concerns.
ADD_SERVICE_DUMP_FLAG_PRIORITY_HIGH = 4
This allows processes with AID_ISOLATED to get the binder of the service added.
Services with methods that perform file IO, web socket creation or ways to egress data must not be added with this flag for privacy concerns.
ADD_SERVICE_DUMP_FLAG_PRIORITY_NORMAL = 8
This allows processes with AID_ISOLATED to get the binder of the service added.
Services with methods that perform file IO, web socket creation or ways to egress data must not be added with this flag for privacy concerns.
ADD_SERVICE_DUMP_FLAG_PRIORITY_DEFAULT = 16
This allows processes with AID_ISOLATED to get the binder of the service added.
Services with methods that perform file IO, web socket creation or ways to egress data must not be added with this flag for privacy concerns.
Trait Implementations§
Source§impl Clone for AServiceManager_AddServiceFlag
impl Clone for AServiceManager_AddServiceFlag
Source§fn clone(&self) -> AServiceManager_AddServiceFlag
fn clone(&self) -> AServiceManager_AddServiceFlag
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl PartialEq for AServiceManager_AddServiceFlag
impl PartialEq for AServiceManager_AddServiceFlag
Source§fn eq(&self, other: &AServiceManager_AddServiceFlag) -> bool
fn eq(&self, other: &AServiceManager_AddServiceFlag) -> bool
self
and other
values to be equal, and is used by ==
.