Home
last modified time | relevance | path

Searched refs:setJsonRpcError (Results 1 – 9 of 9) sorted by relevance

/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/server/auth/
H A DServerSecureUriHandler.cpp239 void setJsonRpcError(const http::Request&, http::Response* pResponse) in setJsonRpcError() function
241 json::setJsonRpcError(Error(json::errc::Unauthorized, ERROR_LOCATION), pResponse); in setJsonRpcError()
250 setJsonRpcError(request, pResponse); in setFileUploadError()
295 return UriHandler(makeExtendedUriHandler(handler), setJsonRpcError, false, true); in secureJsonRpcHandler()
301 return UriHandler(handler, setJsonRpcError, false, true); in secureJsonRpcHandlerEx()
348 boost::bind(asyncSetError, setJsonRpcError, _1), in secureAsyncJsonRpcHandler()
357 boost::bind(asyncSetError, setJsonRpcError, _1), in secureAsyncJsonRpcHandlerEx()
H A DServerAuthHandler.cpp91 json::setJsonRpcError(methodNotFoundError, pResponse); in updateCredentialsNotSupported()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/core/gwt/
H A DGwtLogHandler.cpp122 json::setJsonRpcError(error, pResponse); in handleLogExceptionRequest()
133 json::setJsonRpcError(error, pResponse); in handleLogExceptionRequest()
194 json::setJsonRpcError(error, pResponse); in handleLogMessageRequest()
263 json::setJsonRpcError(parseError, pResponse); in handleLogRequest()
287 json::setJsonRpcError(methodError, pResponse); in handleLogRequest()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/server/
H A DServerMeta.cpp51 json::setJsonRpcError(parseError, pResponse); in handleMetaRequest()
67 json::setJsonRpcError(methodError, pResponse); in handleMetaRequest()
H A DServerSessionProxy.cpp543 json::setJsonRpcError(Error(json::errc::Unauthorized, ERROR_LOCATION), in handleRpcError()
582 json::setJsonRpcError(Error(json::errc::ConnectionError, ERROR_LOCATION), in handleRpcError()
588 json::setJsonRpcError(Error(json::errc::TransmissionError, ERROR_LOCATION), in handleRpcError()
619 json::setJsonRpcError(Error(json::errc::Unavailable, ERROR_LOCATION), in handleEventsError()
625 json::setJsonRpcError(Error(json::errc::Unavailable, ERROR_LOCATION), in handleEventsError()
633 json::setJsonRpcError(Error(json::errc::TransmissionError, ERROR_LOCATION), in handleEventsError()
779 json::setJsonRpcError(Error(json::errc::Unauthorized, ERROR_LOCATION), in validateUser()
H A DServerOffline.cpp43 json::setJsonRpcError(Error(json::errc::ServerOffline, ERROR_LOCATION), pResponse); in handleOfflineRequest()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/core/json/
H A DJsonRpc.cpp142 setJsonRpcError(parseError, pResponse); in parseJsonRpcRequestForMethod()
152 setJsonRpcError(methodError, pResponse); in parseJsonRpcRequestForMethod()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/session/modules/
H A DSessionFiles.cpp758 json::setJsonRpcError(fileTooLargeError, pResponse); in validateUploadedFile()
907 json::setJsonRpcError(error, &response); in handleFileUploadRequestAsync()
914 json::setJsonRpcError(Error(json::errc::ParamInvalid, ERROR_LOCATION), &response); in handleFileUploadRequestAsync()
/dports/devel/RStudio/rstudio-2021.09.1-372/src/cpp/core/include/core/json/
H A DJsonRpc.hpp480 void setJsonRpcError(const T& error, core::http::Response* pResponse, bool includeErrorProperties =… in setJsonRpcError() function