secure           1678 ext/session/session.c 	zend_bool secure = 0, httponly = 0;
secure           1681 ext/session/session.c 		zend_parse_parameters(argc TSRMLS_CC, "Z|ssbb", &lifetime, &path, &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE) {
secure           1697 ext/session/session.c 		zend_alter_ini_entry("session.cookie_secure", sizeof("session.cookie_secure"), secure ? "1" : "0", 1, PHP_INI_USER, PHP_INI_STAGE_RUNTIME);
secure           2257 ext/session/session.c 	ZEND_ARG_INFO(0, secure)
secure           1438 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, secure)
secure           1448 ext/standard/basic_functions.c 	ZEND_ARG_INFO(0, secure)
secure             76 ext/standard/head.c 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)
secure            159 ext/standard/head.c 	if (secure) {
secure            182 ext/standard/head.c 	zend_bool secure = 0, httponly = 0;
secure            187 ext/standard/head.c 							  &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE) {
secure            191 ext/standard/head.c 	if (php_setcookie(name, name_len, value, value_len, expires, path, path_len, domain, domain_len, secure, 1, httponly TSRMLS_CC) == SUCCESS) {
secure            205 ext/standard/head.c 	zend_bool secure = 0, httponly = 0;
secure            210 ext/standard/head.c 							  &path_len, &domain, &domain_len, &secure, &httponly) == FAILURE) {
secure            214 ext/standard/head.c 	if (php_setcookie(name, name_len, value, value_len, expires, path, path_len, domain, domain_len, secure, 0, httponly TSRMLS_CC) == SUCCESS) {
secure             34 ext/standard/head.h 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);