Lines Matching defs:rstr
1159 char *rstr = (char *)NULL;
1181 rstr = (char *)calloc(1, vres+2);
1182 assert(rstr != (char *)NULL);
1187 vres = vsnprintf(rstr, vres+1, a_format, ap);
1191 assert(*rstr != '\0');
1193 _smlLogMsg(LOG_MSG_DEBUG, "%s", rstr);
1194 free(rstr);
1198 rstr = smlConvertTagToString(a_tag);
1199 if (rstr != (char *)NULL) {
1201 strlen(rstr), rstr);
1203 free(rstr);
1928 char *rstr = (char *)NULL;
1945 rstr = (char *)calloc(1, vres+2);
1946 assert(rstr != (char *)NULL);
1951 vres = vsnprintf(rstr, vres+1, a_format, ap);
1955 assert(*rstr != '\0');
1959 return (rstr);
3270 char *rstr = (char *)NULL;
3310 rstr = (char *)malloc(vres+2);
3315 vres = vsnprintf(rstr, vres+1, a_format, ap);
3318 if (fprintf(out, "%s\n", rstr) < 0) {
3326 free(rstr);