Home
last modified time | relevance | path

Searched refs:target_type (Results 1 – 5 of 5) 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()