Home
last modified time | relevance | path

Searched refs:CreateFrame (Results 1 – 18 of 18) sorted by relevance

/arkcompiler/toolchain/websocket/client/
Dwebsocket_client.h48 std::string CreateFrame(bool isLast, FrameType frameType) const override;
49 …std::string CreateFrame(bool isLast, FrameType frameType, const std::string& payload) const overri…
50 std::string CreateFrame(bool isLast, FrameType frameType, std::string&& payload) const override;
Dwebsocket_client.cpp270 std::string WebSocketClient::CreateFrame(bool isLast, FrameType frameType) const in CreateFrame() function in OHOS::ArkCompiler::Toolchain::WebSocketClient
276 std::string WebSocketClient::CreateFrame(bool isLast, FrameType frameType, const std::string& paylo… in CreateFrame() function in OHOS::ArkCompiler::Toolchain::WebSocketClient
282 std::string WebSocketClient::CreateFrame(bool isLast, FrameType frameType, std::string&& payload) c… in CreateFrame() function in OHOS::ArkCompiler::Toolchain::WebSocketClient
/arkcompiler/toolchain/websocket/server/
Dwebsocket_server.h54 std::string CreateFrame(bool isLast, FrameType frameType) const override;
55 …std::string CreateFrame(bool isLast, FrameType frameType, const std::string& payload) const overri…
56 std::string CreateFrame(bool isLast, FrameType frameType, std::string&& payload) const override;
Dwebsocket_server.cpp320 std::string WebSocketServer::CreateFrame(bool isLast, FrameType frameType) const in CreateFrame() function in OHOS::ArkCompiler::Toolchain::WebSocketServer
326 std::string WebSocketServer::CreateFrame(bool isLast, FrameType frameType, const std::string& paylo… in CreateFrame() function in OHOS::ArkCompiler::Toolchain::WebSocketServer
332 std::string WebSocketServer::CreateFrame(bool isLast, FrameType frameType, std::string&& payload) c… in CreateFrame() function in OHOS::ArkCompiler::Toolchain::WebSocketServer
/arkcompiler/toolchain/websocket/
Dwebsocket_base.h103 virtual std::string CreateFrame(bool isLast, FrameType frameType) const = 0;
104 …virtual std::string CreateFrame(bool isLast, FrameType frameType, const std::string& payload) cons…
105 …virtual std::string CreateFrame(bool isLast, FrameType frameType, std::string&& payload) const = 0;
Dwebsocket_base.cpp32 auto frame = CreateFrame(isLast, frameType, message); in SendReply()
177 auto frame = CreateFrame(true, FrameType::PONG, std::move(payload)); in SendPongFrame()
185 auto frame = CreateFrame(true, FrameType::CLOSE, ToString(status)); in SendCloseFrame()
/arkcompiler/runtime_core/static_core/runtime/tests/
Di2c_bridge_test.cpp137 static Frame *CreateFrame(size_t nregs, Method *method, Frame *prev) in CreateFrame() function
147 Frame *frame = CreateFrame(0, nullptr, nullptr); in TEST_F()
176 Frame *frame = CreateFrame(1, nullptr, nullptr); in TEST_F()
213 Frame *frame = CreateFrame(0, nullptr, nullptr); in TEST_F()
248 Frame *frame = CreateFrame(0, nullptr, nullptr); in TEST_F()
283 Frame *frame = CreateFrame(0, nullptr, nullptr); in TEST_F()
311 Frame *frame = CreateFrame(0, nullptr, nullptr); in TEST_F()
339 Frame *frame = CreateFrame(0, nullptr, nullptr); in TEST_F()
367 Frame *frame = CreateFrame(0, nullptr, nullptr); in TEST_F()
395 Frame *frame = CreateFrame(0, nullptr, nullptr); in TEST_F()
[all …]
Dinterpreter_test.cpp85 auto CreateFrame(uint32_t nregs, Method *method, Frame *prev) in CreateFrame() function
89 RuntimeInterface::template CreateFrame<false>(nregs, method, prev), frameDeleter); in CreateFrame()
214 auto f = CreateFrame(std::numeric_limits<uint16_t>::max() + 1, nullptr, nullptr); in TEST_F()
321 auto f = CreateFrame(16U, nullptr, nullptr); in TEST_F()
384 auto f = CreateFrame(16U, nullptr, nullptr); in TEST_F()
410 auto f = CreateFrame(16U, nullptr, nullptr); in TestUnimpelemented()
450 auto f = CreateFrame(16U, nullptr, nullptr); in TEST_F()
489 auto f = CreateFrame(16U, nullptr, nullptr); in TestFcmp()
544 auto f = CreateFrame(16U, nullptr, nullptr); in TestConditionalJmp()
578 auto f = CreateFrame(16U, nullptr, nullptr); in TestConditionalJmp()
[all …]
Dframe_test.cpp54 Frame *CreateFrame(size_t nregs, Method *method, Frame *prev) in CreateFrame() function
69 Frame *f = panda::test::CreateFrame(2, nullptr, nullptr); in TEST_F()
Ddebugger_test.cpp68 static Frame *CreateFrame(size_t nregs, Method *method, Frame *prev) in CreateFrame() function
121 panda::Frame *frame = test::CreateFrame(nregs + nargs, &method, nullptr); in TEST_F()
Dmethod_test.cpp116 static Frame *CreateFrame(size_t nregs, Method *method, Frame *prev) in CreateFrame() function
187 …std::unique_ptr<Frame, decltype(frameDeleter)> frame(CreateFrame(0, mainMethod, nullptr), frameDel… in TEST_F()
/arkcompiler/runtime_core/static_core/runtime/include/
Dmethod-inl.h74 …ALWAYS_INLINE static Frame *CreateFrame([[maybe_unused]] ManagedThread *thread, uint32_t nregsSize… in CreateFrame() function
128 …ALWAYS_INLINE static Frame *CreateFrame([[maybe_unused]] ManagedThread *thread, uint32_t nregsSize… in CreateFrame() function
388 …framePtr = InvokeHelper::CreateFrame(thread, Frame::GetActualSize<InvokeHelper::IS_DYNAMIC>(frameS… in InitFrameWithNumVRegs()
/arkcompiler/runtime_core/static_core/runtime/interpreter/
Druntime_interface.h232 static Frame *CreateFrame(uint32_t nregs, Method *method, Frame *prev) in CreateFrame() function
Dframe.h767 ALWAYS_INLINE inline Frame *CreateFrame(mem::StackFrameAllocator *stackFrameAllocator, uint32_t nre… in CreateFrame() function
Dinterpreter-inl.h92 …ALWAYS_INLINE static Frame *CreateFrame([[maybe_unused]] ManagedThread *thread, uint32_t nregsSize… in CreateFrame() function
3308 …*frame = FrameHelper::template CreateFrame<RuntimeIfaceT>(current, Frame::GetActualSize<IS_DYNAMIC… in CreateAndSetFrame()
/arkcompiler/runtime_core/static_core/runtime/tests/interpreter/
Dtest_runtime_interface.h400 static Frame *CreateFrame(size_t nregs, Method *method, Frame *prev) in CreateFrame() function
/arkcompiler/runtime_core/static_core/runtime/entrypoints/
Dentrypoints.cpp544 static Frame *CreateFrame(uint32_t nregs, Method *method, Frame *prev) in CreateFrame() function
568 return CreateFrame<false>(nregs, method, prev); in CreateFrameForMethod()
574 return CreateFrame<true>(nregs, method, prev); in CreateFrameForMethodDyn()
/arkcompiler/runtime_core/static_core/runtime/
Dstack_walker.cpp604 …frame = interpreter::RuntimeInterface::CreateFrame(frameNumVregs, method, reinterpret_cast<Frame *… in ConvertToIFrame()