Lines Matching refs:password

37 	zval **login, **password;  in proxy_authentication()  local
47 …BJPROP_P(this_ptr), "_proxy_password", sizeof("_proxy_password"), (void **)&password) == SUCCESS && in proxy_authentication()
48 Z_TYPE_PP(password) == IS_STRING) { in proxy_authentication()
49 smart_str_appendl(&auth, Z_STRVAL_PP(password), Z_STRLEN_PP(password)); in proxy_authentication()
66 zval **login, **password; in basic_authentication() local
77 …if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password"), (void **)&password) ==… in basic_authentication()
78 Z_TYPE_PP(password) == IS_STRING) { in basic_authentication()
79 smart_str_appendl(&auth, Z_STRVAL_PP(password), Z_STRLEN_PP(password)); in basic_authentication()
529 zval **cookies, **login, **password; in make_http_soap_request() local
666 …if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password"), (void **)&password) ==… in make_http_soap_request()
667 Z_TYPE_PP(password) == IS_STRING) { in make_http_soap_request()
668 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_PP(password), Z_STRLEN_PP(password)); in make_http_soap_request()
792 …if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password"), (void **)&password) ==… in make_http_soap_request()
793 Z_TYPE_PP(password) == IS_STRING) { in make_http_soap_request()
794 smart_str_appendl(&auth, Z_STRVAL_PP(password), Z_STRLEN_PP(password)); in make_http_soap_request()
1139 zval **digest, **login, **password; in make_http_soap_request() local
1148 …zend_hash_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password"), (void **)&password) == SUC… in make_http_soap_request()
1149 Z_TYPE_PP(password) == IS_STRING) { in make_http_soap_request()