argstr            132 lib/popt/poptparse.c     char * argstr;
argstr            152 lib/popt/poptparse.c     argstr = (char *)calloc(maxargvlen, sizeof(*argstr));
argstr            153 lib/popt/poptparse.c     if (argstr == NULL) return POPT_ERROR_MALLOC;
argstr            186 lib/popt/poptparse.c 		argstr = (char *)realloc(argstr, maxargvlen);
argstr            187 lib/popt/poptparse.c 		if (argstr == NULL) return POPT_ERROR_MALLOC;
argstr            189 lib/popt/poptparse.c 	    strcat(argstr, " --");
argstr            190 lib/popt/poptparse.c 	    strcat(argstr, p);
argstr            215 lib/popt/poptparse.c 	    argstr = (char *)realloc(argstr, maxargvlen);
argstr            216 lib/popt/poptparse.c 	    if (argstr == NULL) return POPT_ERROR_MALLOC;
argstr            218 lib/popt/poptparse.c 	strcat(argstr, " --");
argstr            219 lib/popt/poptparse.c 	strcat(argstr, p);
argstr            220 lib/popt/poptparse.c 	strcat(argstr, "=\"");
argstr            221 lib/popt/poptparse.c 	strcat(argstr, q);
argstr            222 lib/popt/poptparse.c 	strcat(argstr, "\"");
argstr            225 lib/popt/poptparse.c     *argstrp = argstr;