| /PHP_5_4/ext/ldap/ |
| H A D | ldap.c | 2031 int rc, protocol = LDAP_VERSION3; local 2039 if (((rc = ldap_set_option(ld->link, LDAP_OPT_PROTOCOL_VERSION, &protocol)) != LDAP_SUCCESS) ||
|
| /PHP_5_4/ext/standard/ |
| H A D | basic_functions.c | 201 ZEND_ARG_INFO(0, protocol) 207 ZEND_ARG_INFO(0, protocol) 211 ZEND_ARG_INFO(0, protocol) 801 ZEND_ARG_INFO(0, protocol) 808 ZEND_ARG_INFO(0, protocol) 1948 ZEND_ARG_INFO(0, protocol) 5555 /* {{{ proto int getservbyname(string service, string protocol) 5588 /* {{{ proto string getservbyport(int port, string protocol) 5614 Returns protocol number associated with name as per /etc/protocols */ 5638 Returns protocol nam [all...] |
| H A D | streamsfuncs.c | 48 /* {{{ proto array stream_socket_pair(int domain, int type, int protocol) 52 long domain, type, protocol; local 57 &domain, &type, &protocol)) { 61 if (0 != socketpair(domain, type, protocol, pair)) {
|
| /PHP_5_4/main/ |
| H A D | php_streams.h | 547 PHPAPI int php_register_url_stream_wrapper(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC); 548 PHPAPI int php_unregister_url_stream_wrapper(char *protocol TSRMLS_DC); 549 PHPAPI int php_register_url_stream_wrapper_volatile(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC); 550 PHPAPI int php_unregister_url_stream_wrapper_volatile(char *protocol TSRMLS_DC);
|
| /PHP_5_4/main/streams/ |
| H A D | php_stream_transport.h | 37 PHPAPI int php_stream_xport_register(char *protocol, php_stream_transport_factory factory TSRMLS_DC); 38 PHPAPI int php_stream_xport_unregister(char *protocol TSRMLS_DC);
|
| H A D | transports.c | 32 PHPAPI int php_stream_xport_register(char *protocol, php_stream_transport_factory factory TSRMLS_DC) argument 34 return zend_hash_update(&xport_hash, protocol, strlen(protocol) + 1, &factory, sizeof(factory), NULL); 37 PHPAPI int php_stream_xport_unregister(char *protocol TSRMLS_DC) 39 return zend_hash_del(&xport_hash, protocol, strlen(protocol) + 1); 62 const char *p, *protocol = NULL; local 100 protocol = name; 104 protocol = "tcp"; 108 if (protocol) { [all...] |
| H A D | userspace.c | 516 /* {{{ proto bool stream_wrapper_register(string protocol, string classname[, integer flags]) 517 Registers a custom URL protocol handler class */ 520 char *protocol, *classname; local 526 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|l", &protocol, &protocol_len, &classname, &classname_len, &flags) == FAILURE) { 531 uwrap->protoname = estrndup(protocol, protocol_len); 541 if (php_register_url_stream_wrapper_volatile(protocol, &uwrap->wrapper TSRMLS_CC) == SUCCESS) { 545 if (zend_hash_exists(php_stream_get_url_stream_wrappers_hash(), protocol, protocol_len + 1)) { 546 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Protocol %s:// is already defined.", protocol); 548 /* Hash doesn't exist so it must have been an invalid protocol scheme */ 549 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid protocol schem 565 char *protocol; local 586 char *protocol; local [all...] |
| H A D | streams.c | 1681 /* Validate protocol scheme names during registration 1684 static inline int php_stream_wrapper_scheme_validate(char *protocol, int protocol_len) argument 1689 if (!isalnum((int)protocol[i]) && 1690 protocol[i] != '+' && 1691 protocol[i] != '-' && 1692 protocol[i] != '.') { 1701 PHPAPI int php_register_url_stream_wrapper(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC) argument 1703 int protocol_len = strlen(protocol); 1705 if (php_stream_wrapper_scheme_validate(protocol, protocol_len) == FAILURE) { 1709 return zend_hash_add(&url_stream_wrappers_hash, protocol, protocol_le 1727 php_register_url_stream_wrapper_volatile(char *protocol, php_stream_wrapper *wrapper TSRMLS_DC) argument 1757 const char *p, *protocol = NULL; local [all...] |
| /PHP_5_4/sapi/apache2handler/ |
| H A D | sapi_apache2.c | 512 if (strcmp(r->protocol, "INCLUDED")) { 552 if (ctx == NULL || (ctx && ctx->request_processed && !strcmp(r->protocol, "INCLUDED"))) { 640 if (parent_req && parent_req->status != HTTP_OK && parent_req->status != 413 && strcmp(r->protocol, "INCLUDED")) {
|
| /PHP_5_4/sapi/apache_hooks/ |
| H A D | php_apache.c | 374 /* {{{ proto string ApacheRequest::protocol() 378 apache_request_read_string_slot(offsetof(request_rec, protocol), INTERNAL_FUNCTION_PARAM_PASSTHRU); 1304 PHP_FALIAS(protocol, apache_request_protocol, NULL)
|
| /PHP_5_4/sapi/thttpd/ |
| H A D | thttpd.c | 322 CONDADD(SERVER_PROTOCOL, protocol);
|
| /PHP_5_4/sapi/webjames/ |
| H A D | webjames.c | 125 ADD_FIELD("SERVER_PROTOCOL", protocol);
|
| /PHP_5_4/win32/ |
| H A D | sockets.h | 26 PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2])
|
| H A D | sockets.c | 31 PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]) argument 45 sock[0] = socket(domain, type, protocol); 66 sock[1] = socket(domain, type, protocol);
|
| /PHP_5_4/ext/mysqlnd/ |
| H A D | mysqlnd_auth.c | 61 auth_resp_packet = conn->protocol->m.get_auth_response_packet(conn->protocol, FALSE TSRMLS_CC); 69 change_auth_resp_packet = conn->protocol->m.get_change_auth_response_packet(conn->protocol, FALSE TSRMLS_CC); 84 auth_packet = conn->protocol->m.get_auth_packet(conn->protocol, FALSE TSRMLS_CC); 182 chg_user_resp = conn->protocol->m.get_change_user_response_packet(conn->protocol, FALSE TSRMLS_CC); 190 change_auth_resp_packet = conn->protocol->m.get_change_auth_response_packet(conn->protocol, FALS [all...] |
| H A D | mysqlnd_ext_plugin.c | 75 _mysqlnd_plugin_get_plugin_protocol_data(const MYSQLND_PROTOCOL * protocol, unsigned int plugin_id TSRMLS_DC) argument 79 if (!protocol || plugin_id >= mysqlnd_plugin_count()) { 82 DBG_RETURN((void *)((char *)protocol + sizeof(MYSQLND_PROTOCOL) + plugin_id * sizeof(void *)));
|
| H A D | mysqlnd_ext_plugin.h | 37 PHPAPI void ** _mysqlnd_plugin_get_plugin_protocol_data(const MYSQLND_PROTOCOL * protocol, unsigned int plugin_id TSRMLS_DC);
|
| H A D | mysqlnd_result_meta.c | 152 field_packet = conn->protocol->m.get_result_field_packet(conn->protocol, FALSE TSRMLS_CC);
|
| H A D | mysqlnd_structs.h | 180 enum_mysqlnd_protocol_type protocol; member in struct:st_mysqlnd_options 339 typedef struct st_mysqlnd_packet_greet * (*func_mysqlnd_protocol__get_greet_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 340 typedef struct st_mysqlnd_packet_auth * (*func_mysqlnd_protocol__get_auth_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 341 typedef struct st_mysqlnd_packet_auth_response *(*func_mysqlnd_protocol__get_auth_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 342 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); 343 typedef struct st_mysqlnd_packet_ok * (*func_mysqlnd_protocol__get_ok_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 344 typedef struct st_mysqlnd_packet_command * (*func_mysqlnd_protocol__get_command_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 345 typedef struct st_mysqlnd_packet_eof * (*func_mysqlnd_protocol__get_eof_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 346 typedef struct st_mysqlnd_packet_rset_header * (*func_mysqlnd_protocol__get_rset_header_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC); 347 typedef struct st_mysqlnd_packet_res_field * (*func_mysqlnd_protocol__get_result_field_packet)(MYSQLND_PROTOCOL * const protocol, zend_boo 810 MYSQLND_PROTOCOL * protocol; member in struct:st_mysqlnd_connection_data [all...] |
| H A D | mysqlnd_wireprotocol.c | 1656 less space in the protocol than the numbers they represent, we don't 2172 MYSQLND_METHOD(mysqlnd_protocol, get_greet_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC) 2187 MYSQLND_METHOD(mysqlnd_protocol, get_auth_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC) 2202 MYSQLND_METHOD(mysqlnd_protocol, get_auth_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC) 2217 MYSQLND_METHOD(mysqlnd_protocol, get_change_auth_response_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC) 2232 MYSQLND_METHOD(mysqlnd_protocol, get_ok_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC) 2247 MYSQLND_METHOD(mysqlnd_protocol, get_eof_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC) 2262 MYSQLND_METHOD(mysqlnd_protocol, get_command_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC) 2277 MYSQLND_METHOD(mysqlnd_protocol, get_rset_header_packet)(MYSQLND_PROTOCOL * const protocol, zend_bool persistent TSRMLS_DC) 2292 MYSQLND_METHOD(mysqlnd_protocol, get_result_field_packet)(MYSQLND_PROTOCOL * const protocol, zend_boo [all...] |
| H A D | mysqlnd_wireprotocol.h | 310 PHPAPI void mysqlnd_protocol_free(MYSQLND_PROTOCOL * const protocol TSRMLS_DC);
|
| H A D | mysqlnd.c | 191 if (conn->protocol) { 192 mysqlnd_protocol_free(conn->protocol TSRMLS_CC); 193 conn->protocol = NULL; 220 MYSQLND_PACKET_OK * ok_response = conn->protocol->m.get_ok_packet(conn->protocol, FALSE TSRMLS_CC); 238 Cover a protocol design error: error packet does not 265 MYSQLND_PACKET_EOF * ok_response = conn->protocol->m.get_eof_packet(conn->protocol, FALSE TSRMLS_CC); 338 cmd_packet = conn->protocol->m.get_command_packet(conn->protocol, FALS [all...] |
| H A D | mysqlnd_ps.c | 249 if (!stmt || !stmt->conn || !stmt->conn->protocol) { 254 field_packet = stmt->conn->protocol->m.get_result_field_packet(stmt->conn->protocol, FALSE TSRMLS_CC); 284 if (!stmt || !stmt->conn || !stmt->conn->protocol) { 289 prepare_resp = stmt->conn->protocol->m.get_prepare_response_packet(stmt->conn->protocol, FALSE TSRMLS_CC); 327 if (!stmt || !stmt->conn || !stmt->conn->protocol) { 332 fields_eof = stmt->conn->protocol->m.get_eof_packet(stmt->conn->protocol, FALSE TSRMLS_CC); 1346 Cover protocol erro [all...] |
| H A D | mysqlnd_result.c | 375 rset_header = conn->protocol->m.get_rset_header_packet(conn->protocol, FALSE TSRMLS_CC); 391 Cover a protocol design error: error packet does not 505 fields_eof = conn->protocol->m.get_eof_packet(conn->protocol, FALSE TSRMLS_CC); 910 result->row_packet = result->conn->protocol->m.get_row_packet(result->conn->protocol, FALSE TSRMLS_CC); 1133 row_packet = conn->protocol->m.get_row_packet(conn->protocol, FALSE TSRMLS_CC);
|
| /PHP_5_4/ext/sockets/ |
| H A D | sockets.c | 193 ZEND_ARG_INFO(0, protocol) 261 ZEND_ARG_INFO(0, protocol) 1488 /* {{{ proto resource socket_create(int domain, int type, int protocol) U 2382 /* {{{ proto bool socket_create_pair(int domain, int type, int protocol, array &fd) U 2389 long domain, type, protocol; local 2391 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "lllz", &domain, &type, &protocol, &fds_array_zval) == FAILURE) { 2412 if (socketpair(domain, type, protocol, fds_array) != 0) {
|