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:NTP_PACKAGE_SIZE
(Results
1 - 3
of
3
) sorted by relevance
/base/time/time_service/test/fuzztest/timeservice_fuzzer/timesntp_fuzzer/
H
A
D
timesntp_fuzzer.cpp
30
constexpr size_t
NTP_PACKAGE_SIZE
= 48;
member
34
size_t copySize = (size <
NTP_PACKAGE_SIZE
) ? size :
NTP_PACKAGE_SIZE
;
in Convert()
39
for (size_t i = copySize; i <
NTP_PACKAGE_SIZE
; ++i) {
in Convert()
46
char sendBuf[
NTP_PACKAGE_SIZE
] = { 0 };
in FuzzTimeCreateMessage()
57
char sendBuf[
NTP_PACKAGE_SIZE
] = { 0 };
in FuzzTimeReceivedMessage()
/base/time/time_service/test/fuzztest/timeservice_fuzzer/timereceivedmessage_fuzzer/
H
A
D
timereceivedmessage_fuzzer.cpp
37
constexpr int32_t
NTP_PACKAGE_SIZE
= 48;
member
52
char buffer[
NTP_PACKAGE_SIZE
] = { 0 };
in FuzzTimeReceivedMessage()
53
if (memcpy_s(buffer,
NTP_PACKAGE_SIZE
, data, size) != EOK) {
in FuzzTimeReceivedMessage()
/base/time/time_service/services/time/src/
H
A
D
sntp_client.cpp
61
constexpr int32_t
NTP_PACKAGE_SIZE
= 48;
member
68
int bufLen =
NTP_PACKAGE_SIZE
;
in RequestTime()
99
char sendBuf[
NTP_PACKAGE_SIZE
] = { 0 };
in RequestTime()
108
char bufferRx[
NTP_PACKAGE_SIZE
] = { 0 };
in RequestTime()
110
if (recv(sendSocket, bufferRx,
NTP_PACKAGE_SIZE
, 0) < 0) {
in RequestTime()
Completed in 2 milliseconds