Home | History | Annotate | Download | only in m_ume

Lines Matching defs:hdr

45 Bool VG_(match_script)(Char *hdr, Int len)
47 Char* end = hdr + len;
48 Char* interp = hdr + 2;
52 if (0 != VG_(memcmp)(hdr, "#!", 2)) return False;
81 Char hdr[4096];
91 res = VG_(pread)(fd, hdr, len, 0);
99 vg_assert('#' == hdr[0] && '!' == hdr[1]);
101 end = hdr + len;
102 interp = hdr + 2;