Home
last modified time | relevance | path

Searched refs:PostCodeHandler (Results 1 – 5 of 5) sorted by relevance

/openbmc/pldm/oem/meta/libpldmresponder/
H A Dfile_io_type_post_code.hpp14 class PostCodeHandler : public FileHandler class
17 PostCodeHandler() = delete;
18 PostCodeHandler(const PostCodeHandler&) = delete;
19 PostCodeHandler(PostCodeHandler&&) = delete;
20 PostCodeHandler& operator=(const PostCodeHandler&) = delete;
21 PostCodeHandler& operator=(PostCodeHandler&&) = delete;
23 explicit PostCodeHandler(pldm_tid_t tid) : tid(tid) {} in PostCodeHandler() function in pldm::responder::oem_meta::PostCodeHandler
25 ~PostCodeHandler() = default;
H A Dfile_io_type_post_code.cpp15 int PostCodeHandler::write(const message& postCodeList) in write()
H A Dfile_io.cpp20 return std::make_unique<PostCodeHandler>(messageTid); in getHandlerByType()
/openbmc/phosphor-post-code-manager/inc/
H A Dpost_code.hpp74 struct PostCodeHandler struct
86 std::vector<PostCodeHandler> handlers; argument
88 const PostCodeHandler* find(postcode_t code);
/openbmc/phosphor-post-code-manager/src/
H A Dpost_code.cpp86 void from_json(const json& j, PostCodeHandler& handler) in from_json()
111 const PostCodeHandler* PostCodeHandlers::find(postcode_t code) in find()
126 const PostCodeHandler* handler = find(code); in handle()
149 handlers = json::parse(ifs).template get<std::vector<PostCodeHandler>>(); in load()