next_pingp       1996 ext/oci8/oci8.c 						if (!ping_done && (*(connection->next_pingp) > 0) && (timestamp >= *(connection->next_pingp)) && !php_oci_connection_ping(connection)) {
next_pingp       2433 ext/oci8/oci8.c 	if (connection->next_pingp) {
next_pingp       2435 ext/oci8/oci8.c 			*(connection->next_pingp) = timestamp + OCI_G(ping_interval);
next_pingp       2438 ext/oci8/oci8.c 			*(connection->next_pingp) = 0;
next_pingp       2478 ext/oci8/oci8.c 		connection->next_pingp = NULL;
next_pingp       3414 ext/oci8/oci8.c 		PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIContextGetValue, (connection->session, OCI_G(err), (ub1 *)"NEXT_PING", (ub1)sizeof("NEXT_PING"), (void **)&(connection->next_pingp)));
next_pingp       3420 ext/oci8/oci8.c 		if (!(connection->next_pingp)){
next_pingp       3426 ext/oci8/oci8.c 		} else if ((*(connection->next_pingp) > 0) && (timestamp >= *(connection->next_pingp))) {
next_pingp       3429 ext/oci8/oci8.c 				*(connection->next_pingp) = timestamp + OCI_G(ping_interval);
next_pingp       3510 ext/oci8/oci8.c 	time_t *next_pingp = NULL;
next_pingp       3512 ext/oci8/oci8.c 	PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIContextGetValue, (connection->session, errh, (ub1 *)"NEXT_PING", (ub1)sizeof("NEXT_PING"), (void **)&next_pingp));
next_pingp       3518 ext/oci8/oci8.c 	if (!next_pingp) {
next_pingp       3519 ext/oci8/oci8.c 		PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIMemoryAlloc, (connection->session, errh, (void **)&next_pingp, OCI_DURATION_SESSION, sizeof(time_t), OCI_MEMORY_CLEARED));
next_pingp       3527 ext/oci8/oci8.c 		*next_pingp = timestamp + OCI_G(ping_interval);
next_pingp       3529 ext/oci8/oci8.c 		*next_pingp = 0;
next_pingp       3533 ext/oci8/oci8.c 	PHP_OCI_CALL_RETURN(OCI_G(errcode), OCIContextSetValue, (connection->session, errh, OCI_DURATION_SESSION, (ub1 *)"NEXT_PING", (ub1)sizeof("NEXT_PING"), next_pingp));
next_pingp       3535 ext/oci8/oci8.c 		OCIMemoryFree(connection->session, errh, next_pingp);
next_pingp       3540 ext/oci8/oci8.c 	connection->next_pingp = next_pingp;
next_pingp        164 ext/oci8/php_oci8_int.h 	time_t		   *next_pingp;					/* (pointer to) time of the next ping */