Searched refs:proto (Results 1 - 7 of 7) sorted by relevance
| /PHP_5_5/ext/ |
| H A D | ext_skel | 9 echo "$0 --extname=module [--proto=file] [--stubs=file] [--xml[=file]]" 13 echo " --proto=file file contains prototypes of functions to create" 39 --proto=?*) 40 proto=$optarg 96 if test -n "$proto"; then 97 cat $proto | awk -v extname=$extname -v stubs=$stubs -v stubfile=$stubfile -v xml=$xml -v full_xml=$full_xml -v i_know_what_to_do_shut_up_i_dont_need_your_help_mode=$no_help -f $skel_dir/create_stubs 259 if test -n "$proto"; then
|
| /PHP_5_5/ext/skeleton/ |
| H A D | create_stubs | 180 proto = "/* {{{ proto " types[i] " " funcs[i] "(" 216 if (j > 0) proto = proto " " 217 proto = proto "[" 230 if (j > 0) proto = proto ", " 231 proto = proto argtype [all...] |
| /PHP_5_5/main/streams/ |
| H A D | php_stream_transport.h | 29 typedef php_stream *(php_stream_transport_factory_func)(const char *proto, long protolen,
|
| H A D | xp_socket.c | 777 PHPAPI php_stream *php_stream_generic_socket_factory(const char *proto, long protolen, argument 788 if (strncmp(proto, "tcp", protolen) == 0) { 790 } else if (strncmp(proto, "udp", protolen) == 0) { 794 else if (strncmp(proto, "unix", protolen) == 0) { 796 } else if (strncmp(proto, "udg", protolen) == 0) {
|
| /PHP_5_5/ext/openssl/ |
| H A D | xp_ssl.c | 903 php_stream *php_openssl_ssl_socket_factory(const char *proto, long protolen, argument 940 if (strncmp(proto, "ssl", protolen) == 0) { 943 } else if (strncmp(proto, "sslv2", protolen) == 0) { 951 } else if (strncmp(proto, "sslv3", protolen) == 0) { 954 } else if (strncmp(proto, "tls", protolen) == 0) {
|
| /PHP_5_5/ext/standard/ |
| H A D | basic_functions.c | 828 ZEND_ARG_INFO(0, proto) 3848 /* {{{ proto mixed constant(string const_name) 3867 /* {{{ proto string inet_ntop(string in_addr) 3900 /* {{{ proto string inet_pton(string ip_address) 3937 /* {{{ proto int ip2long(string ip_address) 3975 /* {{{ proto string long2ip(int proper_address) 4011 /* {{{ proto string getenv(string varname) 4069 /* {{{ proto bool putenv(string setting) 4237 /* {{{ proto array getopt(string options [, array longopts]) 4428 /* {{{ proto voi 5610 char *name, *proto; local 5643 char *proto; local 5692 long proto; local [all...] |
| /PHP_5_5/Zend/ |
| H A D | zend_compile.c | 3116 static zend_bool zend_do_perform_implementation_check(const zend_function *fe, const zend_function *proto TSRMLS_DC) /* {{{ */ 3124 if (!proto || (!proto->common.arg_info && proto->common.type != ZEND_USER_FUNCTION)) { 3132 && ((proto->common.scope->ce_flags & ZEND_ACC_INTERFACE) == 0 3133 && (proto->common.fn_flags & ZEND_ACC_ABSTRACT) == 0)) { 3138 if ((fe->common.fn_flags & ZEND_ACC_PRIVATE) && (proto->common.fn_flags & ZEND_ACC_PRIVATE)) { 3143 if (proto->common.required_num_args < fe->common.required_num_args 3144 || proto->common.num_args > fe->common.num_args) { 3149 && (proto [all...] |
Completed in 20 milliseconds