/openbmc/openbmc/poky/bitbake/lib/ |
H A D | codegen.py | 77 generator.visit(node) 112 self.visit(stmt) 133 self.visit(arg) 136 self.visit(default) 148 self.visit(decorator) 157 self.visit(target) 159 self.visit(node.value) 163 self.visit(node.target) 165 self.visit(node.value) 179 self.visit(item) [all …]
|
/openbmc/qemu/include/qapi/ |
H A D | visitor.h | 54 * free the visitor without completing the visit, if some other error 68 * qapi-visit-MODULE.h. 81 * visit. 102 * is an additional generated function in qapi-visit-MODULE.h 183 * succeeded, even if an intermediate visit encounters an error). 250 * Complete the visit, collecting any output. 254 * visit. The @opaque pointer should match the output parameter 264 * May be called whether or not the visit has been successfully 290 * After visit_start_struct() succeeds, the caller may visit its 303 * Prepare for completing an object visit. [all …]
|
H A D | visitor-impl.h | 50 /* Must be set to visit structs */ 57 /* Must be set to visit structs */ 74 /* Must be set by input and clone visitors to visit alternates */ 100 /* Must be set to visit numbers */ 104 /* Must be set to visit arbitrary QTypes */ 108 /* Must be set to visit explicit null values. */ 112 /* Must be set for input visitors to visit structs, optional otherwise.
|
H A D | qobject-output-visitor.h | 24 * A QObject output visitor visit builds a QObject from QAPI Object. 36 * struct/union and creates a QDict. Visits in between visit the 41 * creates a QList. Visits in between visit list members, one after 46 * alternate. The visit in between creates the QObject for the
|
H A D | qobject-input-visitor.h | 25 * A QObject input visitor visit builds a QAPI object from a QObject. 37 * creates a QAPI struct/union. Visits in between visit the 43 * a QAPI list. Visits in between visit list members, one after the 49 * and creates a QAPI alternate. The visit in between visits the same
|
/openbmc/linux/drivers/net/ethernet/chelsio/ |
H A D | Kconfig | 31 For general information about Chelsio and our products, visit 34 For customer support, please visit our customer support page at 58 For general information about Chelsio and our products, visit 61 For customer support, please visit our customer support page at 81 For general information about Chelsio and our products, visit 84 For customer support, please visit our customer support page at 122 For general information about Chelsio and our products, visit 125 For customer support, please visit our customer support page at
|
/openbmc/qemu/qapi/ |
H A D | meson.build | 7 'qapi-visit-core.c', 79 'qapi-visit.h', 'qapi-visit.c', 88 'qapi-builtin-types.c', 'qapi-builtin-visit.c', 89 'qapi-builtin-types.h', 'qapi-builtin-visit.h', 99 'qapi-visit-@0@.c'.format(module), 100 'qapi-visit-@0@.h'.format(module),
|
/openbmc/qemu/tests/ |
H A D | meson.build | 7 'qapi-builtin-visit.c', 8 'qapi-builtin-visit.h', 27 'test-qapi-visit-sub-sub-module.c', 28 'test-qapi-visit-sub-sub-module.h', 29 'test-qapi-visit.c', 30 'test-qapi-visit.h',
|
/openbmc/phosphor-fan-presence/control/json/utils/ |
H A D | modifier.cpp | 102 return val - std::visit(ToTypeVisitor<double>(), arg); in operator ()() 107 return val - std::visit(ToTypeVisitor<int32_t>(), arg); in operator ()() 112 return val - std::visit(ToTypeVisitor<int64_t>(), arg); in operator ()() 228 if (val < std::visit(ToTypeVisitor<double>(), rangeValue.first)) in operator ()() 241 if (val < std::visit(ToTypeVisitor<int32_t>(), rangeValue.first)) in operator ()() 253 if (val < std::visit(ToTypeVisitor<int64_t>(), rangeValue.first)) in operator ()() 266 std::visit(ToTypeVisitor<std::string>(), rangeValue.first)) in operator ()() 323 return std::visit(*_operator, val); in doOp()
|
/openbmc/qemu/scripts/qapi/ |
H A D | visit.py | 341 prefix, 'qapi-visit', ' * Schema-defined QAPI visitors', 348 #include "qapi/qapi-builtin-visit.h" 358 visit = self._module_basename('qapi-visit', name) 362 #include "%(visit)s.h" 364 visit=visit)) 366 #include "qapi/qapi-builtin-visit.h" 410 # only explicit types need an allocating visit 430 schema.visit(vis)
|
H A D | types.py | 297 #include "qapi/qapi-builtin-visit.h" 305 visit = self._module_basename('qapi-visit', name) 310 #include "%(visit)s.h" 312 types=types, visit=visit)) 318 # gen_object() is recursive, ensure it doesn't visit the empty type 388 schema.visit(vis)
|
H A D | events.py | 189 visit = self._module_basename('qapi-visit', name) 194 #include "%(visit)s.h" 200 events=events, visit=visit, 250 schema.visit(vis)
|
H A D | schema.py | 110 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaEntity 310 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaModule 314 entity.visit(visitor) 322 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaInclude 323 super().visit(visitor) 407 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaBuiltinType 408 super().visit(visitor) 456 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaEnumType 457 super().visit(visitor) 508 def visit(self, visitor: QAPISchemaVisitor) -> None: member in QAPISchemaArrayType [all …]
|
H A D | commands.py | 318 visit = self._module_basename('qapi-visit', name) 326 #include "%(visit)s.h" 329 commands=commands, visit=visit)) 418 schema.visit(vis)
|
/openbmc/qemu/docs/devel/ |
H A D | lockcnt.rst | 90 - A new visit cannot be started while the counter is zero and the 130 during the visit any other thread will see a nonzero value for 154 inefficiencies; for example, a visit can never start if the counter is 156 which in principle need not block a visit of the data structure. 171 concurrent with a visit to the list of bottom halves; 2) it only has 210 is zero (i.e. there is no concurrent visit). Because ``qemu_lockcnt_inc`` 221 If an object has to be freed right after a visit, you can combine
|
/openbmc/phosphor-pid-control/dbus/ |
H A D | dbusconfiguration.cpp | 285 std::visit(VariantToDoubleVisitor(), zone.at(attributeName)); in getCycleTimeSetting() 316 info.setpoint = std::visit(VariantToDoubleVisitor(), in populatePidInfo() 324 failsafepercent = std::visit(VariantToDoubleVisitor(), in populatePidInfo() 366 info.pidInfo.proportionalCoeff = std::visit( in populatePidInfo() 368 info.pidInfo.integralCoeff = std::visit( in populatePidInfo() 371 info.pidInfo.feedFwdOffset = std::visit( in populatePidInfo() 373 info.pidInfo.feedFwdGain = std::visit( in populatePidInfo() 375 info.pidInfo.integralLimit.max = std::visit( in populatePidInfo() 377 info.pidInfo.integralLimit.min = std::visit( in populatePidInfo() 379 info.pidInfo.outLim.max = std::visit(VariantToDoubleVisitor(), in populatePidInfo() [all …]
|
/openbmc/dbus-sensors/src/ |
H A D | Thresholds.cpp | 75 if (std::visit(VariantToStringVisitor(), labelFind->second) != in parseThresholdsFromConfig() 93 (std::visit(VariantToIntVisitor(), indexFind->second) != in parseThresholdsFromConfig() 105 std::visit(VariantToDoubleVisitor(), hysteresisFind->second); in parseThresholdsFromConfig() 119 std::visit(VariantToUnsignedIntVisitor(), severityFind->second); in parseThresholdsFromConfig() 122 std::visit(VariantToStringVisitor(), directionFind->second); in parseThresholdsFromConfig() 131 double val = std::visit(VariantToDoubleVisitor(), valueFind->second); in parseThresholdsFromConfig() 165 std::visit(VariantToStringVisitor(), labelFind->second); in persistThreshold() 181 unsigned int severity = std::visit( in persistThreshold() 185 std::visit(VariantToStringVisitor(), directionFind->second); in persistThreshold()
|
/openbmc/linux/drivers/scsi/csiostor/ |
H A D | Kconfig | 11 For general information about Chelsio and our products, visit 14 For customer support, please visit our customer support page at
|
/openbmc/qemu/tests/include/ |
H A D | meson.build | 9 'test-qapi-visit-sub-module.c', 10 'test-qapi-visit-sub-module.h',
|
/openbmc/linux/drivers/crypto/chelsio/ |
H A D | Kconfig | 14 For general information about Chelsio and our products, visit 17 For customer support, please visit our customer support page at
|
/openbmc/linux/drivers/infiniband/hw/cxgb4/ |
H A D | Kconfig | 12 For general information about Chelsio and our products, visit 15 For customer support, please visit our customer support page at
|
/openbmc/docs/development/ |
H A D | web-ui.md | 16 Visit [README.md](https://github.com/openbmc/webui-vue/blob/master/README.md) to 20 Visit 25 Visit the [OpenBMC Web UI Style Guide](https://openbmc.github.io/webui-vue/) to 34 Visit the
|
/openbmc/qemu/tests/unit/ |
H A D | test-visitor-serialization.c | 17 #include "test-qapi-visit.h" 85 static void dealloc_helper(void *native_in, VisitorFunc visit, Error **errp) in dealloc_helper() argument 89 visit(v, &native_in, errp); in dealloc_helper() 280 VisitorFunc visit, Error **errp); 282 VisitorFunc visit, Error **errp); 926 VisitorFunc visit, Error **errp) in qmp_serialize() argument 931 visit(d->qov, &native_in, errp); in qmp_serialize() 936 VisitorFunc visit, Error **errp) in qmp_deserialize() argument 951 visit(d->qiv, native_out, errp); in qmp_deserialize() 970 VisitorFunc visit, Error **errp) in string_serialize() argument [all …]
|
/openbmc/linux/Documentation/kbuild/ |
H A D | Kconfig.select-break | 17 # visit the dependencies of the select target (in this case B). And since 18 # Kconfig does not visit the dependencies, it breaks the dependencies of B
|
/openbmc/dbus-sensors/src/adc/ |
H A D | ADCSensorMain.cpp | 159 unsigned int number = std::visit( in createSensors() 225 std::visit(VariantToIntVisitor(), findCPU->second); in createSensors() 253 scaleFactor = std::visit(VariantToFloatVisitor(), in createSensors() 277 std::string gpioName = std::visit( in createSensors() 285 std::visit(VariantToStringVisitor(), in createSensors() 296 setupTime = std::visit(VariantToFloatVisitor(), in createSensors()
|