| /PHP_5_4/ext/intl/idn/ |
| H A D | idn.c | 137 const char *domain, int domain_len, uint32_t option, int mode, zval *idna_info) 142 int32_t buffer_capac = 255; /* no domain name may exceed this */ 155 len = uidna_nameToASCII_UTF8(uts46, domain, (int32_t)domain_len, 158 len = uidna_nameToUnicodeUTF8(uts46, domain, (int32_t)domain_len, 205 const char *domain, int domain_len, uint32_t option, int mode) 217 intl_convert_utf8_to_utf16(&ustring, &ustring_len, domain, domain_len, &status); 264 char *domain; local 273 &domain, &domain_len, &option, &variant, &idna_info) == FAILURE) { 294 php_intl_bad_args("empty domain name", mode TSRMLS_CC); 298 php_intl_bad_args("domain nam 136 php_intl_idn_to_46(INTERNAL_FUNCTION_PARAMETERS, const char *domain, int domain_len, uint32_t option, int mode, zval *idna_info) argument 204 php_intl_idn_to(INTERNAL_FUNCTION_PARAMETERS, const char *domain, int domain_len, uint32_t option, int mode) argument [all...] |
| /PHP_5_4/ext/gettext/ |
| H A D | gettext.c | 35 ZEND_ARG_INFO(0, domain) 68 ZEND_ARG_INFO(0, domain) 77 ZEND_ARG_INFO(0, domain) 87 ZEND_ARG_INFO(0, domain) 143 php_error_docref(NULL TSRMLS_CC, E_WARNING, "domain passed too long"); \ 160 /* {{{ proto string textdomain(string domain) 161 Set the textdomain to "domain". Returns the current domain */ 164 char *domain, *domain_name, *retval; local 167 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &domain, 207 char *domain, *msgid, *msgstr; local 227 char *domain, *msgid, *msgstr; local 248 char *domain, *dir; local 306 char *domain, *msgid1, *msgid2, *msgstr = NULL; local 332 char *domain, *msgid1, *msgid2, *msgstr = NULL; local 362 char *domain, *codeset, *retval = NULL; local [all...] |
| /PHP_5_4/ext/session/ |
| H A D | session.c | 1158 #define COOKIE_DOMAIN "; domain=" 1470 /* {{{ proto void session_set_cookie_params(int lifetime [, string path [, string domain [, bool secure[, bool httponly]]]]) 1475 char *path = NULL, *domain = NULL; local 1480 zend_parse_parameters(argc TSRMLS_CC, "Z|ssbb", &lifetime, &path, &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE) { 1491 if (domain) { 1492 zend_alter_ini_entry("session.cookie_domain", sizeof("session.cookie_domain"), domain, domain_len, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); 1516 add_assoc_string(return_value, "domain", PS(cookie_domain), 1); 2011 ZEND_ARG_INFO(0, domain)
|
| /PHP_5_4/ext/soap/ |
| H A D | php_http.c | 252 static int in_domain(const char *host, const char *domain) argument 254 if (domain[0] == '.') { 256 int l2 = strlen(domain); 258 return strcmp(host+l1-l2,domain) == 0; 263 return strcmp(host,domain) == 0; 920 } else if (strstr(options,"domain=") == options) { 921 eqpos = options + sizeof("domain=")-1;
|
| /PHP_5_4/ext/standard/ |
| H A D | head.c | 76 PHPAPI int php_setcookie(char *name, int name_len, char *value, int value_len, time_t expires, char *path, int path_len, char *domain, int domain_len, int secure, int url_encode, int httponly TSRMLS_DC) argument 107 if (domain) { 150 if (domain && domain_len > 0) { 151 strlcat(cookie, "; domain=", len + 100); 152 strlcat(cookie, domain, len + 100); 170 /* php_set_cookie(name, value, expires, path, domain, secure) */ 171 /* {{{ proto bool setcookie(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]]) 175 char *name, *value = NULL, *path = NULL, *domain = NULL; local 182 &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE) { 186 if (php_setcookie(name, name_len, value, value_len, expires, path, path_len, domain, domain_le 198 char *name, *value = NULL, *path = NULL, *domain = NULL; local [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/win32/ |
| H A D | sockets.c | 31 PHPAPI int socketpair(int domain, int type, int protocol, SOCKET sock[2]) argument 37 if(domain != AF_INET) { 45 sock[0] = socket(domain, type, protocol); 66 sock[1] = socket(domain, type, protocol);
|
| /PHP_5_4/ext/sockets/ |
| H A D | sockets.c | 191 ZEND_ARG_INFO(0, domain) 259 ZEND_ARG_INFO(0, domain) 636 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Host lookup failed: Non AF_INET6 domain returned on AF_INET6 socket"); 676 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Host lookup failed: Non AF_INET domain returned on AF_INET socket"); 1488 /* {{{ proto resource socket_create(int domain, int type, int protocol) U 1489 Creates an endpoint for communication in the domain specified by domain, of type specified by type */ 1505 php_error_docref(NULL TSRMLS_CC, E_WARNING, "invalid socket domain [%ld] specified for argument 1, assuming AF_INET", arg1); 2382 /* {{{ proto bool socket_create_pair(int domain, int type, int protocol, array &fd) U 2389 long domain, typ local [all...] |