Lines Matching refs:recording
64 raise YamlException("Failed to get '{}' from recording.".format(key))
70 recording and ring the alarm bell if one of them is off.
91 f"Warning: udev property mismatch: recording has {name}={yaml_props[name]}, device has {name}={value}"
95 # The list of properties we add to the recording, see libinput-record.c
250 def loop(args, recording):
251 devices = fetch(recording, "devices")
268 input("No events in recording. Hit enter to quit")
316 def setup_quirks(recording):
317 devices = fetch(recording, "devices")
345 def check_file(recording):
346 version = fetch(recording, "version")
354 ndevices = fetch(recording, "ndevices")
355 devices = fetch(recording, "devices")
365 parser = argparse.ArgumentParser(description="Replay a device recording")
367 "recording",
370 help="Path to device recording",
390 with open(args.recording) as f:
400 error("Error: failed to parse recording: {}".format(e))