/PHP-7.3/sapi/phpdbg/ |
H A D | phpdbg_io.c | 261 struct addrinfo hints, *res = NULL; local 266 memset(&hints, 0, sizeof hints); 268 hints.ai_flags = AI_PASSIVE; 270 hints.ai_flags = AI_NUMERICSERV; 272 hints.ai_family = AF_UNSPEC; 273 hints.ai_socktype = SOCK_STREAM; 277 hints.ai_family = AF_INET; 279 hints.ai_flags |= AI_NUMERICHOST; 284 hints.ai_family = AF_INET6; 286 hints.ai_flags |= AI_NUMERICHOST; [all …]
|
/PHP-7.3/ext/sockets/ |
H A D | sockaddr_conv.c | 20 struct addrinfo hints; in php_set_inet6_addr() local 30 memset(&hints, 0, sizeof(struct addrinfo)); in php_set_inet6_addr() 31 hints.ai_family = AF_INET6; in php_set_inet6_addr() 33 hints.ai_flags = AI_V4MAPPED | AI_ADDRCONFIG; in php_set_inet6_addr() 35 hints.ai_flags = AI_ADDRCONFIG; in php_set_inet6_addr() 37 getaddrinfo(string, NULL, &hints, &addrinfo); in php_set_inet6_addr()
|
H A D | sockets.c | 279 ZEND_ARG_INFO(0, hints) 2583 struct addrinfo hints, *result, *rp, *res; local 2585 memset(&hints, 0, sizeof(hints)); 2595 hints.ai_flags = zval_get_long(hint); 2597 hints.ai_socktype = zval_get_long(hint); 2599 hints.ai_protocol = zval_get_long(hint); 2601 hints.ai_family = zval_get_long(hint); 2609 if (getaddrinfo(ZSTR_VAL(hostname), service, &hints, &result) != 0) {
|
/PHP-7.3/tests/classes/ |
H A D | type_hinting_004.phpt | 2 Ensure type hints are enforced for functions invoked as callbacks. 11 echo "---> Type hints with callback function:\n"; 50 echo "\n\n---> Type hints with callback static method:\n"; 99 echo "\n\n---> Type hints with callback instance method:\n"; 151 ---> Type hints with callback function: 162 ---> Type hints with callback static method: 173 ---> Type hints with callback instance method:
|
H A D | type_hinting_005d.phpt | 2 Check type hint compatibility in overrides with array hints.
|
H A D | type_hinting_005c.phpt | 2 Check type hint compatibility in overrides with array hints.
|
H A D | autoload_009.phpt | 2 Ensure type hints for unknown types do not trigger autoload.
|
H A D | type_hinting_005a.phpt | 2 Check type hint compatibility in overrides with array hints.
|
/PHP-7.3/Zend/tests/type_declarations/ |
H A D | default_boolean_hint_values.phpt | 2 Default values for boolean hints should work
|
/PHP-7.3/ext/reflection/tests/ |
H A D | bug26695.phpt | 2 Reflection Bug #26695 (Reflection API does not recognize mixed-case class hints)
|
/PHP-7.3/sapi/fpm/fpm/ |
H A D | fpm_sockets.c | 272 struct addrinfo hints, *servinfo, *p; in fpm_socket_af_inet_socket_by_addr() local 277 memset(&hints, 0, sizeof hints); in fpm_socket_af_inet_socket_by_addr() 278 hints.ai_family = AF_UNSPEC; in fpm_socket_af_inet_socket_by_addr() 279 hints.ai_socktype = SOCK_STREAM; in fpm_socket_af_inet_socket_by_addr() 281 if ((status = getaddrinfo(addr, port, &hints, &servinfo)) != 0) { in fpm_socket_af_inet_socket_by_addr()
|
/PHP-7.3/main/ |
H A D | network.c | 165 struct addrinfo hints, *res, *sai; in php_network_getaddresses() local 175 memset(&hints, '\0', sizeof(hints)); in php_network_getaddresses() 177 hints.ai_family = AF_INET; /* default to regular inet (see below) */ in php_network_getaddresses() 178 hints.ai_socktype = socktype; in php_network_getaddresses() 198 hints.ai_family = ipv6_borked ? AF_INET : AF_UNSPEC; in php_network_getaddresses() 201 if ((n = getaddrinfo(host, NULL, &hints, &res))) { in php_network_getaddresses()
|
/PHP-7.3/ |
H A D | README.MAILINGLIST_RULES | 54 The next few rules are more some general hints: 74 Finally, additional hints on how to behave inside the virtual community can be
|
H A D | configure.ac | 726 struct addrinfo *ai, *pai, hints; 728 memset(&hints, 0, sizeof(hints)); 729 hints.ai_flags = AI_NUMERICHOST; 731 if (getaddrinfo("127.0.0.1", 0, &hints, &ai) < 0) {
|
/PHP-7.3/sapi/litespeed/ |
H A D | lsapilib.c | 2615 struct addrinfo *res, hints; in LSAPI_ParseSockAddr() local 2685 memset(&hints, 0, sizeof(hints)); in LSAPI_ParseSockAddr() 2687 hints.ai_family = pAddr->sa_family; in LSAPI_ParseSockAddr() 2688 hints.ai_socktype = SOCK_STREAM; in LSAPI_ParseSockAddr() 2689 hints.ai_protocol = IPPROTO_TCP; in LSAPI_ParseSockAddr() 2691 if ( getaddrinfo(p, NULL, &hints, &res) ) in LSAPI_ParseSockAddr()
|
/PHP-7.3/ext/fileinfo/tests/ |
H A D | magic | 1878 # Provides content hints for version 0 files. Assumes that the root 2351 # The SVR4 "cpio(4)" hints that there are additional formats, but they 12112 # /var/run/ld.so.hints 12114 0 lelong 011421044151 ld.so hints file (Little Endian 12117 0 belong 011421044151 ld.so hints file (Big Endian
|
H A D | magic私はガラスを食べられます | 1878 # Provides content hints for version 0 files. Assumes that the root 2351 # The SVR4 "cpio(4)" hints that there are additional formats, but they 12112 # /var/run/ld.so.hints 12114 0 lelong 011421044151 ld.so hints file (Little Endian 12117 0 belong 011421044151 ld.so hints file (Big Endian
|
/PHP-7.3/ext/sqlite3/libsqlite/ |
H A D | sqlite3.c | 62693 u8 hints; /* As configured by CursorSetHints() */ 64131 pCur->hints = x; 71562 pCur->hints&BTREE_BULKLOAD); 73583 return (pCsr->hints & mask)!=0;
|