Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:ProfileEvent
(Results
1 - 3
of
3
) sorted by relevance
/base/msdp/device_status/rust/subsystem/device_profile/sys/src/
H
A
D
device_profile.rs
47
pub enum
ProfileEvent
{
enum
53
impl From<
ProfileEvent
> for u32 {
54
fn from(value:
ProfileEvent
) -> u32 {
in from()
56
ProfileEvent
::Unknown => { 0 },
in from()
57
ProfileEvent
::SyncCompleted => { 1 },
in from()
58
ProfileEvent
::ProfileChanged => { 2 },
in from()
63
impl TryFrom<u32> for
ProfileEvent
{
68
_ if u32::from(
ProfileEvent
::Unknown) == value => { Ok(
ProfileEvent
::Unknown) },
in try_from()
69
_ if u32::from(
ProfileEvent
in try_from()
[all...]
/base/msdp/device_status/rust/subsystem/device_profile/binding/src/
H
A
D
fusion_device_profile.cpp
98
if ((cSub.profileEvent >=
ProfileEvent
::EVENT_UNKNOWN) &&
in SubscribeProfileEvents()
99
(cSub.profileEvent <
ProfileEvent
::EVENT_PROFILE_END)) {
in SubscribeProfileEvents()
102
subscription.profileEvent = static_cast<
ProfileEvent
>(cSub.profileEvent);
in SubscribeProfileEvents()
109
std::list<
ProfileEvent
> fails;
in SubscribeProfileEvents()
145
std::list<
ProfileEvent
> profiles;
in UnsubscribeProfileEvents()
149
if ((cPro >= static_cast<uint32_t>(
ProfileEvent
::EVENT_UNKNOWN)) &&
in UnsubscribeProfileEvents()
150
(cPro < static_cast<uint32_t>(
ProfileEvent
::EVENT_PROFILE_END))) {
in UnsubscribeProfileEvents()
151
ProfileEvent
profile = static_cast<
ProfileEvent
>(cPro);
in UnsubscribeProfileEvents()
157
std::list<
ProfileEvent
> fail
in UnsubscribeProfileEvents()
[all...]
H
A
D
fusion_device_profile_adapter.cpp
42
bool SupportProfileEvent(const
ProfileEvent
&event) const;
43
void AddProfileEvent(const
ProfileEvent
&event);
44
void RemoveProfileEvents(const std::list<
ProfileEvent
> &profileEvents);
53
std::set<
ProfileEvent
> profileEvents_;
71
void RemoveFailedSubscriptions(const std::string &deviceId, const std::list<
ProfileEvent
> &failedEvents);
104
bool ProfileEventCallback::SupportProfileEvent(const
ProfileEvent
&event) const
in SupportProfileEvent()
109
void ProfileEventCallback::AddProfileEvent(const
ProfileEvent
&event)
in AddProfileEvent()
117
void ProfileEventCallback::RemoveProfileEvents(const std::list<
ProfileEvent
> &profileEvents)
in RemoveProfileEvents()
206
changeEventInfo.profileEvent =
ProfileEvent
::EVENT_PROFILE_CHANGED;
in RegisterCrossStateListener()
213
syncEventInfo.profileEvent =
ProfileEvent
in RegisterCrossStateListener()
[all...]
Completed in 2 milliseconds