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:clientConfig
(Results
1 - 7
of
7
) sorted by relevance
/developtools/profiler/device/plugins/native_daemon/src/
H
A
D
hook_manager.cpp
216
void HookManager::GetClientConfig(ClientConfig&
clientConfig
)
in GetClientConfig()
argument
218
clientConfig
.shareMemorySize = static_cast<uint32_t>(hookConfig_.smb_pages() * PAGE_BYTES);
in GetClientConfig()
219
clientConfig
.filterSize = static_cast<int32_t>(hookConfig_.filter_size());
in GetClientConfig()
220
clientConfig
.clockId = COMMON::GetClockId(hookConfig_.clock());
in GetClientConfig()
221
clientConfig
.maxStackDepth = hookConfig_.max_stack_depth();
in GetClientConfig()
222
clientConfig
.arktsConfig.maxJsStackDepth = hookConfig_.max_js_stack_depth();
in GetClientConfig()
223
clientConfig
.mallocDisable = hookConfig_.malloc_disable();
in GetClientConfig()
224
clientConfig
.mmapDisable = hookConfig_.mmap_disable();
in GetClientConfig()
225
clientConfig
.freeStackData = hookConfig_.free_stack_report();
in GetClientConfig()
226
clientConfig
in GetClientConfig()
429
ClientConfig
clientConfig
;
CreatePluginSession()
local
[all...]
H
A
D
hook_service.cpp
28
HookService::HookService(const ClientConfig&
clientConfig
, std::shared_ptr<HookManager> hook, bool multipleProcesses)
in HookService()
argument
29
: clientConfig_(
clientConfig
), hookMgr_(hook), multipleProcesses_(multipleProcesses)
in HookService()
/developtools/profiler/device/plugins/native_hook/test/unittest/
H
A
D
hook_socket_client_test.cpp
101
ClientConfig
clientConfig
;
in HWTEST_F()
local
104
auto ptr = reinterpret_cast<const int8_t*>(&
clientConfig
);
in HWTEST_F()
105
auto size = sizeof(
clientConfig
);
in HWTEST_F()
118
ClientConfig
clientConfig
;
in HWTEST_F()
local
121
auto ptr = reinterpret_cast<const int8_t*>(&
clientConfig
);
in HWTEST_F()
122
auto size = sizeof(
clientConfig
);
in HWTEST_F()
/developtools/profiler/device/plugins/native_daemon/test/unittest/common/native/
H
A
D
hook_service_test.cpp
69
ClientConfig
clientConfig
;
in HWTEST_F()
local
70
auto hookService = std::make_shared<HookService>(
clientConfig
, hookManager);
in HWTEST_F()
/developtools/profiler/device/plugins/native_daemon/include/
H
A
D
hook_service.h
29
HookService(const ClientConfig&
clientConfig
, std::shared_ptr<HookManager> hook, bool multipleProcesses = false);
H
A
D
hook_manager.h
113
void GetClientConfig(ClientConfig&
clientConfig
);
/developtools/profiler/device/plugins/native_daemon/native_memory_profiler_sa/src/
H
A
D
native_memory_profiler_sa_service.cpp
357
ClientConfig
clientConfig
;
in ProtocolProc()
local
358
iter->second->hookMgr->GetClientConfig(
clientConfig
);
in ProtocolProc()
360
clientConfig
.freeEventOnlyAddrEnable = true;
in ProtocolProc()
362
context.SendHookConfig(reinterpret_cast<uint8_t *>(&
clientConfig
), sizeof(
clientConfig
));
in ProtocolProc()
Completed in 4 milliseconds