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

/bind-9.6-ESV-R11/contrib/dlz/drivers/
H A Ddlz_mysql_driver.c105 char *outstr; local
113 outstr = isc_mem_allocate(ns_g_mctx ,(2 * len * sizeof(char)) + 1);
114 if (outstr == NULL)
117 mysql_real_escape_string(mysql, outstr, instr, len);
119 return outstr;
H A Ddlz_postgres_driver.c250 char *outstr; local
258 outstr = isc_mem_allocate(ns_g_mctx ,(2 * len * sizeof(char)) + 1);
259 if (outstr == NULL)
262 postgres_makesafe(outstr, instr, len);
263 /* PQescapeString(outstr, instr, len); */
265 return outstr;
H A Ddlz_odbc_driver.c386 char *outstr; local
394 outstr = isc_mem_allocate(ns_g_mctx ,(2 * len * sizeof(char)) + 1);
395 if (outstr == NULL)
398 odbc_makesafe(outstr, instr, len);
400 return outstr;

Completed in 17 milliseconds