/openbmc/openbmc/meta-openembedded/meta-oe/dynamic-layers/meta-python/recipes-connectivity/thingsboard-gateway/thingsboard-gateway/ |
H A D | logs.conf | 3 [handlers] 9 handlers=consoleHandler 12 handlers=connectorHandler 17 handlers=storageHandler 22 handlers=tb_connectionHandler 27 handlers=serviceHandler 32 handlers=converterHandler 37 handlers=connectorHandler 47 class=logging.handlers.TimedRotatingFileHandler 52 class=logging.handlers.TimedRotatingFileHandler [all …]
|
/openbmc/linux/tools/testing/selftests/kvm/lib/x86_64/ |
H A D | handlers.S | 51 .macro HANDLERS has_error from to macro 73 HANDLERS has_error=0 from=0 to=7 74 HANDLERS has_error=1 from=8 to=8 75 HANDLERS has_error=0 from=9 to=9 76 HANDLERS has_error=1 from=10 to=14 77 HANDLERS has_error=0 from=15 to=16 78 HANDLERS has_error=1 from=17 to=17 79 HANDLERS has_error=0 from=18 to=255
|
/openbmc/linux/include/linux/ |
H A D | reboot.h | 76 * SYS_OFF_PRIO_PLATFORM: Use this for platform-level handlers. 80 * SYS_OFF_PRIO_DEFAULT: Use this for normal handlers. 82 * SYS_OFF_PRIO_HIGH: Use this for higher priority handlers. 96 * Handlers prepare system to be powered off. Handlers are 104 * Handlers power-off system. Handlers are disallowed to sleep. 111 * Handlers prepare system to be restarted. Handlers are 119 * Handlers restart system. Handlers are disallowed to sleep.
|
/openbmc/phosphor-host-ipmid/libipmid/ |
H A D | signals.cpp | 32 if (handlers.empty() || std::get<0>(handlers.front()) < prio) in registerHandler() 34 handlers.emplace_front(std::make_tuple(prio, handler)); in registerHandler() 38 auto j = handlers.begin(); in registerHandler() 39 for (auto i = j; i != handlers.end() && std::get<0>(*i) > prio; i++) in registerHandler() 43 handlers.emplace_after(j, std::make_tuple(prio, handler)); in registerHandler() 55 for (auto h = handlers.begin(); h != handlers.end(); h++) in handleSignal() 75 handlers; member in __anon3b1fb37a0111::SignalHandler
|
/openbmc/boost-dbus/include/dbus/detail/ |
H A D | queue.hpp | 28 std::deque<handler_type> handlers; member in dbus::detail::queue 34 : io(m.io), messages(m.messages), handlers(m.handlers) { in queue() 35 // TODO(ed) acquire the lock before copying messages and handlers in queue() 54 if (handlers.empty()) in push() 57 handler_type h = handlers.front(); in push() 58 handlers.pop_front(); in push() 79 handlers.push_back(init.handler); in BOOST_ASIO_INITFN_RESULT_TYPE()
|
/openbmc/openbmc/poky/bitbake/lib/toaster/toastermain/ |
H A D | logs.py | 97 'handlers': { 110 'class': 'logging.handlers.TimedRotatingFileHandler', 119 'class': 'logging.handlers.TimedRotatingFileHandler', 128 'class': 'logging.handlers.TimedRotatingFileHandler', 138 'handlers': ['file_django', 'console'], 143 'handlers': ['file_django', 'console'], 148 'handlers': ['file_toaster'], 153 'handlers': ['file_api'],
|
/openbmc/linux/Documentation/driver-api/acpi/ |
H A D | scan_handlers.rst | 5 ACPI Scan Handlers 39 called ACPI scan handlers represented by the following structure:: 49 take care of, list_node is the hook to the global list of ACPI scan handlers 57 available scan handlers. If a matching scan handler is found, its .attach() 72 callbacks from the scan handlers of all device nodes in the given namespace 73 scope (if they have scan handlers). Next, it unregisters all of the device 76 ACPI scan handlers can be added to the list maintained by the ACPI core with the 78 handler as an argument. The order in which scan handlers are added to the list
|
/openbmc/linux/Documentation/arch/ia64/ |
H A D | fsys.rst | 28 interruption-handlers start execution in. The user-level 81 The file arch/ia64/kernel/fsys.S contains a table of fsyscall-handlers 118 Fsyscall handlers can execute with very little overhead, but with that 121 * Fsyscall-handlers MUST check for any pending work in the flags 126 * Fsyscall-handlers MUST preserve incoming arguments (r32-r39, r11, 131 * Fsyscall-handlers MUST check argument registers for containing a 137 * Fsyscall-handlers MUST NOT use the "alloc" instruction or perform 141 * Fsyscall-handlers MUST NOT write to any stacked registers because 145 * Fsyscall-handlers need to be careful when accessing per-CPU variables: 150 * Fsyscall-handlers must be careful not to leak sensitive kernel' [all …]
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create_buildsys.py | 1 # Recipe creation tool - create command build system handlers 48 # Find all plugins that want to register handlers 49 logger.debug('Loading cmake handlers') 50 handlers = [] 53 plugin.register_cmake_handlers(handlers) 169 for handler in handlers: 215 for handler in handlers: 271 for handler in handlers: 281 '''Base class for CMake extension handlers''' 387 # Find all plugins that want to register handlers [all …]
|
/openbmc/linux/tools/testing/selftests/kvm/lib/aarch64/ |
H A D | processor.c | 417 struct handlers { struct 430 struct handlers *handlers = (struct handlers *)exception_handlers; in route_exception() local 454 if (handlers && handlers->exception_handlers[vector][ec]) in route_exception() 455 return handlers->exception_handlers[vector][ec](regs); in route_exception() 463 vm->handlers = __vm_vaddr_alloc(vm, sizeof(struct handlers), in vm_init_descriptor_tables() 466 *(vm_vaddr_t *)addr_gva2hva(vm, (vm_vaddr_t)(&exception_handlers)) = vm->handlers; in vm_init_descriptor_tables() 472 struct handlers *handlers = addr_gva2hva(vm, vm->handlers); in vm_install_sync_handler() local 477 handlers->exception_handlers[vector][ec] = handler; in vm_install_sync_handler() 483 struct handlers *handlers = addr_gva2hva(vm, vm->handlers); in vm_install_exception_handler() local 487 handlers->exception_handlers[vector][0] = handler; in vm_install_exception_handler()
|
/openbmc/linux/include/net/ |
H A D | rtnetlink.h | 47 int __rtnl_register_many(const struct rtnl_msg_handler *handlers, int n); 48 void __rtnl_unregister_many(const struct rtnl_msg_handler *handlers, int n); 50 #define rtnl_register_many(handlers) \ argument 51 __rtnl_register_many(handlers, ARRAY_SIZE(handlers)) 52 #define rtnl_unregister_many(handlers) \ argument 53 __rtnl_unregister_many(handlers, ARRAY_SIZE(handlers))
|
/openbmc/docs/designs/mctp/ |
H A D | mctp-userspace.md | 66 The application-specific handlers implement the actual functionality provided 71 The daemon's sockets to these handlers is configured for non-blocking IO, to 72 allow the daemon to be decoupled from any blocking behaviour of handlers. The 74 blocked daemon, but this would be of a limited size. Handlers whose sockets 88 MCTP handlers (ie, clients of the demultiplexer) connect using a unix-domain 125 for passing messages from the core code to application-level handlers. The 129 implementation of those application-level handlers (programming language,
|
/openbmc/linux/drivers/soc/fsl/qbman/ |
H A D | qman_test_stash.c | 39 * Each cpu will have HP_PER_CPU "handlers" set up, each of which incorporates 41 * organisation of FQIDs is such that the HP_PER_CPU*NUM_CPUS handlers will 44 * is to allow enough handlers/FQs to truly test the significance of caching - 65 * handlers and link-list them (but do no other handler setup). 162 /* root node for the per-cpu list of handlers */ 163 struct list_head handlers; member 168 * handlers together, this is used as per-cpu iterator state 186 /* handlers are allocated out of this, so they're properly aligned. */ 328 INIT_LIST_HEAD(&hp_cpu->handlers); in create_per_cpu_handlers() 339 list_add_tail(&handler->node, &hp_cpu->handlers); in create_per_cpu_handlers() [all …]
|
/openbmc/qemu/ui/ |
H A D | input.c | 37 static QTAILQ_HEAD(, QemuInputHandlerState) handlers = 38 QTAILQ_HEAD_INITIALIZER(handlers); 57 QTAILQ_INSERT_TAIL(&handlers, s, node); in qemu_input_handler_register() 65 QTAILQ_REMOVE(&handlers, s, node); in qemu_input_handler_activate() 66 QTAILQ_INSERT_HEAD(&handlers, s, node); in qemu_input_handler_activate() 72 QTAILQ_REMOVE(&handlers, s, node); in qemu_input_handler_deactivate() 73 QTAILQ_INSERT_TAIL(&handlers, s, node); in qemu_input_handler_deactivate() 79 QTAILQ_REMOVE(&handlers, s, node); in qemu_input_handler_unregister() 105 QTAILQ_FOREACH(s, &handlers, node) { in qemu_input_find_handler() 114 QTAILQ_FOREACH(s, &handlers, node) { in qemu_input_find_handler() [all …]
|
/openbmc/pldm/oem/ibm/libpldmresponder/ |
H A D | file_io.hpp | 174 handlers.emplace( in Handler() 179 handlers.emplace( in Handler() 184 handlers.emplace( in Handler() 189 handlers.emplace( in Handler() 194 handlers.emplace( in Handler() 199 handlers.emplace( in Handler() 204 handlers.emplace( in Handler() 209 handlers.emplace( in Handler() 214 handlers.emplace( in Handler() 219 handlers in Handler() [all...] |
/openbmc/linux/arch/powerpc/platforms/powermac/ |
H A D | pfunc_core.c | 124 #define PMF_PARSE_CALL(name, cmd, handlers, p...) \ argument 128 if (handlers == NULL) \ 130 if (handlers->name) \ 131 return handlers->name(cmd->func, cmd->instdata, \ 542 struct pmf_handlers *handlers; member 580 struct pmf_handlers *handlers, in pmf_parse_one() argument 596 handlers ? "executing" : "parsing"); in pmf_parse_one() 621 rc = pmf_parsers[ccode](&cmd, handlers); in pmf_parse_one() 630 if (handlers == NULL) in pmf_parse_one() 702 struct pmf_handlers *handlers, in pmf_register_driver() argument [all …]
|
/openbmc/linux/include/sound/ |
H A D | soc-topology.h | 74 * Kcontrol operations - used to map handlers onto firmware based controls. 96 * DAPM widget event handlers - used to map handlers onto widgets. 160 /* vendor specific kcontrol handlers available for binding */ 164 /* vendor specific bytes ext handlers available for binding */ 184 /* Binds event handlers to dynamic widgets */
|
/openbmc/linux/fs/ext4/ |
H A D | fsmap.c | 64 /* Compare two getfsmap device handlers. */ 685 struct ext4_getfsmap_dev handlers[EXT4_GETFSMAP_DEVS]; in ext4_getfsmap() local 698 /* Set up our device handlers. */ in ext4_getfsmap() 699 memset(handlers, 0, sizeof(handlers)); in ext4_getfsmap() 700 handlers[0].gfd_dev = new_encode_dev(sb->s_bdev->bd_dev); in ext4_getfsmap() 701 handlers[0].gfd_fn = ext4_getfsmap_datadev; in ext4_getfsmap() 703 handlers[1].gfd_dev = new_encode_dev( in ext4_getfsmap() 705 handlers[1].gfd_fn = ext4_getfsmap_logdev; in ext4_getfsmap() 708 sort(handlers, EXT4_GETFSMAP_DEVS, sizeof(struct ext4_getfsmap_dev), in ext4_getfsmap() 740 if (!handlers[i].gfd_fn) in ext4_getfsmap() [all …]
|
/openbmc/linux/Documentation/RCU/ |
H A D | NMI-RCU.rst | 3 Using RCU to Protect Dynamic NMI Handlers 9 handlers, as well as dynamic irq handlers. This document describes 97 Since NMI handlers disable preemption, synchronize_rcu() is guaranteed 98 not to return until all ongoing NMI handlers exit. It is therefore safe
|
/openbmc/linux/fs/xfs/ |
H A D | xfs_fsmap.c | 187 /* Compare two getfsmap device handlers. */ 890 struct xfs_getfsmap_dev handlers[XFS_GETFSMAP_DEVS]; in xfs_getfsmap() local 908 /* Set up our device handlers. */ in xfs_getfsmap() 909 memset(handlers, 0, sizeof(handlers)); in xfs_getfsmap() 910 handlers[0].dev = new_encode_dev(mp->m_ddev_targp->bt_dev); in xfs_getfsmap() 912 handlers[0].fn = xfs_getfsmap_datadev_rmapbt; in xfs_getfsmap() 914 handlers[0].fn = xfs_getfsmap_datadev_bnobt; in xfs_getfsmap() 916 handlers[1].dev = new_encode_dev(mp->m_logdev_targp->bt_dev); in xfs_getfsmap() 917 handlers[1].fn = xfs_getfsmap_logdev; in xfs_getfsmap() 921 handlers[2].dev = new_encode_dev(mp->m_rtdev_targp->bt_dev); in xfs_getfsmap() [all …]
|
/openbmc/linux/drivers/net/wireless/ralink/rt2x00/ |
H A D | rt2x00lib.h | 58 * Radio control handlers. 64 * Initialization handlers. 70 * Configuration handlers. 87 * DOC: Queue handlers 273 * Firmware handlers. 289 * Debugfs handlers. 312 * Crypto handlers. 370 * RFkill handlers. 385 * LED handlers
|
/openbmc/pldm/requester/ |
H A D | handler.hpp | 113 * waiting for a response. The registered response handlers are invoked with 157 if (this->handlers.contains(key)) in instanceIdExpiryCallBack() 163 timerInstance] = this->handlers[key]; in instanceIdExpiryCallBack() 243 handlers.emplace(requestMsg->key, in pollEndpointQueue() 267 if (handlers.contains(key)) in registerRequest() 309 /* handlers only contain key when the message is already sent */ in unregisterRequest() 310 if (handlers.contains(key)) in unregisterRequest() 312 auto& [request, responseHandler, timerInstance] = handlers[key]; in unregisterRequest() 323 handlers.erase(key); in unregisterRequest() 375 if (handlers.contains(key) && !removeRequestContainer.contains(key)) in handleResponse() [all …]
|
/openbmc/linux/drivers/net/wireless/intel/iwlwifi/dvm/ |
H A D | rx.c | 942 * Setup the RX handlers for each of the reply types sent from the uCode 947 void (**handlers)(struct iwl_priv *priv, struct iwl_rx_cmd_buffer *rxb); in iwl_setup_rx_handlers() local 949 handlers = priv->rx_handlers; in iwl_setup_rx_handlers() 951 handlers[REPLY_ERROR] = iwlagn_rx_reply_error; in iwl_setup_rx_handlers() 952 handlers[CHANNEL_SWITCH_NOTIFICATION] = iwlagn_rx_csa; in iwl_setup_rx_handlers() 953 handlers[SPECTRUM_MEASURE_NOTIFICATION] = in iwl_setup_rx_handlers() 955 handlers[PM_SLEEP_NOTIFICATION] = iwlagn_rx_pm_sleep_notif; in iwl_setup_rx_handlers() 956 handlers[PM_DEBUG_STATISTIC_NOTIFIC] = in iwl_setup_rx_handlers() 958 handlers[BEACON_NOTIFICATION] = iwlagn_rx_beacon_notif; in iwl_setup_rx_handlers() 959 handlers[REPLY_ADD_STA] = iwl_add_sta_callback; in iwl_setup_rx_handlers() [all …]
|
/openbmc/linux/arch/powerpc/include/asm/ |
H A D | pmac_pfunc.h | 33 * A driver capable of interpreting commands provides a handlers 34 * structure filled with whatever handlers are implemented by this 35 * driver. Non implemented handlers are left NULL. 38 * and that gets passed back to the various handlers. 176 * Register/Unregister a function-capable driver and its handlers 179 struct pmf_handlers *handlers, 195 * Called by the handlers when an irq happens
|
/openbmc/openbmc/poky/bitbake/lib/bb/ |
H A D | msg.py | 235 logger.handlers = [console] 240 for handler in logger.handlers: 259 for k in ("handlers", "formatters", "filters"): 264 # If the merge option is set, merge the handlers and 270 ulogger.setdefault("handlers", []) 274 l.setdefault("handlers", []).extend(ulogger["handlers"]) 315 for name, h in logconfig["handlers"].items():
|