| /PHP_5_3/ |
| H A D | config.sub | 1249 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ 1442 os=-domain
|
| /PHP_5_3/ext/standard/tests/file/windows_acls/ |
| H A D | common.inc | 37 $domain = getenv('USERDOMAIN'); 39 return $domain;
|
| /PHP_5_3/ext/standard/tests/mail/ |
| H A D | mail_include.inc | 5 $domain = "example.com"; 7 $username = "$admin_user@$domain"; 90 global $users, $domain; 95 . "To: $users[0]@$domain\r\n" 101 $envelope["to"] = "$users[0]@$domain";
|
| /PHP_5_3/ext/imap/tests/ |
| H A D | imap_include.inc | 5 $domain = "something.com"; 7 $username = "$admin_user@$domain"; 136 global $users, $domain; 141 . "To: $users[0]@$domain\r\n" 147 $envelope["to"] = "$users[0]@$domain";
|
| /PHP_5_3/ext/intl/idn/ |
| H A D | idn.c | 59 unsigned char* domain; local 70 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|l", (char **)&domain, &domain_len, &option) == FAILURE) { 75 intl_error_set( NULL, U_ILLEGAL_ARGUMENT_ERROR, "idn_to_ascii: empty domain name", 0 TSRMLS_CC ); 81 intl_convert_utf8_to_utf16(&ustring, &ustring_len, (char*) domain, domain_len, &status ); 126 /* {{{ proto int idn_to_ascii(string domain[, int options]) 127 Converts an Unicode domain to ASCII representation, as defined in the IDNA RFC */ 135 /* {{{ proto int idn_to_utf8(string domain[, int options]) 136 Converts an ASCII representation of the domain to Unicode (UTF-8), as defined in the IDNA RFC */
|
| /PHP_5_3/ext/intl/ |
| H A D | php_intl.c | 325 ZEND_ARG_INFO(0, domain) 331 ZEND_ARG_INFO(0, domain)
|
| /PHP_5_3/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_3/ext/session/ |
| H A D | session.c | 1220 #define COOKIE_DOMAIN "; domain=" 1532 /* {{{ proto void session_set_cookie_params(int lifetime [, string path [, string domain [, bool secure[, bool httponly]]]]) 1537 char *path = NULL, *domain = NULL; local 1542 zend_parse_parameters(argc TSRMLS_CC, "Z|ssbb", &lifetime, &path, &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE) { 1553 if (domain) { 1554 zend_alter_ini_entry("session.cookie_domain", sizeof("session.cookie_domain"), domain, domain_len, PHP_INI_USER, PHP_INI_STAGE_RUNTIME); 1578 add_assoc_string(return_value, "domain", PS(cookie_domain), 1); 2091 ZEND_ARG_INFO(0, domain)
|
| /PHP_5_3/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; 918 } else if (strstr(options,"domain=") == options) { 919 eqpos = options + sizeof("domain=")-1;
|
| /PHP_5_3/ext/sockets/ |
| H A D | sockets.c | 175 ZEND_ARG_INFO(0, domain) 243 ZEND_ARG_INFO(0, domain) 558 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Host lookup failed: Non AF_INET6 domain returned on AF_INET6 socket"); 598 php_error_docref(NULL TSRMLS_CC, E_WARNING, "Host lookup failed: Non AF_INET domain returned on AF_INET socket"); 1235 /* {{{ proto resource socket_create(int domain, int type, int protocol) U 1236 Creates an endpoint for communication in the domain specified by domain, of type specified by type */ 1252 php_error_docref(NULL TSRMLS_CC, E_WARNING, "invalid socket domain [%ld] specified for argument 1, assuming AF_INET", arg1); 1909 /* {{{ proto bool socket_create_pair(int domain, int type, int protocol, array &fd) U 1916 long domain, typ local [all...] |
| /PHP_5_3/ext/standard/ |
| H A D | basic_functions.c | 1462 ZEND_ARG_INFO(0, domain) 1471 ZEND_ARG_INFO(0, domain) 1945 ZEND_ARG_INFO(0, domain)
|
| H A D | head.c | 77 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 108 if (domain) { 151 if (domain && domain_len > 0) { 152 strlcat(cookie, "; domain=", len + 100); 153 strlcat(cookie, domain, len + 100); 171 /* php_set_cookie(name, value, expires, path, domain, secure) */ 172 /* {{{ proto bool setcookie(string name [, string value [, int expires [, string path [, string domain [, bool secure[, bool httponly]]]]]]) 176 char *name, *value = NULL, *path = NULL, *domain = NULL; local 183 &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE) { 187 if (php_setcookie(name, name_len, value, value_len, expires, path, path_len, domain, domain_le 199 char *name, *value = NULL, *path = NULL, *domain = NULL; local [all...] |
| H A D | head.h | 33 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);
|
| 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_3/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 37 if(domain != AF_INET) { 45 sock[0] = socket(domain, type, protocol); 66 sock[1] = socket(domain, type, protocol);
|
| /PHP_5_3/ext/libxml/ |
| H A D | libxml.c | 447 error_copy.domain = 0;
|