Home
last modified time | relevance | path

Searched refs:TLSSendContext (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/communication/netstack/frameworks/js/napi/tls/src/context/
H A Dtls_send_context.cpp30 TLSSendContext::TLSSendContext(napi_env env, EventManager *manager) : BaseContext(env, manager) {} in TLSSendContext() function in OHOS::NetStack::TlsSocket::TLSSendContext
32 void TLSSendContext::ParseParams(napi_value *params, size_t paramsCount) in ParseParams()
68 bool TLSSendContext::CheckParamsType(napi_value *params, size_t paramsCount) in CheckParamsType()
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/tls/include/context/
H A Dtls_send_context.h32 class TLSSendContext final : public BaseContext {
34 TLSSendContext() = delete;
35 explicit TLSSendContext(napi_env env, EventManager *manager);
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/tls/include/
H A Dtlssocket_exec.h44 static bool ExecSend(TLSSendContext *context);
58 static napi_value SendCallback(TLSSendContext *context);
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/tls/src/
H A Dtlssocket_async_work.cpp63 BaseAsyncWork::ExecAsyncWork<TLSSendContext, TLSSocketExec::ExecSend>(env, data); in ExecSend()
135 … BaseAsyncWork::AsyncWorkCallback<TLSSendContext, TLSSocketExec::SendCallback>(env, status, data); in SendCallback()
H A Dtlssocket_exec.cpp250 bool TLSSocketExec::ExecSend(TLSSendContext *context) in ExecSend()
537 napi_value TLSSocketExec::SendCallback(TLSSendContext *context) in SendCallback()
H A Dtlssocket_module.cpp96 …return ModuleTemplate::Interface<TLSSendContext>(env, info, FUNCTION_SEND, nullptr, TLSSocketAsync… in Send()