Lines Matching refs:BUF_LEN
843 #define BUF_LEN 2048
848 static Char buf[BUF_LEN];
850 ( VG_(get_fnname)(ip, buf, BUF_LEN) && is_member_fn(ignore_fns, buf)
863 static Char buf[BUF_LEN];
902 if (VG_(get_fnname)(ips[i], buf, BUF_LEN)) {
2141 Char FP_buf[BUF_LEN];
2146 VG_(snprintf)(FP_buf, BUF_LEN, format, ##args); \
2147 FP_buf[BUF_LEN-1] = '\0'; /* Make sure the string is terminated. */ \
2173 static Char ip_desc_array[BUF_LEN];
2200 ip_desc = VG_(describe_IP)(sxpt->Sig.ip-1, ip_desc, BUF_LEN);
2233 VG_(snprintf)(FP_buf, BUF_LEN, "%s\n", ip_desc);
2234 FP_buf[BUF_LEN-18+j-5] = '.'; // "..." at the end make the
2235 FP_buf[BUF_LEN-18+j-4] = '.'; // truncation more obvious.
2236 FP_buf[BUF_LEN-18+j-3] = '.';
2237 FP_buf[BUF_LEN-18+j-2] = '\n'; // The last char is '\n'.
2238 FP_buf[BUF_LEN-18+j-1] = '\0'; // The string is terminated.