Lines Matching defs:args
14 def _print(*args):
15 # args is a tuple with just one string element
16 print_string = args[0]
17 gdb.execute('printf "%s\n"' % args[0])
24 def _sym_addr(*args):
25 # args is a tuple consisting of thread_id and symbol_name
26 thread_id = args[0]
27 symbol_name = args[1]
37 def _read_string(*args):
38 # args is a tuple with just the source address
39 addr = args[0]
51 def _read(*args):
52 # args is a tuple consisting of address and number of bytes to be read
53 addr = args[0]
54 nbytes = args[1]
71 def _thread_context(*args):
72 # args is a tuple consisting of thread_id and the thread kind
73 thread_id = args[1]
76 if args[0] == 0:
100 def _test_threads(*args):