protocol         2530 ext/ldap/ldap.c 	int rc, protocol = LDAP_VERSION3;
protocol         2538 ext/ldap/ldap.c 	if (((rc = ldap_set_option(ld->link, LDAP_OPT_PROTOCOL_VERSION, &protocol)) != LDAP_SUCCESS) ||
protocol          197 ext/mysqlnd/mysqlnd.c 	if (conn->protocol) {
protocol          198 ext/mysqlnd/mysqlnd.c 		mysqlnd_protocol_free(conn->protocol TSRMLS_CC);
protocol          199 ext/mysqlnd/mysqlnd.c 		conn->protocol = NULL;
protocol          226 ext/mysqlnd/mysqlnd.c 			MYSQLND_PACKET_OK * ok_response = conn->protocol->m.get_ok_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          272 ext/mysqlnd/mysqlnd.c 			MYSQLND_PACKET_EOF * ok_response = conn->protocol->m.get_eof_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          342 ext/mysqlnd/mysqlnd.c 	cmd_packet = conn->protocol->m.get_command_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          479 ext/mysqlnd/mysqlnd.c 	auth_packet = conn->protocol->m.get_auth_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          801 ext/mysqlnd/mysqlnd.c 	greet_packet = conn->protocol->m.get_greet_packet(conn->protocol, FALSE TSRMLS_CC);
protocol         1761 ext/mysqlnd/mysqlnd.c 			stats_header = conn->protocol->m.get_stats_packet(conn->protocol, FALSE TSRMLS_CC);
protocol         2412 ext/mysqlnd/mysqlnd.c 			conn->options->protocol = MYSQL_PROTOCOL_PIPE;
protocol         2416 ext/mysqlnd/mysqlnd.c 				conn->options->protocol = *(unsigned int*) value;
protocol         3014 ext/mysqlnd/mysqlnd.c 	conn->protocol = mysqlnd_protocol_init(conn->persistent TSRMLS_CC);
protocol         3016 ext/mysqlnd/mysqlnd.c 	DBG_RETURN(conn->stats && conn->net && conn->protocol? PASS:FAIL);
protocol           60 ext/mysqlnd/mysqlnd_auth.c 	auth_resp_packet = conn->protocol->m.get_auth_response_packet(conn->protocol, FALSE TSRMLS_CC);
protocol           68 ext/mysqlnd/mysqlnd_auth.c 		change_auth_resp_packet = conn->protocol->m.get_change_auth_response_packet(conn->protocol, FALSE TSRMLS_CC);
protocol           83 ext/mysqlnd/mysqlnd_auth.c 		auth_packet = conn->protocol->m.get_auth_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          181 ext/mysqlnd/mysqlnd_auth.c 	chg_user_resp = conn->protocol->m.get_change_user_response_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          189 ext/mysqlnd/mysqlnd_auth.c 		change_auth_resp_packet = conn->protocol->m.get_change_auth_response_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          204 ext/mysqlnd/mysqlnd_auth.c 		auth_packet = conn->protocol->m.get_auth_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          263 ext/mysqlnd/mysqlnd_auth.c 			MYSQLND_PACKET_OK * redundant_error_packet = conn->protocol->m.get_ok_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          503 ext/mysqlnd/mysqlnd_auth.c 			pk_req_packet = conn->protocol->m.get_sha256_pk_request_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          508 ext/mysqlnd/mysqlnd_auth.c 			pk_resp_packet = conn->protocol->m.get_sha256_pk_request_response_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          113 ext/mysqlnd/mysqlnd_ext_plugin.c _mysqlnd_plugin_get_plugin_protocol_data(const MYSQLND_PROTOCOL * protocol, unsigned int plugin_id TSRMLS_DC)
protocol          117 ext/mysqlnd/mysqlnd_ext_plugin.c 	if (!protocol || plugin_id >= mysqlnd_plugin_count()) {
protocol          120 ext/mysqlnd/mysqlnd_ext_plugin.c 	DBG_RETURN((void *)((char *)protocol + sizeof(MYSQLND_PROTOCOL) + plugin_id * sizeof(void *)));
protocol           46 ext/mysqlnd/mysqlnd_ext_plugin.h PHPAPI void ** _mysqlnd_plugin_get_plugin_protocol_data(const MYSQLND_PROTOCOL * protocol, unsigned int plugin_id TSRMLS_DC);
protocol          267 ext/mysqlnd/mysqlnd_ps.c 	if (!stmt || !stmt->conn || !stmt->conn->protocol) {
protocol          272 ext/mysqlnd/mysqlnd_ps.c 	field_packet = stmt->conn->protocol->m.get_result_field_packet(stmt->conn->protocol, FALSE TSRMLS_CC);
protocol          302 ext/mysqlnd/mysqlnd_ps.c 	if (!stmt || !stmt->conn || !stmt->conn->protocol) {
protocol          307 ext/mysqlnd/mysqlnd_ps.c 	prepare_resp = stmt->conn->protocol->m.get_prepare_response_packet(stmt->conn->protocol, FALSE TSRMLS_CC);
protocol          346 ext/mysqlnd/mysqlnd_ps.c 	if (!stmt || !stmt->conn || !stmt->conn->protocol) {
protocol          351 ext/mysqlnd/mysqlnd_ps.c 	fields_eof = stmt->conn->protocol->m.get_eof_packet(stmt->conn->protocol, FALSE TSRMLS_CC);
protocol          484 ext/mysqlnd/mysqlnd_result.c 		rset_header = conn->protocol->m.get_rset_header_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          615 ext/mysqlnd/mysqlnd_result.c 				fields_eof = conn->protocol->m.get_eof_packet(conn->protocol, FALSE TSRMLS_CC);
protocol         1030 ext/mysqlnd/mysqlnd_result.c 	result->unbuf->row_packet = result->conn->protocol->m.get_row_packet(result->conn->protocol, FALSE TSRMLS_CC);
protocol         1393 ext/mysqlnd/mysqlnd_result.c 	row_packet = conn->protocol->m.get_row_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          104 ext/mysqlnd/mysqlnd_result_meta.c 	field_packet = conn->protocol->m.get_result_field_packet(conn->protocol, FALSE TSRMLS_CC);
protocol          183 ext/mysqlnd/mysqlnd_structs.h 	enum_mysqlnd_protocol_type protocol;
protocol          366 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_greet *		(*func_mysqlnd_protocol__get_greet_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          367 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_auth *			(*func_mysqlnd_protocol__get_auth_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          368 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_auth_response *(*func_mysqlnd_protocol__get_auth_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          369 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_change_auth_response *	(*func_mysqlnd_protocol__get_change_auth_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          370 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_ok *			(*func_mysqlnd_protocol__get_ok_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          371 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_command *		(*func_mysqlnd_protocol__get_command_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          372 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_eof *			(*func_mysqlnd_protocol__get_eof_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          373 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_rset_header *	(*func_mysqlnd_protocol__get_rset_header_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          374 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_res_field *	(*func_mysqlnd_protocol__get_result_field_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          375 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_row *			(*func_mysqlnd_protocol__get_row_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          376 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_stats *		(*func_mysqlnd_protocol__get_stats_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          377 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_prepare_response *(*func_mysqlnd_protocol__get_prepare_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          378 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_chg_user_resp*(*func_mysqlnd_protocol__get_change_user_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          379 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_sha256_pk_request *(*func_mysqlnd_protocol__get_sha256_pk_request_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol          380 ext/mysqlnd/mysqlnd_structs.h typedef struct st_mysqlnd_packet_sha256_pk_request_response *(*func_mysqlnd_protocol__get_sha256_pk_request_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC);
protocol         2317 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_greet_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2332 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_auth_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2347 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_auth_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2362 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_change_auth_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2377 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_ok_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2392 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_eof_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2407 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_command_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2422 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_rset_header_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2437 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_result_field_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2452 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_row_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2467 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_stats_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2482 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_prepare_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2497 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_change_user_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2512 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_sha256_pk_request_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2527 ext/mysqlnd/mysqlnd_wireprotocol.c MYSQLND_METHOD(mysqlnd_protocol, get_sha256_pk_request_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC)
protocol         2574 ext/mysqlnd/mysqlnd_wireprotocol.c mysqlnd_protocol_free(MYSQLND_PROTOCOL * const protocol TSRMLS_DC)
protocol         2578 ext/mysqlnd/mysqlnd_wireprotocol.c 	if (protocol) {
protocol         2579 ext/mysqlnd/mysqlnd_wireprotocol.c 		zend_bool pers = protocol->persistent;
protocol         2580 ext/mysqlnd/mysqlnd_wireprotocol.c 		mnd_pefree(protocol, pers);
protocol          325 ext/mysqlnd/mysqlnd_wireprotocol.h PHPAPI void mysqlnd_protocol_free(MYSQLND_PROTOCOL * const protocol TSRMLS_DC);
protocol          169 ext/soap/php_http.c 	char *protocol;
protocol          204 ext/soap/php_http.c 					protocol = "tls";
protocol          208 ext/soap/php_http.c 					protocol = "sslv2";
protocol          212 ext/soap/php_http.c 					protocol = "sslv3";
protocol          216 ext/soap/php_http.c 					protocol = "ssl";
protocol          220 ext/soap/php_http.c 					protocol = "ssl";
protocol          225 ext/soap/php_http.c 			protocol = "ssl";
protocol          228 ext/soap/php_http.c 		protocol = "tcp";
protocol          231 ext/soap/php_http.c 	namelen = spprintf(&name, 0, "%s://%s:%d", protocol, host, port);
protocol          162 ext/sockets/sockets.c 	ZEND_ARG_INFO(0, protocol)
protocol          230 ext/sockets/sockets.c 	ZEND_ARG_INFO(0, protocol)
protocol         2089 ext/sockets/sockets.c 	long		domain, type, protocol;
protocol         2091 ext/sockets/sockets.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lllz", &domain, &type, &protocol, &fds_array_zval) == FAILURE) {
protocol         2112 ext/sockets/sockets.c 	if (socketpair(domain, type, protocol, fds_array) != 0) {
protocol          203 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, protocol)
protocol          209 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, protocol)
protocol          213 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, protocol)
protocol          789 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, protocol)
protocol          796 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, protocol)
protocol         1937 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, protocol)
protocol           54 ext/standard/streamsfuncs.c 	long domain, type, protocol;
protocol           59 ext/standard/streamsfuncs.c 			&domain, &type, &protocol)) {
protocol           63 ext/standard/streamsfuncs.c 	if (0 != socketpair(domain, type, protocol, pair)) {
protocol          547 main/php_streams.h PHPAPI int php_register_url_stream_wrapper(const char *protocol, php_stream_wrapper *wrapper TSRMLS_DC);
protocol          548 main/php_streams.h PHPAPI int php_unregister_url_stream_wrapper(const char *protocol TSRMLS_DC);
protocol          549 main/php_streams.h PHPAPI int php_register_url_stream_wrapper_volatile(const char *protocol, php_stream_wrapper *wrapper TSRMLS_DC);
protocol          550 main/php_streams.h PHPAPI int php_unregister_url_stream_wrapper_volatile(const char *protocol TSRMLS_DC);
protocol           37 main/streams/php_stream_transport.h PHPAPI int php_stream_xport_register(const char *protocol, php_stream_transport_factory factory TSRMLS_DC);
protocol           38 main/streams/php_stream_transport.h PHPAPI int php_stream_xport_unregister(const char *protocol TSRMLS_DC);
protocol         1688 main/streams/streams.c static inline int php_stream_wrapper_scheme_validate(const char *protocol, unsigned int protocol_len)
protocol         1693 main/streams/streams.c 		if (!isalnum((int)protocol[i]) &&
protocol         1694 main/streams/streams.c 			protocol[i] != '+' &&
protocol         1695 main/streams/streams.c 			protocol[i] != '-' &&
protocol         1696 main/streams/streams.c 			protocol[i] != '.') {
protocol         1705 main/streams/streams.c PHPAPI int php_register_url_stream_wrapper(const char *protocol, php_stream_wrapper *wrapper TSRMLS_DC)
protocol         1707 main/streams/streams.c 	unsigned int protocol_len = strlen(protocol);
protocol         1709 main/streams/streams.c 	if (php_stream_wrapper_scheme_validate(protocol, protocol_len) == FAILURE) {
protocol         1713 main/streams/streams.c 	return zend_hash_add(&url_stream_wrappers_hash, protocol, protocol_len + 1, &wrapper, sizeof(wrapper), NULL);
protocol         1716 main/streams/streams.c PHPAPI int php_unregister_url_stream_wrapper(const char *protocol TSRMLS_DC)
protocol         1718 main/streams/streams.c 	return zend_hash_del(&url_stream_wrappers_hash, protocol, strlen(protocol) + 1);
protocol         1731 main/streams/streams.c PHPAPI int php_register_url_stream_wrapper_volatile(const char *protocol, php_stream_wrapper *wrapper TSRMLS_DC)
protocol         1733 main/streams/streams.c 	unsigned int protocol_len = strlen(protocol);
protocol         1735 main/streams/streams.c 	if (php_stream_wrapper_scheme_validate(protocol, protocol_len) == FAILURE) {
protocol         1743 main/streams/streams.c 	return zend_hash_add(FG(stream_wrappers), protocol, protocol_len + 1, &wrapper, sizeof(wrapper), NULL);
protocol         1746 main/streams/streams.c PHPAPI int php_unregister_url_stream_wrapper_volatile(const char *protocol TSRMLS_DC)
protocol         1752 main/streams/streams.c 	return zend_hash_del(FG(stream_wrappers), protocol, strlen(protocol) + 1);
protocol         1761 main/streams/streams.c 	const char *p, *protocol = NULL;
protocol         1777 main/streams/streams.c 		protocol = path;
protocol         1780 main/streams/streams.c 		protocol = "compress.zlib";
protocol         1785 main/streams/streams.c 	if (protocol) {
protocol         1786 main/streams/streams.c 		char *tmp = estrndup(protocol, n);
protocol         1795 main/streams/streams.c 				PHP_STRLCPY(wrapper_name, protocol, sizeof(wrapper_name), n);
protocol         1800 main/streams/streams.c 				protocol = NULL;
protocol         1806 main/streams/streams.c 	if (!protocol || !strncasecmp(protocol, "file", n))	{
protocol         1810 main/streams/streams.c 		if (protocol) {
protocol         1875 main/streams/streams.c 			char *protocol_dup = estrndup(protocol, n);
protocol           32 main/streams/transports.c PHPAPI int php_stream_xport_register(const char *protocol, php_stream_transport_factory factory TSRMLS_DC)
protocol           34 main/streams/transports.c 	return zend_hash_update(&xport_hash, protocol, strlen(protocol) + 1, &factory, sizeof(factory), NULL);
protocol           37 main/streams/transports.c PHPAPI int php_stream_xport_unregister(const char *protocol TSRMLS_DC)
protocol           39 main/streams/transports.c 	return zend_hash_del(&xport_hash, protocol, strlen(protocol) + 1);
protocol           62 main/streams/transports.c 	const char *p, *protocol = NULL;
protocol          100 main/streams/transports.c 		protocol = name;
protocol          104 main/streams/transports.c 		protocol = "tcp";
protocol          108 main/streams/transports.c 	if (protocol) {
protocol          109 main/streams/transports.c 		char *tmp = estrndup(protocol, n);
protocol          115 main/streams/transports.c 			PHP_STRLCPY(wrapper_name, protocol, sizeof(wrapper_name), n);
protocol          132 main/streams/transports.c 	stream = (*factory)(protocol, n,
protocol          521 main/streams/userspace.c 	char *protocol, *classname;
protocol          527 main/streams/userspace.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|l", &protocol, &protocol_len, &classname, &classname_len, &flags) == FAILURE) {
protocol          532 main/streams/userspace.c 	uwrap->protoname = estrndup(protocol, protocol_len);
protocol          542 main/streams/userspace.c 		if (php_register_url_stream_wrapper_volatile(protocol, &uwrap->wrapper TSRMLS_CC) == SUCCESS) {
protocol          546 main/streams/userspace.c 			if (zend_hash_exists(php_stream_get_url_stream_wrappers_hash(), protocol, protocol_len + 1)) {
protocol          547 main/streams/userspace.c 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "Protocol %s:// is already defined.", protocol);
protocol          550 main/streams/userspace.c 				php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid protocol scheme specified. Unable to register wrapper class %s to %s://", classname, protocol);
protocol          566 main/streams/userspace.c 	char *protocol;
protocol          569 main/streams/userspace.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &protocol, &protocol_len) == FAILURE) {
protocol          573 main/streams/userspace.c 	if (php_unregister_url_stream_wrapper_volatile(protocol TSRMLS_CC) == FAILURE) {
protocol          575 main/streams/userspace.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to unregister protocol %s://", protocol);
protocol          587 main/streams/userspace.c 	char *protocol;
protocol          592 main/streams/userspace.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &protocol, &protocol_len) == FAILURE) {
protocol          598 main/streams/userspace.c 		php_error_docref(NULL TSRMLS_CC, E_NOTICE, "%s:// was never changed, nothing to restore", protocol);
protocol          602 main/streams/userspace.c 	if ((zend_hash_find(global_wrapper_hash, protocol, protocol_len + 1, (void**)&wrapperpp) == FAILURE) || !wrapperpp) {
protocol          603 main/streams/userspace.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s:// never existed, nothing to restore", protocol);
protocol          611 main/streams/userspace.c 	php_unregister_url_stream_wrapper_volatile(protocol TSRMLS_CC);
protocol          613 main/streams/userspace.c 	if (php_register_url_stream_wrapper_volatile(protocol, wrapper TSRMLS_CC) == FAILURE) {
protocol          614 main/streams/userspace.c 		php_error_docref(NULL TSRMLS_CC, E_WARNING, "Unable to restore original %s:// wrapper", protocol);
protocol          512 sapi/apache2handler/sapi_apache2.c 	if (strcmp(r->protocol, "INCLUDED")) {
protocol          552 sapi/apache2handler/sapi_apache2.c 	if (ctx == NULL || (ctx && ctx->request_processed && !strcmp(r->protocol, "INCLUDED"))) {
protocol          640 sapi/apache2handler/sapi_apache2.c 		if (parent_req && parent_req->status != HTTP_OK && parent_req->status != 413 && strcmp(r->protocol, "INCLUDED")) {
protocol          378 sapi/apache_hooks/php_apache.c 	apache_request_read_string_slot(offsetof(request_rec, protocol), INTERNAL_FUNCTION_PARAM_PASSTHRU);
protocol         1304 sapi/apache_hooks/php_apache.c 	PHP_FALIAS(protocol,					apache_request_protocol,			NULL)
protocol          322 sapi/thttpd/thttpd.c 	CONDADD(SERVER_PROTOCOL, protocol);
protocol          125 sapi/webjames/webjames.c 	ADD_FIELD("SERVER_PROTOCOL", protocol);
protocol           31 win32/sockets.c PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2])
protocol           45 win32/sockets.c 	sock[0]	= socket(domain, type, protocol);
protocol           66 win32/sockets.c 	sock[1] = socket(domain, type, protocol);
protocol           26 win32/sockets.h PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]);