| /openbmc/phosphor-inventory-manager/ |
| H A D | utils.hpp | 32 template <typename T, typename Arg, typename Enable = void> 35 static auto make(Arg&& /* arg */) in make() 51 template <typename T, typename Arg> 53 T, Arg, 56 std::remove_cv_t<std::remove_reference_t<Arg>>> && 57 std::is_convertible_v<Arg, T>>> 59 static auto make(Arg&& arg) in make() 61 return T(std::forward<Arg>(arg)); in make() 74 template <typename T, typename Arg> 76 T, Arg, [all …]
|
| /openbmc/sdbusplus/tools/sdbusplus/templates/ |
| H A D | property.aserver.set.hpp.mako | 7 template <bool EmitSignal = true, typename Arg = ${p_type}> 8 void ${p_name}(Arg&& new_value) 13 ${p_tag}{}, std::forward<Arg>(new_value)); 21 template <bool EmitSignal = true, typename Arg = ${p_type}> 22 void ${p_name}(sdbusplus::message_t& m, Arg&& new_value) 27 ${p_tag}{}, m, std::forward<Arg>(new_value)); 35 template <bool EmitSignal = true, typename Arg = ${p_type}> 36 void ${p_name}(Arg&& new_value) 45 ${p_name}_ = std::forward<Arg>(new_value);
|
| /openbmc/sdbusplus/include/sdbusplus/async/ |
| H A D | server.hpp | 89 template <typename Tag, typename Instance, typename Arg> 91 requires(Instance& i, Arg&& a) { 92 i.set_property(Tag{}, std::forward<Arg>(a)); 96 template <typename Tag, typename Instance, typename Arg> 98 requires(Instance& i, sdbusplus::message_t& m, Arg&& a) { 99 i.set_property(Tag{}, m, std::forward<Arg>(a)); 103 template <typename Tag, typename Instance, typename Arg> 104 concept has_set_property = has_set_property_nomsg<Tag, Instance, Arg> || 105 has_set_property_msg<Tag, Instance, Arg>;
|
| /openbmc/phosphor-bmc-code-mgmt/bmc/ |
| H A D | utils.hpp | 89 template <typename... Arg> 90 constexpr auto constructArgv(const char* name, Arg&&... args) in constructArgv() 112 template <typename... Arg> 113 std::pair<int, std::string> execute(const char* path, Arg&&... args) in execute() 115 auto argArray = internal::constructArgv(path, std::forward<Arg>(args)...); in execute()
|
| /openbmc/phosphor-logging/lib/include/phosphor-logging/ |
| H A D | log.hpp | 119 template <typename Arg, typename... Args> 120 constexpr auto entry(Arg&& arg, Args&&... args) in entry() 122 static_assert(is_char_ptr_argtype<Arg>::value, in entry() 126 return std::make_tuple(std::forward<Arg>(arg), std::forward<Args>(args)...); in entry()
|
| /openbmc/phosphor-host-ipmid/include/ipmid/ |
| H A D | message.hpp | 258 template <typename Arg, typename... Args> 259 int pack(Arg&& arg, Args&&... args) in pack() 262 details::PackSingle_t<Arg>::op(*this, std::forward<Arg>(arg)); in pack() 436 template <typename Arg, typename... Args> 437 int unpack(Arg&& arg, Args&&... args) in unpack() 440 details::UnpackSingle_t<Arg>::op(*this, std::forward<Arg>(arg)); in unpack()
|
| /openbmc/phosphor-ipmi-flash/ |
| H A D | util.hpp | 28 template <typename Arg> 29 Pinned& operator=(const Arg& o) in operator =()
|
| /openbmc/openbmc/poky/meta/recipes-devtools/clang/clang/ |
| H A D | 0034-llvm-config-remove-LLVM_LDFLAGS-from-ldflags-output.patch | 26 } else if (Arg == "--ldflags") { 30 } else if (Arg == "--system-libs") { 32 } else if (Arg == "--libs") {
|
| /openbmc/qemu/tests/qapi-schema/ |
| H A D | args-member-case.json | 2 { 'command': 'no-way-this-will-get-whitelisted', 'data': { 'Arg': 'int' } }
|
| H A D | args-member-case.err | 2 args-member-case.json:2: name of 'data' member 'Arg' must not use uppercase or '_'
|
| /openbmc/qemu/docs/sphinx/ |
| H A D | dbusparser.py | 31 class Arg: class 69 self.arg = Arg("value", self.signature) 273 arg = Arg(arg_name, attrs["type"]) 307 arg = Arg(arg_name, attrs["type"])
|
| /openbmc/qemu/tcg/riscv/ |
| H A D | tcg-target.c.inc | 1094 /* Arg is replicated by VECE; extract the highest element. */
|
| /openbmc/u-boot/ |
| H A D | README | 2164 Arg Where When 2265 Arg Where When
|