Home | History | Annotate | Download | only in scripts

Lines Matching refs:binary

51     binary = match.group(4)
55 if binary.startswith('/'):
56 binary = binary[1:]
57 binary = os.path.join(binary_prefix, binary)
59 if not os.path.exists(binary):
65 if not pipes.has_key(binary):
66 pipes[binary] = subprocess.Popen(["addr2line", "-i", "-f", "-e", binary],
68 p = pipes[binary]