persistent_id    2379 ext/openssl/xp_ssl.c 		const char *persistent_id, int options, int flags,
persistent_id    2386 ext/openssl/xp_ssl.c 	sslsock = pemalloc(sizeof(php_openssl_netstream_data_t), persistent_id ? 1 : 0);
persistent_id    2405 ext/openssl/xp_ssl.c 	stream = php_stream_alloc_rel(&php_openssl_socket_ops, sslsock, persistent_id, "r+");
persistent_id    2408 ext/openssl/xp_ssl.c 		pefree(sslsock, persistent_id ? 1 : 0);
persistent_id    2455 ext/openssl/xp_ssl.c 	sslsock->url_name = get_url_name(resourcename, resourcenamelen, !!persistent_id TSRMLS_CC);
persistent_id     332 ext/pdo/pdo_dbh.c 				if (!(pdbh->persistent_id = pemalloc(plen + 1, 1))) {
persistent_id     335 ext/pdo/pdo_dbh.c 				memcpy((char *)pdbh->persistent_id, hashkey, plen+1);
persistent_id     403 ext/pdo/pdo_dbh.c 					(char*)dbh->persistent_id, dbh->persistent_id_len, (void*)&le,
persistent_id    1534 ext/pdo/pdo_dbh.c 	if (dbh->persistent_id) {
persistent_id    1535 ext/pdo/pdo_dbh.c 		pefree((char *)dbh->persistent_id, dbh->is_persistent);
persistent_id     498 ext/pdo/php_pdo_driver.h 	const char *persistent_id;
persistent_id    1038 main/network.c PHPAPI php_stream *_php_stream_sock_open_from_socket(php_socket_t socket, const char *persistent_id STREAMS_DC TSRMLS_DC)
persistent_id    1043 main/network.c 	sock = pemalloc(sizeof(php_netstream_data_t), persistent_id ? 1 : 0);
persistent_id    1051 main/network.c 	stream = php_stream_alloc_rel(&php_stream_generic_socket_ops, sock, persistent_id, "r+");
persistent_id    1054 main/network.c 		pefree(sock, persistent_id ? 1 : 0);
persistent_id    1063 main/network.c 		int socktype, struct timeval *timeout, const char *persistent_id STREAMS_DC TSRMLS_DC)
persistent_id    1072 main/network.c 			STREAM_XPORT_CLIENT | STREAM_XPORT_CONNECT, persistent_id, timeout, NULL, NULL, NULL);
persistent_id     288 main/php_network.h PHPAPI php_stream *_php_stream_sock_open_from_socket(php_socket_t socket, const char *persistent_id STREAMS_DC TSRMLS_DC );
persistent_id     291 main/php_network.h 		int socktype, struct timeval *timeout, const char *persistent_id STREAMS_DC TSRMLS_DC);
persistent_id      70 main/php_streams.h #define php_stream_fopen_from_fd_rel(fd, mode, persistent_id)	 _php_stream_fopen_from_fd((fd), (mode), (persistent_id) STREAMS_REL_CC TSRMLS_CC)
persistent_id     241 main/php_streams.h 		const char *persistent_id, const char *mode STREAMS_DC TSRMLS_DC);
persistent_id     243 main/php_streams.h #define php_stream_alloc(ops, thisptr, persistent_id, mode)	_php_stream_alloc((ops), (thisptr), (persistent_id), (mode) STREAMS_CC TSRMLS_CC)
persistent_id     266 main/php_streams.h PHPAPI int php_stream_from_persistent_id(const char *persistent_id, php_stream **stream TSRMLS_DC);
persistent_id      39 main/streams/php_stream_plain_wrapper.h PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id STREAMS_DC TSRMLS_DC);
persistent_id      40 main/streams/php_stream_plain_wrapper.h #define php_stream_fopen_from_fd(fd, mode, persistent_id)	_php_stream_fopen_from_fd((fd), (mode), (persistent_id) STREAMS_CC TSRMLS_CC)
persistent_id      31 main/streams/php_stream_transport.h 		const char *persistent_id, int options, int flags,
persistent_id      50 main/streams/php_stream_transport.h 		int flags, const char *persistent_id,
persistent_id      57 main/streams/php_stream_transport.h #define php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, estr, ecode) \
persistent_id      58 main/streams/php_stream_transport.h 	_php_stream_xport_create(name, namelen, options, flags, persistent_id, timeout, context, estr, ecode STREAMS_CC TSRMLS_CC)
persistent_id      47 main/streams/plain_wrapper.c #define php_stream_fopen_from_fd_int(fd, mode, persistent_id)	_php_stream_fopen_from_fd_int((fd), (mode), (persistent_id) STREAMS_CC TSRMLS_CC)
persistent_id      48 main/streams/plain_wrapper.c #define php_stream_fopen_from_fd_int_rel(fd, mode, persistent_id)	 _php_stream_fopen_from_fd_int((fd), (mode), (persistent_id) STREAMS_REL_CC TSRMLS_CC)
persistent_id     155 main/streams/plain_wrapper.c static php_stream *_php_stream_fopen_from_fd_int(int fd, const char *mode, const char *persistent_id STREAMS_DC TSRMLS_DC)
persistent_id     159 main/streams/plain_wrapper.c 	self = pemalloc_rel_orig(sizeof(*self), persistent_id);
persistent_id     168 main/streams/plain_wrapper.c 	return php_stream_alloc_rel(&php_stream_stdio_ops, self, persistent_id, mode);
persistent_id     225 main/streams/plain_wrapper.c PHPAPI php_stream *_php_stream_fopen_from_fd(int fd, const char *mode, const char *persistent_id STREAMS_DC TSRMLS_DC)
persistent_id     227 main/streams/plain_wrapper.c 	php_stream *stream = php_stream_fopen_from_fd_int_rel(fd, mode, persistent_id);
persistent_id     925 main/streams/plain_wrapper.c 	char *persistent_id = NULL;
persistent_id     943 main/streams/plain_wrapper.c 		spprintf(&persistent_id, 0, "streams_stdio_%d_%s", open_flags, realpath);
persistent_id     944 main/streams/plain_wrapper.c 		switch (php_stream_from_persistent_id(persistent_id, &ret TSRMLS_CC)) {
persistent_id     956 main/streams/plain_wrapper.c 				efree(persistent_id);;
persistent_id     966 main/streams/plain_wrapper.c 			ret = php_stream_fopen_from_fd_int_rel(fd, mode, persistent_id);
persistent_id     968 main/streams/plain_wrapper.c 			ret = php_stream_fopen_from_fd_rel(fd, mode, persistent_id);
persistent_id     979 main/streams/plain_wrapper.c 			if (persistent_id) {
persistent_id     980 main/streams/plain_wrapper.c 				efree(persistent_id);
persistent_id    1009 main/streams/plain_wrapper.c 	if (persistent_id) {
persistent_id    1010 main/streams/plain_wrapper.c 		efree(persistent_id);
persistent_id     117 main/streams/streams.c PHPAPI int php_stream_from_persistent_id(const char *persistent_id, php_stream **stream TSRMLS_DC)
persistent_id     121 main/streams/streams.c 	if (zend_hash_find(&EG(persistent_list), (char*)persistent_id, strlen(persistent_id)+1, (void*) &le) == SUCCESS) {
persistent_id     288 main/streams/streams.c PHPAPI php_stream *_php_stream_alloc(php_stream_ops *ops, void *abstract, const char *persistent_id, const char *mode STREAMS_DC TSRMLS_DC) /* {{{ */
persistent_id     292 main/streams/streams.c 	ret = (php_stream*) pemalloc_rel_orig(sizeof(php_stream), persistent_id ? 1 : 0);
persistent_id     300 main/streams/streams.c fprintf(stderr, "stream_alloc: %s:%p persistent=%s\n", ops->label, ret, persistent_id);
persistent_id     305 main/streams/streams.c 	ret->is_persistent = persistent_id ? 1 : 0;
persistent_id     317 main/streams/streams.c 	if (persistent_id) {
persistent_id     324 main/streams/streams.c 		if (FAILURE == zend_hash_update(&EG(persistent_list), (char *)persistent_id,
persistent_id     325 main/streams/streams.c 					strlen(persistent_id) + 1,
persistent_id     333 main/streams/streams.c 	ret->rsrc_id = ZEND_REGISTER_RESOURCE(NULL, ret, persistent_id ? le_pstream : le_stream);
persistent_id      53 main/streams/transports.c 		int flags, const char *persistent_id,
persistent_id      74 main/streams/transports.c 	if (persistent_id) {
persistent_id      75 main/streams/transports.c 		switch(php_stream_from_persistent_id(persistent_id, &stream TSRMLS_CC)) {
persistent_id     133 main/streams/transports.c 			(char*)name, namelen, persistent_id, options, flags, timeout,
persistent_id     184 main/streams/transports.c 		if (persistent_id) {
persistent_id     790 main/streams/xp_socket.c 		const char *persistent_id, int options, int flags,
persistent_id     816 main/streams/xp_socket.c 	sock = pemalloc(sizeof(php_netstream_data_t), persistent_id ? 1 : 0);
persistent_id     827 main/streams/xp_socket.c 	stream = php_stream_alloc_rel(ops, sock, persistent_id, "r+");
persistent_id     830 main/streams/xp_socket.c 		pefree(sock, persistent_id ? 1 : 0);