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:payloadLen
(Results
1 - 6
of
6
) sorted by relevance
/arkcompiler/toolchain/websocket/
H
A
D
frame_builder.cpp
94
uint64_t
payloadLen
= payload_.size();
in PushPayloadLength()
local
96
PushNumberPerByte(message, static_cast<uint16_t>(
payloadLen
));
in PushPayloadLength()
98
PushNumberPerByte(message,
payloadLen
);
in PushPayloadLength()
H
A
D
web_socket_frame.h
54
uint64_t
payloadLen
= 0;
member
63
:
payloadLen
(static_cast<uint64_t>(headerRaw[1]) & 0x7f),
in WebSocketFrame()
H
A
D
websocket_base.cpp
87
if (wsFrame.
payloadLen
== WebSocketFrame::TWO_BYTES_LENTH_ENC) {
in ReadPayload()
90
LOGE("ReadPayload: Recv
payloadLen
== 126 failed");
in ReadPayload()
93
wsFrame.
payloadLen
= NetToHostLongLong(recvbuf, WebSocketFrame::TWO_BYTES_LENTH);
in ReadPayload()
94
} else if (wsFrame.
payloadLen
== WebSocketFrame::EIGHT_BYTES_LENTH_ENC) {
in ReadPayload()
97
LOGE("ReadPayload: Recv
payloadLen
== 127 failed");
in ReadPayload()
100
wsFrame.
payloadLen
= NetToHostLongLong(recvbuf, WebSocketFrame::EIGHT_BYTES_LENTH);
in ReadPayload()
/arkcompiler/toolchain/websocket/test/
H
A
D
web_socket_frame_test.cpp
38
ASSERT_EQ(wsFrame.
payloadLen
, EXPECTED_PAYLOAD_LEN);
in HWTEST_F()
/arkcompiler/toolchain/websocket/client/
H
A
D
websocket_client.cpp
245
uint64_t msgLen = wsFrame.
payloadLen
;
in DecodeMessage()
/arkcompiler/toolchain/websocket/server/
H
A
D
websocket_server.cpp
56
const uint64_t msgLen = wsFrame.
payloadLen
;
in DecodeMessage()
Completed in 4 milliseconds