Searched defs:protocol_len (Results 1 - 2 of 2) sorted by relevance
| /PHP_5_3/main/streams/ |
| H A D | streams.c | 1614 static inline int php_stream_wrapper_scheme_validate(char *protocol, int protocol_len) argument 1618 for(i = 0; i < protocol_len; i++) { 1633 int protocol_len = strlen(protocol); local 1635 if (php_stream_wrapper_scheme_validate(protocol, protocol_len) == FAILURE) { 1639 return zend_hash_add(&url_stream_wrappers_hash, protocol, protocol_len + 1, &wrapper, sizeof(wrapper), NULL); 1659 int protocol_len = strlen(protocol); local 1661 if (php_stream_wrapper_scheme_validate(protocol, protocol_len) == FAILURE) { 1669 return zend_hash_add(FG(stream_wrappers), protocol, protocol_len + 1, &wrapper, sizeof(wrapper), NULL);
|
| H A D | userspace.c | 494 int protocol_len, classname_len; local 499 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ss|l", &protocol, &protocol_len, &classname, &classname_len, &flags) == FAILURE) { 504 uwrap->protoname = estrndup(protocol, protocol_len); 518 if (zend_hash_exists(php_stream_get_url_stream_wrappers_hash(), protocol, protocol_len + 1)) { 539 int protocol_len; local 541 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &protocol, &protocol_len) == FAILURE) { 560 int protocol_len; local 564 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &protocol, &protocol_len) == FAILURE) { 574 if ((zend_hash_find(global_wrapper_hash, protocol, protocol_len + 1, (void**)&wrapperpp) == FAILURE) || !wrapperpp) {
|
Completed in 8 milliseconds