| /openbmc/bmcweb/http/ |
| H A D | verb.hpp | 28 inline std::optional<HttpVerb> httpVerbFromBoost(boost::beast::http::verb bv) in httpVerbFromBoost() 32 case boost::beast::http::verb::delete_: in httpVerbFromBoost() 34 case boost::beast::http::verb::get: in httpVerbFromBoost() 36 case boost::beast::http::verb::head: in httpVerbFromBoost() 38 case boost::beast::http::verb::options: in httpVerbFromBoost() 40 case boost::beast::http::verb::patch: in httpVerbFromBoost() 42 case boost::beast::http::verb::post: in httpVerbFromBoost() 44 case boost::beast::http::verb::put: in httpVerbFromBoost() 51 inline std::string_view httpVerbToString(HttpVerb verb) in httpVerbToString() argument 53 switch (verb) in httpVerbToString()
|
| H A D | http_request.hpp | 86 boost::beast::http::verb method() const in method() 91 void method(boost::beast::http::verb verb) in method() 93 req.method(verb); in method()
|
| /openbmc/bmcweb/test/redfish-core/include/ |
| H A D | privileges_test.cpp | 32 OperationMap entityPrivileges{{boost::beast::http::verb::get, {{"Login"}}}}; in TEST() 35 boost::beast::http::verb::get, entityPrivileges, userPrivileges)); in TEST() 41 OperationMap entityPrivileges{{boost::beast::http::verb::get, {}}}; in TEST() 44 boost::beast::http::verb::get, entityPrivileges, userPrivileges)); in TEST() 51 {boost::beast::http::verb::get, {{"ConfigureManager"}}}}; in TEST() 54 boost::beast::http::verb::get, entityPrivileges, userPrivileges)); in TEST() 62 {boost::beast::http::verb::get, in TEST() 66 boost::beast::http::verb::get, entityPrivileges, userPrivileges)); in TEST() 73 {boost::beast::http::verb::get, in TEST() 77 boost::beast::http::verb::get, entityPrivileges, userPrivileges)); in TEST() [all …]
|
| H A D | redfish_oem_routing_test.cpp | 50 .methods(boost::beast::http::verb::get)(standardCallback); in TEST() 60 crow::Request::Body{boost::beast::http::verb::get, reqUrl, 11}, ec); in TEST() 129 .methods(boost::beast::http::verb::patch)(standardCallback); in TEST() 149 boost::beast::http::verb::patch, reqUrl, 11, in TEST()
|
| /openbmc/bmcweb/redfish-core/include/ |
| H A D | sub_request.hpp | 24 if (req.method() == boost::beast::http::verb::patch || in SubRequest() 25 req.method() == boost::beast::http::verb::post) in SubRequest() 51 boost::beast::http::verb method() const in method() 63 if (method_ == boost::beast::http::verb::get) in needHandling() 68 if ((method_ == boost::beast::http::verb::patch || in needHandling() 69 method_ == boost::beast::http::verb::post) && in needHandling() 80 boost::beast::http::verb method_;
|
| H A D | query.hpp | 75 if (req.method() != boost::beast::http::verb::patch && in handleIfMatch() 76 req.method() != boost::beast::http::verb::post && in handleIfMatch() 77 req.method() != boost::beast::http::verb::delete_) in handleIfMatch() 86 crow::Request::Body{boost::beast::http::verb::get, in handleIfMatch() 179 if (req.method() != boost::beast::http::verb::get) in setUpRedfishRouteWithDelegation()
|
| /openbmc/bmcweb/http/routing/ |
| H A D | ruleparametertraits.hpp | 45 self_t& methods(boost::beast::http::verb method) in methods() 48 std::optional<HttpVerb> verb = httpVerbFromBoost(method); in methods() local 49 if (verb) in methods() 51 self->methodsBitfield = 1U << static_cast<size_t>(*verb); in methods() 57 self_t& methods(boost::beast::http::verb method, MethodArgs... argsMethod) in methods() 61 std::optional<HttpVerb> verb = httpVerbFromBoost(method); in methods() local 62 if (verb) in methods() 64 self->methodsBitfield |= 1U << static_cast<size_t>(*verb); in methods()
|
| /openbmc/u-boot/disk/ |
| H A D | part_iso.c | 49 disk_partition_t *info, int verb) in part_get_info_iso_verb() argument 68 if(verb) in part_get_info_iso_verb() 74 if(verb) in part_get_info_iso_verb() 90 if(verb) in part_get_info_iso_verb() 98 if(verb) in part_get_info_iso_verb() 106 if(verb) in part_get_info_iso_verb() 116 if(verb) in part_get_info_iso_verb() 122 if(verb) in part_get_info_iso_verb() 129 if(verb) in part_get_info_iso_verb() 159 if(verb) in part_get_info_iso_verb() [all …]
|
| /openbmc/openbmc/poky/meta/recipes-devtools/gnu-config/gnu-config/ |
| H A D | gnu-configize.in | 145 verb "$configure_ac: not using Autoconf"; 154 verb "$configure_ac: tracing"; 177 verb "$configure_ac: subdirectory $_ to gnu-configize"; 182 verb "$configure_ac: subdirectory $_ not present"; 193 verb "$configure_ac: creating directory $aux_dir"; 225 verb "Entering directory `$directory'"; 233 verb "Leaving directory `$directory'";
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | 219.out | 39 …s": "GenericError", "desc": "Job 'job0' in state 'running' cannot accept command verb 'complete'"}} 40 …s": "GenericError", "desc": "Job 'job0' in state 'running' cannot accept command verb 'finalize'"}} 41 …ss": "GenericError", "desc": "Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}} 42 …s": "GenericError", "desc": "Job 'job0' in state 'running' cannot accept command verb 'complete'"}} 43 …s": "GenericError", "desc": "Job 'job0' in state 'running' cannot accept command verb 'finalize'"}} 44 …ss": "GenericError", "desc": "Job 'job0' in state 'running' cannot accept command verb 'dismiss'"}} 80 {"error": {"class": "GenericError", "desc": "Job 'job0' in state 'ready' cannot accept command verb… 81 {"error": {"class": "GenericError", "desc": "Job 'job0' in state 'ready' cannot accept command verb… 82 {"error": {"class": "GenericError", "desc": "Job 'job0' in state 'ready' cannot accept command verb… 83 {"error": {"class": "GenericError", "desc": "Job 'job0' in state 'ready' cannot accept command verb… [all …]
|
| /openbmc/bmcweb/test/http/ |
| H A D | verb_test.cpp | 13 using BoostVerb = boost::beast::http::verb; 31 std::optional<HttpVerb> verb = httpVerbFromBoost(verbMap[httpVerb]); in TEST() local 32 EXPECT_EQ(verb, httpVerb); in TEST() 38 std::optional<HttpVerb> verb = httpVerbFromBoost(BoostVerb::unknown); in TEST() local 39 EXPECT_FALSE(verb.has_value()); in TEST()
|
| H A D | router_test.cpp | 37 Request req{{boost::beast::http::verb::get, url, 11}, ec}; in TEST() 45 .methods(boost::beast::http::verb::get)(nullCallback); in TEST() 50 Request patchReq{{boost::beast::http::verb::patch, url, 11}, ec}; in TEST() 54 .methods(boost::beast::http::verb::patch)(nullCallback); in TEST() 87 Request::Body{boost::beast::http::verb::get, url, 11}, ec); in TEST() 113 Request::Body{boost::beast::http::verb::get, url, 11}, ec); 144 Request::Body{boost::beast::http::verb::patch, url, 11}, ec); 147 .methods(boost::beast::http::verb::get)(nullCallback);
|
| /openbmc/bmcweb/redfish-core/lib/ |
| H A D | manager_logservices_dbus_eventlog.hpp | 155 .methods(boost::beast::http::verb::get)(std::bind_front( in requestRoutesManagersDBusEventLog() 160 .methods(boost::beast::http::verb::get)( in requestRoutesManagersDBusEventLog() 166 .methods(boost::beast::http::verb::patch)(std::bind_front( in requestRoutesManagersDBusEventLog() 174 .methods(boost::beast::http::verb::delete_)(std::bind_front( in requestRoutesManagersDBusEventLog() 182 .methods(boost::beast::http::verb::post)(std::bind_front( in requestRoutesManagersDBusEventLog() 188 .methods(boost::beast::http::verb::get)(std::bind_front( in requestRoutesManagersDBusEventLog()
|
| H A D | systems_logservices_dbus_eventlog.hpp | 200 .methods(boost::beast::http::verb::get)(std::bind_front( in requestRoutesSystemsDBusEventLog() 206 .methods(boost::beast::http::verb::get)( in requestRoutesSystemsDBusEventLog() 212 .methods(boost::beast::http::verb::patch)(std::bind_front( in requestRoutesSystemsDBusEventLog() 220 .methods(boost::beast::http::verb::delete_)(std::bind_front( in requestRoutesSystemsDBusEventLog() 228 .methods(boost::beast::http::verb::post)(std::bind_front( in requestRoutesSystemsDBusEventLog() 235 .methods(boost::beast::http::verb::get)(std::bind_front( in requestRoutesSystemsDBusEventLog()
|
| H A D | redfish_sessions.hpp | 373 .methods(boost::beast::http::verb::head)( in requestRoutesSession() 378 .methods(boost::beast::http::verb::get)( in requestRoutesSession() 383 .methods(boost::beast::http::verb::delete_)( in requestRoutesSession() 388 .methods(boost::beast::http::verb::head)( in requestRoutesSession() 393 .methods(boost::beast::http::verb::get)( in requestRoutesSession() 403 .methods(boost::beast::http::verb::post)( in requestRoutesSession() 408 .methods(boost::beast::http::verb::post)( in requestRoutesSession() 413 .methods(boost::beast::http::verb::head)( in requestRoutesSession() 418 .methods(boost::beast::http::verb::get)( in requestRoutesSession() 423 .methods(boost::beast::http::verb::patch)( in requestRoutesSession()
|
| H A D | manager_logservices_journal_eventlog.hpp | 99 .methods(boost::beast::http::verb::get)(std::bind_front( in requestRoutesManagersJournalEventLog() 105 .methods(boost::beast::http::verb::get)( in requestRoutesManagersJournalEventLog() 113 .methods(boost::beast::http::verb::post)( in requestRoutesManagersJournalEventLog()
|
| H A D | aggregation_service.hpp | 74 .methods(boost::beast::http::verb::head)( in requestRoutesAggregationService() 78 .methods(boost::beast::http::verb::get)( in requestRoutesAggregationService() 137 .methods(boost::beast::http::verb::get)(std::bind_front( in requestRoutesAggregationSourceCollection() 142 .methods(boost::beast::http::verb::head)(std::bind_front( in requestRoutesAggregationSourceCollection() 427 .methods(boost::beast::http::verb::get)( in requestRoutesAggregationSource() 433 .methods(boost::beast::http::verb::patch)( in requestRoutesAggregationSource() 439 .methods(boost::beast::http::verb::delete_)( in requestRoutesAggregationSource() 445 .methods(boost::beast::http::verb::head)( in requestRoutesAggregationSource() 450 .methods(boost::beast::http::verb::post)(std::bind_front( in requestRoutesAggregationSource()
|
| H A D | systems_logservices_journal_eventlog.hpp | 117 .methods(boost::beast::http::verb::get)(std::bind_front( in requestRoutesSystemsJournalEventLog() 123 .methods(boost::beast::http::verb::get)(std::bind_front( in requestRoutesSystemsJournalEventLog() 131 .methods(boost::beast::http::verb::post)(std::bind_front( in requestRoutesSystemsJournalEventLog()
|
| H A D | redfish_v1.hpp | 81 if (req.method() == boost::beast::http::verb::delete_) in redfish405() 248 .methods(boost::beast::http::verb::get)( in requestRoutesRedfish() 253 .methods(boost::beast::http::verb::get)(jsonSchemaGetFile); in requestRoutesRedfish() 257 .methods(boost::beast::http::verb::get)( in requestRoutesRedfish() 262 .methods(boost::beast::http::verb::get)( in requestRoutesRedfish()
|
| H A D | log_services.hpp | 39 #include <boost/beast/http/verb.hpp> 1463 .methods(boost::beast::http::verb::get)(std::bind_front( in handleLogServicesDumpClearLogComputerSystemPost() 1471 .methods(boost::beast::http::verb::get)(std::bind_front( in handleLogServicesDumpClearLogComputerSystemPost() 1480 .methods(boost::beast::http::verb::get)(std::bind_front( in handleLogServicesDumpClearLogComputerSystemPost() 1486 .methods(boost::beast::http::verb::delete_)(std::bind_front( in requestRoutesBMCDumpService() 1496 .methods(boost::beast::http::verb::get)(std::bind_front( in requestRoutesBMCDumpEntryCollection() 1506 .methods(boost::beast::http::verb::post)( in requestRoutesBMCDumpEntry() 1517 .methods(boost::beast::http::verb::post)(std::bind_front( in requestRoutesBMCDumpEntryDownload() 1525 .methods(boost::beast::http::verb::get)(std::bind_front( in requestRoutesBMCDumpCreate() 1534 .methods(boost::beast::http::verb in requestRoutesBMCDumpCreate() [all...] |
| /openbmc/bmcweb/features/openbmc_rest/ |
| H A D | image_upload.hpp | 122 .methods(boost::beast::http::verb::post, boost::beast::http::verb::put)( in requestRoutes() 129 .methods(boost::beast::http::verb::post, boost::beast::http::verb::put)( in requestRoutes()
|
| /openbmc/bmcweb/features/ibm/ |
| H A D | ibm_management_console_rest.hpp | 371 if (req.method() == boost::beast::http::verb::put) in handleFileUrl() 376 if (req.method() == boost::beast::http::verb::get) in handleFileUrl() 381 if (req.method() == boost::beast::http::verb::delete_) in handleFileUrl() 427 .methods(boost::beast::http::verb::get)( in requestRoutes() 443 .methods(boost::beast::http::verb::get)( in requestRoutes() 452 .methods(boost::beast::http::verb::post)( in requestRoutes() 460 .methods(boost::beast::http::verb::put, boost::beast::http::verb::get, in requestRoutes() 461 boost::beast::http::verb::delete_)( in requestRoutes() 478 .methods(boost::beast::http::verb::post)( in requestRoutes()
|
| /openbmc/bmcweb/include/ |
| H A D | authentication.hpp | 135 boost::beast::http::verb method [[maybe_unused]], in performCookieAuth() 175 if (method != boost::beast::http::verb::get) in performCookieAuth() 217 inline bool isOnAllowlist(std::string_view url, boost::beast::http::verb method) in isOnAllowlist() 225 if (boost::beast::http::verb::get == method) in isOnAllowlist() 242 if (boost::beast::http::verb::post == method) in isOnAllowlist() 258 boost::beast::http::verb method [[maybe_unused]], in authenticate()
|
| /openbmc/u-boot/drivers/net/fsl-mc/dpio/ |
| H A D | qbman_portal.c | 153 uint32_t *ret, verb; in qbman_swp_mc_result() local 159 verb = ret[0] & ~QB_VALID_BIT; in qbman_swp_mc_result() 160 if (!verb) in qbman_swp_mc_result() 371 uint32_t verb; in qbman_swp_dqrr_next() local 379 verb = qb_attr_code_decode(&code_dqrr_verb, p); in qbman_swp_dqrr_next() 388 if ((verb & QB_VALID_BIT) != s->dqrr.valid_bit) { in qbman_swp_dqrr_next() 405 response_verb = qb_attr_code_decode(&code_dqrr_response, &verb); in qbman_swp_dqrr_next() 581 uint32_t verb, rslt, num; in qbman_swp_acquire() local 599 verb = qb_attr_code_decode(&code_generic_verb, p); in qbman_swp_acquire() 602 BUG_ON(verb != QBMAN_MC_ACQUIRE); in qbman_swp_acquire()
|
| /openbmc/u-boot/drivers/sound/ |
| H A D | hda_codec.c | 76 static inline uint hda_verb(uint nid, uint verb, uint param) in hda_verb() argument 78 return nid << HDA_VERB_NID_S | verb << HDA_VERB_VERB_S | in hda_verb() 205 const u32 *verb; in send_verbs() local 207 verb = ofnode_get_property(node, prop_name, &verb_size); in send_verbs() 214 for (i = 0; i < verb_size / sizeof(*verb); i++) { in send_verbs() 221 writel(fdt32_to_cpu(verb[i]), ®s->cmd); in send_verbs()
|