Home | History | Annotate | Download | only in coregrind

Lines Matching defs:cpp

115    HChar **cpp;
122 for (cpp = env; cpp && *cpp; cpp++) {
123 if (VG_(strncmp)(varname, *cpp, len) == 0 && (*cpp)[len] == '=') {
124 *cpp = valstr;
137 Int envlen = (cpp-env) + 2;
140 for (cpp = newenv; *env; )
141 *cpp++ = *env++;
142 *cpp++ = valstr;
143 *cpp++ = NULL;