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:destruct
(Results
1 - 8
of
8
) sorted by relevance
/base/msdp/device_status/rust/subsystem/device_profile/sys/src/
H
A
D
binding.rs
41
/// Type definition for the
destruct
function of the `CIProfileEvents` struct.
49
/// An optional
destruct
function pointer for cleaning up the resources associated with the `CIProfileEvents` object
50
pub
destruct
: Option<CIProfileEventsDestruct>,
68
/// Type definition for the
destruct
function of the `CISubscribeInfos` struct.
76
/// An optional
destruct
function for cleaning up the `CISubscribeInfos` object.
77
pub
destruct
: Option<CISubscribeInfosDestruct>,
126
/// Type definition for the
destruct
function of a CIProfileEventCb.
136
/// The
destruct
function for the callback.
137
pub
destruct
: Option<CIProfileEventCbDestruct>,
194
/// An optional
destruct
functio
[all...]
H
A
D
adapter.rs
82
destruct
: Some(Self::
destruct
),
in clone()
101
extern "C" fn
destruct
(listener: *mut CICrossStateListener)
in destruct()
functions
103
call_debug_enter!("CrossStateListener::
destruct
");
in destruct()
108
error!(LOG_LABEL, "Failed to
destruct
a CICrossStateListener instance");
in destruct()
145
destruct
: None,
in from()
190
destruct
: Some(Self::
destruct
),
in clone()
209
extern "C" fn
destruct
(strings: *mut CIStringVector)
in destruct()
functions
215
error!(LOG_LABEL, "Failed to
destruct
in destruct()
[all...]
/base/msdp/device_status/rust/subsystem/device_profile/binding/src/
H
A
D
fusion_device_profile.cpp
53
if (eventCb_ != nullptr && eventCb_->
destruct
!= nullptr) {
in ~ProfileEventCallbackImpl()
54
eventCb_->
destruct
(eventCb_);
in ~ProfileEventCallbackImpl()
125
events->
destruct
= &Destruct;
in SubscribeProfileEvents()
132
events->
destruct
(events);
in SubscribeProfileEvents()
173
events->
destruct
= &Destruct;
in UnsubscribeProfileEvents()
180
events->
destruct
(events);
in UnsubscribeProfileEvents()
H
A
D
fusion_security.cpp
86
destruct
= &CString::Destruct;
in CString()
94
destruct
= &CString::Destruct;
in CString()
H
A
D
fusion_device_profile_adapter.cpp
87
if ((listener_ != nullptr) && (listener_->
destruct
!= nullptr)) {
in ~ProfileEventCallback()
88
listener_->
destruct
(listener_);
in ~ProfileEventCallback()
/base/msdp/device_status/rust/subsystem/device_profile/binding/include/
H
A
D
fusion_device_profile_adapter.h
24
void (*
destruct
)(CIStringVector *);
member
31
void (*
destruct
)(CICrossStateListener* listener);
member
H
A
D
fusion_device_profile.h
31
void (*
destruct
)(CIProfileEvents* cb);
member
69
void (*
destruct
)(CIProfileEventCb* cb);
member
H
A
D
fusion_security.h
28
void (*
destruct
)(CIString*);
member
Completed in 3 milliseconds