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:IMsdp
(Results
1 - 11
of
11
) sorted by relevance
/base/msdp/device_status/libs/interface/
H
A
D
devicestatus_msdp_interface.h
28
class
IMsdp
{
class
30
IMsdp
() = default;
31
virtual ~
IMsdp
() = default;
39
virtual ErrCode RegisterCallback(std::shared_ptr<
IMsdp
::MsdpAlgoCallback> callback) = 0;
48
IMsdp
* (*create)();
49
void* (*destroy)(
IMsdp
*);
50
IMsdp
* pAlgorithm;
/base/msdp/device_status/services/native/include/
H
A
D
devicestatus_msdp_client_impl.h
29
class DeviceStatusMsdpClientImpl : public
IMsdp
::MsdpAlgoCallback,
33
using LoadMockLibraryFunc =
IMsdp
* (*)();
34
using LoadMockLibraryPtr = void *(*)(
IMsdp
*);
65
IMsdp
* GetAlgoInst(Type type);
66
IMsdp
* GetMockInst(Type type);
77
IMsdp
* iAlgo_ { nullptr };
78
IMsdp
* iMock_ { nullptr };
/base/msdp/device_status/libs/include/algorithm/
H
A
D
algo_base.h
40
void RegisterCallback(const std::shared_ptr<
IMsdp
::MsdpAlgoCallback> callback);
74
std::shared_ptr<
IMsdp
::MsdpAlgoCallback> callback_ { nullptr };
/base/msdp/device_status/libs/include/
H
A
D
devicestatus_msdp_mock.h
33
class DeviceStatusMsdpMock final : public
IMsdp
{
55
ErrCode RegisterCallback(std::shared_ptr<
IMsdp
::MsdpAlgoCallback> callback) override;
H
A
D
devicestatus_algorithm_manager.h
38
class AlgoMgr final : public
IMsdp
{
/base/msdp/device_status/libs/src/algorithm/
H
A
D
algo_base.cpp
58
void AlgoBase::RegisterCallback(const std::shared_ptr<
IMsdp
::MsdpAlgoCallback> callback)
in RegisterCallback()
/base/msdp/device_status/libs/src/
H
A
D
devicestatus_algorithm_manager.cpp
251
extern "C"
IMsdp
*Create(void)
in Create()
257
extern "C" void Destroy(const
IMsdp
* algorithm)
in Destroy()
H
A
D
devicestatus_msdp_mock.cpp
263
extern "C"
IMsdp
*Create(void)
in Create()
271
extern "C" void Destroy(const
IMsdp
* algorithm)
in Destroy()
/base/msdp/device_status/services/native/src/
H
A
D
devicestatus_msdp_client_impl.cpp
269
std::shared_ptr<
IMsdp
::MsdpAlgoCallback> callback = shared_from_this();
in RegisterMock()
287
std::shared_ptr<
IMsdp
::MsdpAlgoCallback> callback_ = shared_from_this();
in RegisterAlgo()
398
IMsdp
* DeviceStatusMsdpClientImpl::GetMockInst(Type type)
in GetMockInst()
461
IMsdp
* DeviceStatusMsdpClientImpl::GetAlgoInst(Type type)
in GetAlgoInst()
/base/msdp/device_status/test/unittest/libs/src/
H
A
D
device_status_algorithm_test.cpp
54
class DeviceStatusMock : public
IMsdp
::MsdpAlgoCallback {
103
algoHandler->create = reinterpret_cast<
IMsdp
* (*)()>(dlsym(algoHandler->handle, "Create"));
in LoadAlgoLibrary()
104
algoHandler->destroy = reinterpret_cast<void *(*)(
IMsdp
*)>(dlsym(algoHandler->handle, "Destroy"));
in LoadAlgoLibrary()
H
A
D
device_status_mock_test.cpp
106
mockHandler->create = reinterpret_cast<
IMsdp
* (*)()>(dlsym(mockHandler->handle, "Create"));
in LoadMockLibrary()
107
mockHandler->destroy = reinterpret_cast<void *(*)(
IMsdp
*)>(dlsym(mockHandler->handle, "Destroy"));
in LoadMockLibrary()
Completed in 5 milliseconds