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:maskingKey
(Results
1 - 5
of
5
) sorted by relevance
/arkcompiler/toolchain/websocket/
H
A
D
frame_builder.cpp
107
ClientFrameBuilder::ClientFrameBuilder(bool final, FrameType opcode, const uint8_t
maskingKey
[WebSocketFrame::MASK_LEN])
in ClientFrameBuilder()
argument
110
SetMask(
maskingKey
);
in ClientFrameBuilder()
113
ClientFrameBuilder& ClientFrameBuilder::SetMask(const uint8_t
maskingKey
[WebSocketFrame::MASK_LEN])
in SetMask()
argument
116
maskingKey_[i] =
maskingKey
[i];
in SetMask()
H
A
D
frame_builder.h
66
ClientFrameBuilder(bool final, FrameType opcode, const uint8_t
maskingKey
[WebSocketFrame::MASK_LEN]);
68
ClientFrameBuilder& SetMask(const uint8_t
maskingKey
[WebSocketFrame::MASK_LEN]);
H
A
D
web_socket_frame.h
58
uint8_t
maskingKey
[MASK_LEN] = {0};
member
/arkcompiler/toolchain/websocket/test/
H
A
D
web_socket_frame_test.cpp
42
ASSERT_EQ(wsFrame.
maskingKey
[i], 0);
in HWTEST_F()
/arkcompiler/toolchain/websocket/server/
H
A
D
websocket_server.cpp
64
if (!RecvUnderLock(wsFrame.
maskingKey
, sizeof(wsFrame.
maskingKey
))) {
in DecodeMessage()
65
LOGE("DecodeMessage: Recv
maskingKey
failed");
in DecodeMessage()
76
buffer[i] = static_cast<uint8_t>(buffer[i]) ^ wsFrame.
maskingKey
[j];
in DecodeMessage()
Completed in 2 milliseconds