Home
last modified time | relevance | path

Searched refs:details (Results 1 – 25 of 2499) sorted by relevance

12345678910>>...100

/openbmc/linux/tools/perf/
H A Dbuiltin-evlist.c29 static int __cmd_evlist(const char *file_name, struct perf_attr_details *details) in __cmd_evlist() argument
36 .force = details->force, in __cmd_evlist()
53 evsel__fprintf(pos, details, stdout); in __cmd_evlist()
59 if (has_tracepoint && !details->trace_fields) in __cmd_evlist()
68 struct perf_attr_details details = { .verbose = false, }; in cmd_evlist() local
71 OPT_BOOLEAN('F', "freq", &details.freq, "Show the sample frequency"), in cmd_evlist()
72 OPT_BOOLEAN('v', "verbose", &details.verbose, in cmd_evlist()
74 OPT_BOOLEAN('g', "group", &details.event_group, in cmd_evlist()
76 OPT_BOOLEAN('f', "force", &details.force, "don't complain, do it"), in cmd_evlist()
77 OPT_BOOLEAN(0, "trace-fields", &details.trace_fields, "Show tracepoint fields"), in cmd_evlist()
[all …]
/openbmc/phosphor-logging/lib/include/phosphor-logging/
H A Delog.hpp28 namespace details namespace
138 return details::commit(T::errName); in commit()
158 return details::commit(T::errName, level); in commit()
179 typename details::map_exception_type_t<T>::metadata_types, in elog()
180 std::tuple<details::deduce_entry_type_t<Args>...>>, in elog()
183 log<details::map_exception_type_t<T>::L>( in elog()
184 T::errDesc, details::deduce_entry_type<Args>{i_args}.get()...); in elog()
210 typename details::map_exception_type_t<T>::metadata_types, in report()
211 std::tuple<details::deduce_entry_type_t<Args>...>>, in report()
214 log<details::map_exception_type_t<T>::L>( in report()
[all …]
H A Dlg2.hpp18 template <level S = level::debug, details::any_but<std::source_location>... Ts>
28 details::header_str_conversion_t<Ts&&>... ts) in log()
30 details::log_conversion::start( in log()
32 std::forward<details::header_str_conversion_t<Ts&&>>(ts)...); in log()
42 const char* msg, details::header_str_conversion_t<Ts&&>... ts, in log()
44 log(s, msg, std::forward<details::header_str_conversion_t<Ts&&>>(ts)...) in log()
/openbmc/openbmc/meta-arm/scripts/
H A Dreport-index.html.jinja20 {% set details = data[recipe] %}
22 <a href="{{machine}}.html#recipe-{{details.recipe}}">
23 {{ details.recipe if details.recipe != recipe}}
24 {{ details.version }}
26 {% if details.patches or details.needs_update %}
28 {% if details.patches %}
29 <span class="tag {{ "is-info" if details.patches_safe else "is-danger" }}">
30 {% trans count=details.patches|length %}
37 {% if details.needs_update %}
/openbmc/ibm-logging/
H A Dcondense_policy.py44 def add_details(error, details, condensed): argument
50 errors["dtls"].append(details)
58 group["dtls"].append(details)
97 details = {} variable
104 details["mod"] = modifier
107 details["mod"] = ""
114 details["msg"] = policytable[name]["Message"]
115 details["CEID"] = policytable[name]["CommonEventID"]
117 add_details(error, details, condensed)
H A Dpolicy_table.cpp59 for (const auto& details : policy["dtls"]) in load() local
62 d.modifier = details["mod"]; in load()
63 d.msg = details["msg"]; in load()
64 d.ceid = details["CEID"]; in load()
93 auto details = std::find_if( in find() local
97 if ((details == policy->second.end()) && !modifier.empty()) in find()
99 details = in find()
104 if (details != policy->second.end()) in find()
106 return DetailsReference(*details); in find()
/openbmc/telemetry/tests/src/utils/
H A Dstring_utils.cpp7 namespace details namespace
24 return details::repeat( in getString()
47 return details::getString(constants::maxPrefixLength); in getMaxPrefix()
52 return details::getString(constants::maxIdNameLength); in getMaxId()
57 return details::getStringWithSpaces(constants::maxIdNameLength); in getMaxName()
62 return details::getString(constants::maxPrefixLength + 1); in getTooLongPrefix()
67 return details::getString(constants::maxIdNameLength + 1); in getTooLongId()
72 return details::getStringWithSpaces(constants::maxIdNameLength + 1); in getTooLongName()
/openbmc/sdbusplus/src/server/
H A Dtransaction.cpp9 namespace details namespace
20 if (!details::id) in get_id()
22 details::Transaction t; in get_id()
23 details::id = std::hash<details::Transaction>{}(t); in get_id()
25 return details::id; in get_id()
30 details::id = value; in set_id()
88 size_t hash<sdbusplus::server::transaction::details::Transaction>::operator()( in operator ()()
89 const sdbusplus::server::transaction::details::Transaction& t) const in operator ()()
/openbmc/bmcweb/include/
H A Dhuman_sort.hpp9 namespace details namespace
32 details::ModeType mode = details::ModeType::STRING; in alphanumComp()
36 if (mode == details::ModeType::STRING) in alphanumComp()
39 const bool lDigit = details::simpleIsDigit(*l); in alphanumComp()
40 const bool rDigit = details::simpleIsDigit(*r); in alphanumComp()
44 mode = details::ModeType::NUMBER; in alphanumComp()
88 mode = details::ModeType::STRING; in alphanumComp()
/openbmc/sdbusplus/include/sdbusplus/message/
H A Dnative_types.hpp14 namespace details namespace
170 using object_path = details::string_path_wrapper;
172 using signature = details::string_wrapper;
173 using unix_fd = details::unix_fd_type;
175 namespace details namespace
203 return details::convert_from_string<T>::op(str); in convert_from_string()
218 return details::convert_to_string<T>::op(t); in convert_to_string()
221 namespace details namespace
296 details::has_convert_from_string_v<T>;
306 struct hash<sdbusplus::message::details::string_wrapper>
[all …]
H A Dread.hpp42 namespace details namespace
117 using Td = types::details::type_id_downcast_t<T>;
140 std::is_convertible_v<Td<T>, details::unix_fd_type>, in op()
169 using read_single_t = read_single<types::details::type_id_downcast_t<T>>;
178 std::is_same_v<S, details::string_wrapper> ||
179 std::is_same_v<S, details::string_path_wrapper>)
234 types::details::type_id_downcast_t<typename S::value_type> s; in op()
272 types::details::type_id_downcast_t<typename S::value_type> s; in op()
339 using Td = types::details::type_id_downcast_t<T>;
490 std::enable_if_t<can_read_multiple_v<types::details::type_id_downcast_t<Arg>>>
[all …]
/openbmc/telemetry/src/
H A Dnumeric_threshold.cpp47 auto& details = getDetails(sensor); in sensorUpdated() local
48 auto& prevValue = details.prevValue; in sensorUpdated()
49 auto& prevDirection = details.prevDirection; in sensorUpdated()
50 auto& dwell = details.dwell; in sensorUpdated()
51 auto& timer = details.timer; in sensorUpdated()
82 startTimer(details, value); in sensorUpdated()
91 void NumericThreshold::startTimer(NumericThreshold::ThresholdDetail& details, in startTimer() argument
94 auto& sensorName = details.getSensorName(); in startTimer()
95 auto& dwell = details.dwell; in startTimer()
96 auto& timer = details.timer; in startTimer()
H A Ddiscrete_threshold.cpp52 auto& details = getDetails(sensor); in sensorUpdated() local
53 auto& dwell = details.dwell; in sensorUpdated()
54 auto& timer = details.timer; in sensorUpdated()
63 startTimer(details, value); in sensorUpdated()
67 void DiscreteThreshold::startTimer(DiscreteThreshold::ThresholdDetail& details, in startTimer() argument
70 auto& sensorName = details.getSensorName(); in startTimer()
71 auto& dwell = details.dwell; in startTimer()
72 auto& timer = details.timer; in startTimer()
/openbmc/sdbusplus/include/sdbusplus/
H A Dslot.hpp18 namespace details namespace
46 slot() : _slot(nullptr, details::SlotDeleter(&sdbus_impl)) {} in slot()
54 _slot(s, details::SlotDeleter(intf)) in slot()
69 friend struct details::slot_friend;
76 details::slot _slot;
79 namespace details namespace
/openbmc/sdbusplus/include/sdbusplus/async/
H A Dcontext.hpp16 namespace details namespace
40 class context : public bus::details::bus_friend
94 friend details::wait_process_completion;
95 friend details::context_friend;
124 details::wait_process_completion* staged = nullptr;
125 details::wait_process_completion* pending = nullptr;
158 namespace details namespace
/openbmc/sdbusplus/tools/sdbusplus/templates/
H A Dinterface.client.hpp.mako15 namespace details
20 } // namespace details
31 sdbusplus::async::client_t<details::${interface.classname}>,
32 details::${interface.classname}<Client, Proxy>>
37 sdbusplus::async::client_t<details::${interface.classname}>,
38 details::${interface.classname}<Client, Proxy>>(
43 namespace details
49 private sdbusplus::async::client::details::client_context_friend
111 return sdbusplus::async::client::details::client_context_friend::
118 } // namespace details
/openbmc/phosphor-mboxd/test/
H A Dmbox.c64 struct stat details; in mbox_cmp() local
70 fstat(fd, &details); in mbox_cmp()
72 map = mmap(NULL, details.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in mbox_cmp()
74 assert(details.st_size >= (RESPONSE_OFFSET + len)); in mbox_cmp()
79 printf("\nMBOX state (%ld):\n", details.st_size); in mbox_cmp()
80 dump_buf(map, details.st_size); in mbox_cmp()
85 munmap(map, details.st_size); in mbox_cmp()
92 struct stat details; in mbox_rspcpy() local
97 fstat(fd, &details); in mbox_rspcpy()
99 map = mmap(NULL, details.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in mbox_rspcpy()
[all …]
/openbmc/hiomapd/test/
H A Dmbox.c66 struct stat details; in mbox_cmp() local
72 fstat(fd, &details); in mbox_cmp()
74 map = mmap(NULL, details.st_size, PROT_READ, MAP_PRIVATE, fd, 0); in mbox_cmp()
76 __func__, __LINE__, details.st_size, RESPONSE_OFFSET + len); in mbox_cmp()
78 assert(details.st_size >= (__off_t)(RESPONSE_OFFSET + len)); in mbox_cmp()
83 printf("\nMBOX state (%ld):\n", details.st_size); in mbox_cmp()
84 dump_buf(map, details.st_size); in mbox_cmp()
89 munmap(map, details.st_size); in mbox_cmp()
96 struct stat details; in mbox_rspcpy() local
101 fstat(fd, &details); in mbox_rspcpy()
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/core/
H A Drunner.py135 def extractExtraResults(self, test, details = None): argument
137 if details is not None and "extraresults" in details:
138 extraresults = details.get("extraresults", {})
150 def addError(self, test, *args, details = None): argument
151 self.extractExtraResults(test, details = details)
154 def addFailure(self, test, *args, details = None): argument
155 self.extractExtraResults(test, details = details)
158 def addSuccess(self, test, details = None): argument
161 self.extractExtraResults(test, details = details)
164 def addExpectedFailure(self, test, *args, details = None): argument
[all …]
/openbmc/dbus-sensors/src/
H A DVariantVisitors.hpp23 namespace details namespace
45 using VariantToFloatVisitor = details::VariantToNumericVisitor<float>;
46 using VariantToIntVisitor = details::VariantToNumericVisitor<int>;
48 details::VariantToNumericVisitor<unsigned int>;
49 using VariantToDoubleVisitor = details::VariantToNumericVisitor<double>;
/openbmc/phosphor-logging/lib/
H A Dlg2_commit.cpp17 namespace details namespace
127 using details::Create; in commit()
134 m.append(t.name(), details::severity_from_syslog(t.severity()), in commit()
135 details::data_from_json(t)); in commit()
149 using details::Entry; in resolve()
163 using details::Create; in commit()
175 .create(t.name(), details::severity_from_syslog(t.severity()), in commit()
176 details::data_from_json(t)); in commit()
185 using details::Entry; in resolve()
/openbmc/phosphor-power/
H A Delog-errors.hpp260 namespace details namespace
291 namespace details namespace
322 namespace details namespace
353 namespace details namespace
384 namespace details namespace
415 namespace details namespace
446 namespace details namespace
477 namespace details namespace
508 namespace details namespace
539 namespace details namespace
[all …]
/openbmc/linux/Documentation/trace/postprocess/
H A Dtrace-vmscan-postprocess.pl273 my $details;
310 $details = $6;
311 if ($details !~ /$regex_direct_begin/o) {
313 print " $details\n";
333 $details = $6;
334 if ($details !~ /$regex_kswapd_wake/o) {
336 print " $details\n";
367 $details = $6;
368 if ($details !~ /$regex_wakeup_kswapd/o) {
370 print " $details\n";
[all …]
/openbmc/sdbusplus/include/sdbusplus/server/
H A Dobject.hpp17 namespace details namespace
40 details::compose<Args...>,
41 private sdbusplus::bus::details::bus_friend
78 details::compose<Args...>(bus, path), in object()
132 details::compose<Args...>::maybe_emit_iface_added(); in check_action()
155 namespace object::details namespace
/openbmc/phosphor-net-ipmid/
H A Dendian.hpp8 namespace details namespace
65 return details::convert<T>::to_ipmi(i); in to_ipmi()
71 return details::convert<T>::from_ipmi(i); in from_ipmi()
77 return details::convert<T>::to_network(i); in to_network()
82 return details::convert<T>::from_network(i); in from_network()

12345678910>>...100