next_pingp       1996 ext/oci8/oci8.c 						if (!ping_done && (*(connection->next_pingp) > 0) && (timestamp >= *(connection->next_pingp)) && !php_oci_connection_ping(connection TSRMLS_CC)) {
next_pingp       2418 ext/oci8/oci8.c 	if (connection->next_pingp) {
next_pingp       2420 ext/oci8/oci8.c 			*(connection->next_pingp) = timestamp + OCI_G(ping_interval);
next_pingp       2423 ext/oci8/oci8.c 			*(connection->next_pingp) = 0;
next_pingp       2462 ext/oci8/oci8.c 		connection->next_pingp = NULL;
next_pingp       3370 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       3376 ext/oci8/oci8.c 		if (!(connection->next_pingp)){
next_pingp       3382 ext/oci8/oci8.c 		} else if ((*(connection->next_pingp) > 0) && (timestamp >= *(connection->next_pingp))) {
next_pingp       3385 ext/oci8/oci8.c 				*(connection->next_pingp) = timestamp + OCI_G(ping_interval);
next_pingp       3466 ext/oci8/oci8.c 	time_t *next_pingp = NULL;
next_pingp       3468 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       3474 ext/oci8/oci8.c 	if (!next_pingp) {
next_pingp       3475 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       3483 ext/oci8/oci8.c 		*next_pingp = timestamp + OCI_G(ping_interval);
next_pingp       3485 ext/oci8/oci8.c 		*next_pingp = 0;
next_pingp       3489 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       3491 ext/oci8/oci8.c 		OCIMemoryFree(connection->session, errh, next_pingp);
next_pingp       3496 ext/oci8/oci8.c 	connection->next_pingp = next_pingp;
next_pingp        157 ext/oci8/php_oci8_int.h 	time_t		   *next_pingp;					/* (pointer to) time of the next ping */