Searched refs:_args (Results 1 – 11 of 11) sorted by relevance
| /openbmc/qemu/scripts/tracetool/ |
| H A D | __init__.py | 118 self._args = [] 121 self._args.extend(arg._args) 123 self._args.append(arg) 127 return Arguments(list(self._args)) 159 return Arguments(self._args[index]) 161 return self._args[index] 165 return iter(self._args) 169 return len(self._args) 173 if len(self._args) == 0: 176 return ", ".join([ " ".join([t, n]) for t,n in self._args ]) [all …]
|
| /openbmc/u-boot/include/ |
| H A D | log.h | 121 #define log(_cat, _level, _fmt, _args...) ({ \ argument 126 pr_fmt(_fmt), ##_args); \ 129 #define log(_cat, _level, _fmt, _args...) argument
|
| /openbmc/qemu/python/qemu/machine/ |
| H A D | machine.py | 154 self._args = list(args) 208 self._args.append('-monitor') 209 self._args.append('null') 227 self._args.append('-add-fd') 228 self._args.append(','.join(options)) 329 return self._args 370 self._args 860 self._args.extend(args)
|
| /openbmc/qemu/hw/ppc/ |
| H A D | spapr_vof.c | 18 target_ulong opcode, target_ulong *_args) in spapr_h_vof_client() argument 21 ppc64_phys_to_real(_args[0])); in spapr_h_vof_client()
|
| /openbmc/qemu/tests/vm/ |
| H A D | ubuntu.aarch64 | 62 '-smp' not in self._args:
|
| H A D | centos.aarch64 | 68 '-smp' not in self._args:
|
| H A D | basevm.py | 142 self._args = [ \ 152 self._args += ["-smp", "%d" % args.jobs] 155 self._args += ["-enable-kvm"] 289 args = self._args + boot_params.split(' ')
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | iotests.py | 873 self._args.append('-object') 874 self._args.append(opts) 878 self._args.append('-device') 879 self._args.append(opts) 883 self._args.append('-drive') 884 self._args.append(opts) 903 if luks_default_secret_object not in self._args: 908 self._args.append('-drive') 909 self._args.append(','.join(options)) 914 self._args.append('-blockdev') [all …]
|
| /openbmc/qemu/hw/core/ |
| H A D | qdev.c | 166 #define DEVICE_LISTENER_CALL(_callback, _direction, _args...) \ argument 174 _listener->_callback(_listener, ##_args); \ 182 _listener->_callback(_listener, ##_args); \
|
| /openbmc/qemu/system/ |
| H A D | memory.c | 108 #define MEMORY_LISTENER_CALL_GLOBAL(_callback, _direction, _args...) \ argument 116 _listener->_callback(_listener, ##_args); \ 123 _listener->_callback(_listener, ##_args); \ 132 #define MEMORY_LISTENER_CALL(_as, _callback, _direction, _section, _args...) \ argument 140 _listener->_callback(_listener, _section, ##_args); \ 147 _listener->_callback(_listener, _section, ##_args); \ 157 #define MEMORY_LISTENER_UPDATE_REGION(fr, as, dir, callback, _args...) \ argument 161 MEMORY_LISTENER_CALL(as, callback, dir, &mrs, ##_args); \
|
| /openbmc/openbmc/poky/meta/lib/oe/ |
| H A D | utils.py | 289 ret = self._target(*self._args, **self._kwargs)
|