Lines Matching refs:p
59 char *p = *buf; in append_buf() local
61 if (p == NULL) { in append_buf()
63 p = *buf = app_malloc(*size, "engine buffer"); in append_buf()
65 const int blen = (int)strlen(p); in append_buf()
72 p = OPENSSL_realloc(p, *size); in append_buf()
73 if (p == NULL) { in append_buf()
78 *buf = p; in append_buf()
82 p += blen; in append_buf()
83 *p++ = ','; in append_buf()
84 *p++ = ' '; in append_buf()
88 strcpy(p, s); in append_buf()