Home
last modified time | relevance | path

Searched refs:GetMethod (Results 1 – 25 of 73) sorted by relevance

123

/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webview/
H A Dark_web_engine_prefetch_args_impl.cpp30 ArkWebString ArkWebEnginePrefetchArgsImpl::GetMethod() in GetMethod() function in OHOS::ArkWeb::ArkWebEnginePrefetchArgsImpl
32 return ArkWebStringClassToStruct(nweb_engine_pre_args_->GetMethod()); in GetMethod()
H A Dark_web_engine_prefetch_args_impl.h34 ArkWebString GetMethod() override;
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/bridge/webcore/
H A Dark_web_engine_prefetch_args_wrapper.cpp36 std::string ArkWebEnginePrefetchArgsWrapper::GetMethod() in GetMethod() function in OHOS::ArkWeb::ArkWebEnginePrefetchArgsWrapper
38 ArkWebString stMethod = ark_web_engine_pre_args_->GetMethod(); in GetMethod()
H A Dark_web_engine_prefetch_args_wrapper.h32 std::string GetMethod() override;
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/fetch/async_context/src/
H A Dfetch_context.cpp42 if (request.GetMethod().empty()) { in ParseParams()
110 if (FetchExec::MethodForGet(request.GetMethod())) { in ParseData()
113 if (FetchExec::MethodForPost(request.GetMethod())) { in ParseData()
117 …NETSTACK_LOGE("ParseData failed, method is not supported %{public}s", request.GetMethod().c_str()); in ParseData()
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/codegen/SA/ts/
H A Dsa_ts_code_emitter.cpp27 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in CheckInterfaceType()
92 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitInterfaceMethodCommands()
102 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitInterfaceImports()
H A Dsa_ts_interface_code_emitter.cpp70 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitInterfaceDefinition()
76 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitInterfaceDefinition()
H A Dsa_ts_service_stub_code_emitter.cpp91 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitInterfaceStubMethodImpls()
105 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitInterfaceStubMethodImpls()
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/codegen/SA/rust/
H A Dsa_rust_interface_code_emitter.cpp180 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitCommands()
231 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitBrokers()
300 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in AddRemoteRequestMethods()
343 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitStub()
377 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitProxy()
/ohos5.0/foundation/communication/netstack/test/unittest/http_client/
H A DHttpClientRequestTest.cpp90 string method = req.GetMethod();
98 string method = req.GetMethod();
107 string method = req.GetMethod();
/ohos5.0/base/web/webview/ohos_interface/ohos_glue/ohos_nweb/include/
H A Dark_web_engine_prefetch_args.h32 virtual ArkWebString GetMethod() = 0;
/ohos5.0/foundation/communication/netstack/frameworks/js/builtin/fetch/src/
H A Dfetch_module.cpp80 HTTP_REQUEST_INFO("request method is %s", req->GetMethod().c_str()); in JsObjectToRequestData()
166 if (MethodForGet(requestData->GetMethod())) { in ParseExtraData()
210 if (MethodForPost(requestData->GetMethod())) { in ParseExtraData()
H A Drequest_data.cpp64 const std::string &RequestData::GetMethod() const in GetMethod() function in OHOS::ACELite::RequestData
/ohos5.0/foundation/ability/idl_tool/idl_tool_2/codegen/SA/cpp/
H A Dsa_cpp_client_proxy_code_emitter.cpp102 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitInterfaceProxyAddCacheAbleAPI()
138 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitInterfaceProxyUnRegisterDeathRecipient()
172 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitInterfaceProxyMethodDecls()
255 AutoPtr<ASTMethod> method = interface_->GetMethod(i); in EmitInterfaceProxyMethodImpls()
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/fetch/options/include/
H A Dfetch_request.h37 [[nodiscard]] const std::string &GetMethod() const;
/ohos5.0/foundation/communication/netstack/frameworks/native/http/http_client/
H A Dhttp_client_task.cpp309 auto method = request_.GetMethod(); in SetCurlOptions()
322 … NETSTACK_CURL_EASY_SET_OPTION(curlHandle_, CURLOPT_CUSTOMREQUEST, request_.GetMethod().c_str()); in SetCurlOptions()
576 auto method = request_.GetMethod(); in GetSizeFromCurl()
631 request_.GetMethod().c_str()); in DumpHttpPerformance()
/ohos5.0/foundation/ability/idl_tool/ast/
H A Dast_interface_type.h56 AutoPtr<ASTMethod> GetMethod(size_t index);
H A Dast_interface_type.cpp38 AutoPtr<ASTMethod> ASTInterfaceType::GetMethod(size_t index) in GetMethod() function in OHOS::Idl::ASTInterfaceType
/ohos5.0/base/location/frameworks/native/fence_extension_ability/src/
H A Djs_fence_extension.cpp209 ::napi_value method = GetMethod(jsRuntime_, jsObj_, "onDestroy"); in OnStop()
284 ::napi_value method = GetMethod(jsRuntime_, jsObj_, "onFenceStatusChange"); in CallToUiThread()
355 ::napi_value JsFenceExtension::GetMethod( in GetMethod() function in OHOS::Location::JsFenceExtension
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/fetch/options/src/
H A Dfetch_request.cpp52 const std::string &FetchRequest::GetMethod() const in GetMethod() function in OHOS::NetStack::Fetch::FetchRequest
/ohos5.0/foundation/communication/netstack/frameworks/cj/http/src/
H A Dnet_http_cache_strategy.cpp40 return requestOptions_.GetMethod() == HTTP_METHOD_GET || in CouldUseCache()
41 requestOptions_.GetMethod() == HTTP_METHOD_HEAD || in CouldUseCache()
/ohos5.0/foundation/communication/netstack/frameworks/js/napi/http/cache/cache_strategy/src/
H A Dhttp_cache_strategy.cpp43 return requestOptions_.GetMethod() == HttpConstant::HTTP_METHOD_GET || in CouldUseCache()
44 requestOptions_.GetMethod() == HttpConstant::HTTP_METHOD_HEAD || in CouldUseCache()
/ohos5.0/foundation/communication/netstack/frameworks/js/builtin/fetch/include/
H A Drequest_data.h42 [[nodiscard]] const std::string &GetMethod() const;
/ohos5.0/foundation/arkui/ace_engine/adapter/preview/osal/
H A Drequest_data.h55 const std::string GetMethod() const in GetMethod() function
/ohos5.0/base/location/frameworks/native/fence_extension_ability/include/
H A Djs_fence_extension.h119 ::napi_value GetMethod(

123