Lines Matching refs:prog_name
14 prog_name = "" variable
18 " " + prog_name + " merge FILE [FILE...] > OUTPUT\n" \
19 " " + prog_name + " print FILE [FILE...]\n" \
20 " " + prog_name + " unpack FILE [FILE...]\n" \
21 " " + prog_name + " rawunpack FILE [FILE ...]\n" \
22 " " + prog_name + " missing BINARY < LIST_OF_PCS\n"
72 print >>sys.stderr, "%s: read %d %d-bit PCs from %s" % (prog_name, size * 8 / bits, bits, path)
80 (prog_name, len(files), len(s))
89 (prog_name, len(s))
107 print >> sys.stderr, "%s: unpacking %s" % (prog_name, path)
120 (prog_name, extracted_file)
136 print >> sys.stderr, "%s: reading map %s" % (prog_name, map_path)
150 print >> sys.stderr, "%s: unpacking %s" % (prog_name, path)
164 print >> sys.stderr, "warning: %s: pc %x outside of any known mapping" % (prog_name, pc)
172 print >> sys.stderr, "%s: writing %d PCs to %s" % (prog_name, len(pc_list), dst_path)
207 print >> sys.stderr, "%s: found %d instrumented PCs in %s" % (prog_name,
211 print >> sys.stderr, "%s: read %d PCs from stdin" % (prog_name, len(covered))
213 print >> sys.stderr, "%s: %d PCs missing from coverage" % (prog_name, len(missing))
216 "%s: WARNING: stdin contains PCs not found in binary" % prog_name
221 prog_name = sys.argv[0] variable