Lines Matching refs:jsonRequest
507 inline bool readJsonHelper(nlohmann::json& jsonRequest, crow::Response& res,
609 inline bool readJsonHelper(nlohmann::json& jsonRequest, crow::Response& res, in readJsonHelper() argument
613 jsonRequest.get_ptr<nlohmann::json::object_t*>(); in readJsonHelper()
640 bool readJsonObject(nlohmann::json::object_t& jsonRequest, crow::Response& res, in readJsonObject() argument
648 return readJsonHelperObject(jsonRequest, res, toUnpack2); in readJsonObject()
652 bool readJson(nlohmann::json& jsonRequest, crow::Response& res, in readJson() argument
656 jsonRequest.get_ptr<nlohmann::json::object_t*>(); in readJson()
670 nlohmann::json jsonRequest; in readJsonPatchHelper() local
671 if (!json_util::processJsonFromRequest(res, req, jsonRequest)) in readJsonPatchHelper()
677 jsonRequest.get_ptr<nlohmann::json::object_t*>(); in readJsonPatchHelper()
704 std::optional<nlohmann::json::object_t> jsonRequest = in readJsonPatch() local
706 if (!jsonRequest) in readJsonPatch()
710 if (jsonRequest->empty()) in readJsonPatch()
716 return readJsonObject(*jsonRequest, res, key, in readJsonPatch()
724 nlohmann::json jsonRequest; in readJsonAction() local
725 if (!json_util::processJsonFromRequest(res, req, jsonRequest)) in readJsonAction()
731 jsonRequest.get_ptr<nlohmann::json::object_t*>(); in readJsonAction()