Lines Matching refs:password

37 	zval *login, *password;  in proxy_authentication()  local
46 …if ((password = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_password", sizeof("_proxy_passwo… in proxy_authentication()
47 Z_TYPE_P(password) == IS_STRING) { in proxy_authentication()
48 smart_str_appendl(&auth, Z_STRVAL_P(password), Z_STRLEN_P(password)); in proxy_authentication()
65 zval *login, *password; in basic_authentication() local
75 …if ((password = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password")-1)) != … in basic_authentication()
76 Z_TYPE_P(password) == IS_STRING) { in basic_authentication()
77 smart_str_appendl(&auth, Z_STRVAL_P(password), Z_STRLEN_P(password)); in basic_authentication()
539 zval *cookies, *login, *password; in make_http_soap_request() local
699 …if ((password = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password")-1)) != … in make_http_soap_request()
700 Z_TYPE_P(password) == IS_STRING) { in make_http_soap_request()
701 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(password), Z_STRLEN_P(password)); in make_http_soap_request()
814 …if ((password = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password")-1)) != … in make_http_soap_request()
815 Z_TYPE_P(password) == IS_STRING) { in make_http_soap_request()
816 smart_str_appendl(&auth, Z_STRVAL_P(password), Z_STRLEN_P(password)); in make_http_soap_request()
1163 zval *digest, *login, *password; in make_http_soap_request() local
1172 …(password = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_password", sizeof("_password")-1)) != NULL… in make_http_soap_request()
1173 Z_TYPE_P(password) == IS_STRING) { in make_http_soap_request()