Searched defs:conn (Results 1 - 4 of 4) sorted by relevance
/bind-9.6-ESV-R11/contrib/sdb/pgsql/ |
H A D | zonetodb.c | 52 PGconn *conn = NULL; variable 58 if (conn != NULL) 59 PQfinish(conn); 123 res = PQexec(conn, str); 191 conn = PQsetdb(NULL, NULL, NULL, NULL, dbname); 192 if (PQstatus(conn) == CONNECTION_BAD) { 194 dbname, PQerrorMessage(conn)); 201 res = PQexec(conn, str); 209 res = PQexec(conn, str); 223 res = PQexec(conn, st [all...] |
H A D | pgsqldb.c | 54 PGconn *conn; member in struct:dbinfo 87 dbi->conn = PQsetdbLogin(dbi->host, NULL, NULL, NULL, dbi->database, 90 if (PQstatus(dbi->conn) == CONNECTION_OK) 102 if (PQstatus(dbi->conn) == CONNECTION_OK) 140 res = PQexec(dbi->conn, str); 194 res = PQexec(dbi->conn, str); 253 dbi->conn = NULL; 300 if (dbi->conn != NULL) 301 PQfinish(dbi->conn);
|
/bind-9.6-ESV-R11/contrib/sdb/ldap/ |
H A D | zone2ldap.c | 101 LDAP *conn; variable 303 result = ldap_add_s (conn, fullbasedn, base_attrs); 441 ldap_unbind_s (conn); 450 ldap_unbind_s (conn); 540 ldap_unbind_s (conn); 556 ldap_unbind_s (conn); 682 conn = ldap_open (ldapsystem, LDAP_PORT); 683 if (conn == NULL) 690 result = ldap_simple_bind_s (conn, binddn, bindpw); 702 ldap_perror (conn, d [all...] |
/bind-9.6-ESV-R11/bin/named/ |
H A D | controlconf.c | 164 maybe_free_connection(controlconnection_t *conn) { argument 165 controllistener_t *listener = conn->listener; 167 if (conn->timer != NULL) 168 isc_timer_detach(&conn->timer); 170 if (conn->ccmsg_valid) { 171 isccc_ccmsg_cancelread(&conn->ccmsg); 175 if (conn->sending) { 176 isc_socket_cancel(conn->sock, listener->task, 181 ISC_LIST_UNLINK(listener->connections, conn, link); 182 isc_mem_put(listener->mctx, conn, sizeo 187 controlconnection_t *conn; local 272 controlconnection_t *conn = event->ev_arg; local 322 controlconnection_t *conn; local 519 controlconnection_t *conn = event->ev_arg; local 531 controlconnection_t *conn; local [all...] |
Completed in 3160 milliseconds