Lines Matching full:accel
65 # * accel: regexp, full match only
150 # KVM-specific devices shouldn't be tried without accel=kvm:
151 {'accel':'(?!kvm).*', 'device':'kvmclock', 'expected':True},
154 {'accel':'(?!xen).*', 'machine':'xen.*', 'expected':True},
155 {'accel':'(?!xen).*', 'device':'xen-.*', 'expected':True},
207 ('accel' not in rule or
208 'accel' not in t or
209 re.match(rule['accel'] + '$', t['accel'])) and
298 args = ['-S', '-machine', 'none,accel=kvm:tcg']
355 accel = testcase['accel']
361 args = ['-S', '-machine', '%s,accel=%s' % (machine, accel),
415 ('accel', accelsToTest),