Home
last modified time | relevance | path

Searched refs:target_type (Results 1 – 8 of 8) sorted by relevance

/openbmc/openbmc-test-automation/ffdc/
H A Dffdc_collector.py204 self.target_type = remote_type.upper()
236 if self.target_type not in self.ffdc_actions:
239 % (self.target_type, self.ffdc_config)
401 for target_type in config_dict.keys():
402 if self.target_type != target_type:
405 for k, v in config_dict[target_type].items():
411 % (self.target_type, check_protocol_list)
529 for target_type in config_dict.keys():
530 if self.target_type != target_type:
535 self.logger.info("\tSystem Type: %s" % target_type)
[all …]
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/
H A Dcontext.py93 def getTarget(target_type, logger, target_ip, server_ip, **kwargs): argument
108 if target_type == 'simpleremote':
110 elif target_type == 'qemu':
112 elif target_type == 'serial':
124 controller = OERuntimeTestContextExecutor.getControllerModule(target_type)
220 OERuntimeTestContextExecutor.getTarget(args.target_type,
/openbmc/qemu/bsd-user/
H A Dqemu.h349 #define put_user(x, gaddr, target_type) \ argument
352 target_type *__hptr; \
354 __hptr = lock_user(VERIFY_WRITE, __gaddr, sizeof(target_type), 0); \
357 unlock_user(__hptr, __gaddr, sizeof(target_type)); \
363 #define get_user(x, gaddr, target_type) \ argument
366 target_type *__hptr; \
368 __hptr = lock_user(VERIFY_READ, __gaddr, sizeof(target_type), 1); \
/openbmc/phosphor-mrw-tools/
H A Dinventory.pl66 $item{target_type} = $targetType;
137 delete $i->{target_type};
341 if ($item->{target_type} eq $targetType) {
/openbmc/phosphor-fan-presence/control/
H A Dzone.cpp369 return a1.target_type().name() == a2.target_type().name(); in findTimer()
/openbmc/qemu/linux-user/
H A Dsyscall.c828 int target_type; in safe_syscall3() local
832 target_type = TARGET_SOCK_DGRAM; in safe_syscall3()
835 target_type = TARGET_SOCK_STREAM; in safe_syscall3()
838 target_type = host_type & 0xf /* SOCK_TYPE_MASK */; in safe_syscall3()
844 target_type |= TARGET_SOCK_CLOEXEC; in safe_syscall3()
850 target_type |= TARGET_SOCK_NONBLOCK; in safe_syscall3()
854 return target_type; in safe_syscall3()
3146 int target_type = *type; in target_to_host_sock_type() local
3148 switch (target_type & TARGET_SOCK_TYPE_MASK) { in target_to_host_sock_type()
3156 host_type = target_type & TARGET_SOCK_TYPE_MASK; in target_to_host_sock_type()
[all …]
/openbmc/qemu/
H A Dmeson.build4260 target_type='system' variable
4277 target_type='user' variable
4341 if target_type == 'system' variable
4346 if target_type == 'user' variable
4351 if target_type == 'system' and target_base_arch in target_common_system_arch_libs variable
4362 if have_rust and target_type == 'system' variable
4475 'probe-prefix': 'qemu.' + target_type + '.' + target_name,
/openbmc/qemu/hw/cxl/
H A Dcxl-mailbox-utils.c157 uint8_t target_type; in cmd_tunnel_management_cmd() member
191 if (in->target_type != 0) { in cmd_tunnel_management_cmd()