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:MAX_MESSAGE_LEN
(Results
1 - 8
of
8
) sorted by relevance
/foundation/distributedhardware/distributed_hardware_fwk/interfaces/inner_kits/src/ipc/
H
A
D
publisher_listener_stub.cpp
48
if (message.empty() || message.size() >
MAX_MESSAGE_LEN
) {
in OnRemoteRequest()
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/lowlatency/lowlatencylistener/src/
H
A
D
low_latency_listener_test.cpp
138
uint32_t
MAX_MESSAGE_LEN
= 40 * 1024 * 1024;
in HWTEST_F()
local
139
message.resize(
MAX_MESSAGE_LEN
);
in HWTEST_F()
/foundation/distributedhardware/device_manager/common/src/
H
A
D
dm_anonymous.cpp
22
constexpr uint32_t
MAX_MESSAGE_LEN
= 40 * 1024 * 1024;
member
89
bool res = jsonObj.contains(key) && jsonObj[key].is_string() && jsonObj[key].size() <=
MAX_MESSAGE_LEN
;
in IsString()
188
if (srcData == nullptr || srcLen == 0 || srcLen >=
MAX_MESSAGE_LEN
) {
in ConvertCharArray2String()
/foundation/distributedhardware/distributed_hardware_fwk/services/distributedhardwarefwkservice/test/unittest/common/dbadapter/src/
H
A
D
db_adapter_test.cpp
443
uint32_t
MAX_MESSAGE_LEN
= 40 * 1024 * 1024 +1 ;
in HWTEST_F()
local
445
key.resize(
MAX_MESSAGE_LEN
);
in HWTEST_F()
477
uint32_t
MAX_MESSAGE_LEN
= 40 * 1024 * 1024 + 1;
in HWTEST_F()
local
480
value.resize(
MAX_MESSAGE_LEN
);
in HWTEST_F()
/foundation/distributedhardware/device_manager/test/commonunittest/
H
A
D
UTTest_dm_anonymous.cpp
397
constexpr uint32_t
MAX_MESSAGE_LEN
= 40 * 1024 * 1024;
in HWTEST_F()
local
402
ret = ConvertCharArray2String(srcData,
MAX_MESSAGE_LEN
+ 1);
in HWTEST_F()
405
ret = ConvertCharArray2String(srcData2,
MAX_MESSAGE_LEN
+ 1);
in HWTEST_F()
/foundation/distributedhardware/distributed_hardware_fwk/common/utils/include/
H
A
D
constants.h
27
constexpr uint32_t
MAX_MESSAGE_LEN
= 40 * 1024 * 1024;
member
/foundation/distributedhardware/distributed_hardware_fwk/interfaces/inner_kits/test/unittest/common/distributedhardwarefwkkit/src/
H
A
D
distributed_hardware_fwk_kit_test.cpp
178
uint32_t
MAX_MESSAGE_LEN
= 40 * 1024 * 1024 + 10;
in HWTEST_F()
local
179
message.resize(
MAX_MESSAGE_LEN
);
in HWTEST_F()
/foundation/distributedhardware/distributed_hardware_fwk/utils/src/
H
A
D
dh_utils_tool.cpp
214
return (strlen(value->valuestring) > MIN_MESSAGE_LEN && strlen(value->valuestring) <=
MAX_MESSAGE_LEN
);
in IsString()
306
if (inputMessage.empty() || inputMessage.length() >
MAX_MESSAGE_LEN
) {
in IsMessageLengthValid()
307
DHLOGE("On parameter error, maybe empty or beyond
MAX_MESSAGE_LEN
!");
in IsMessageLengthValid()
Completed in 5 milliseconds