| /arkcompiler/toolchain/websocket/client/ |
| D | websocket_client.h | 48 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;
|
| D | websocket_client.cpp | 270 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/ |
| D | websocket_server.h | 54 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;
|
| D | websocket_server.cpp | 320 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/ |
| D | websocket_base.h | 103 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;
|
| D | websocket_base.cpp | 32 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/ |
| D | i2c_bridge_test.cpp | 137 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 …]
|
| D | interpreter_test.cpp | 85 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 …]
|
| D | frame_test.cpp | 54 Frame *CreateFrame(size_t nregs, Method *method, Frame *prev) in CreateFrame() function 69 Frame *f = panda::test::CreateFrame(2, nullptr, nullptr); in TEST_F()
|
| D | debugger_test.cpp | 68 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()
|
| D | method_test.cpp | 116 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/ |
| D | method-inl.h | 74 …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/ |
| D | runtime_interface.h | 232 static Frame *CreateFrame(uint32_t nregs, Method *method, Frame *prev) in CreateFrame() function
|
| D | frame.h | 767 ALWAYS_INLINE inline Frame *CreateFrame(mem::StackFrameAllocator *stackFrameAllocator, uint32_t nre… in CreateFrame() function
|
| D | interpreter-inl.h | 92 …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/ |
| D | test_runtime_interface.h | 400 static Frame *CreateFrame(size_t nregs, Method *method, Frame *prev) in CreateFrame() function
|
| /arkcompiler/runtime_core/static_core/runtime/entrypoints/ |
| D | entrypoints.cpp | 544 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/ |
| D | stack_walker.cpp | 604 …frame = interpreter::RuntimeInterface::CreateFrame(frameNumVregs, method, reinterpret_cast<Frame *… in ConvertToIFrame()
|