Searched refs:outstr (Results 1 - 5 of 5) sorted by relevance

/bind-9.11.3/contrib/dlz/drivers/
H A Ddlz_mysql_driver.c96 char *outstr; local
104 outstr = isc_mem_allocate(ns_g_mctx ,(2 * len * sizeof(char)) + 1);
105 if (outstr == NULL)
108 mysql_real_escape_string(mysql, outstr, instr, len);
110 return outstr;
H A Ddlz_postgres_driver.c241 char *outstr; local
249 outstr = isc_mem_allocate(ns_g_mctx ,(2 * len * sizeof(char)) + 1);
250 if (outstr == NULL)
253 postgres_makesafe(outstr, instr, len);
254 /* PQescapeString(outstr, instr, len); */
256 return outstr;
H A Ddlz_odbc_driver.c377 char *outstr; local
385 outstr = isc_mem_allocate(ns_g_mctx ,(2 * len * sizeof(char)) + 1);
386 if (outstr == NULL)
389 odbc_makesafe(outstr, instr, len);
391 return outstr;
/bind-9.11.3/contrib/dlz/modules/mysql/
H A Ddlz_mysql_dynamic.c200 char *outstr; local
207 outstr = malloc((2 * len * sizeof(char)) + 1);
208 if (outstr == NULL)
211 mysql_real_escape_string(mysql, outstr, instr, len);
213 return (outstr);
/bind-9.11.3/contrib/dlz/modules/sqlite3/
H A Ddlz_sqlite3_dynamic.c205 char *outstr; local
216 outstr = malloc(atlen);
217 if (outstr == NULL)
220 ptr = outstr;
235 return (outstr);

Completed in 26 milliseconds