Lines Matching refs:login

37 	zval *login, *password;  in proxy_authentication()  local
39 …if ((login = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_proxy_login", sizeof("_proxy_login")-1)) … in proxy_authentication()
40 Z_TYPE_P(login) == IS_STRING) { in proxy_authentication()
44 smart_str_appendl(&auth, Z_STRVAL_P(login), Z_STRLEN_P(login)); in proxy_authentication()
65 zval *login, *password; in basic_authentication() local
67 if ((login = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_login", sizeof("_login")-1)) != NULL && in basic_authentication()
68 Z_TYPE_P(login) == IS_STRING && in basic_authentication()
73 smart_str_appendl(&auth, Z_STRVAL_P(login), Z_STRLEN_P(login)); in basic_authentication()
538 zval *cookies, *login, *password; in make_http_soap_request() local
641 if ((login = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_login", sizeof("_login")-1)) != NULL && in make_http_soap_request()
642 Z_TYPE_P(login) == IS_STRING) { in make_http_soap_request()
668 PHP_MD5Update(&md5ctx, (unsigned char*)Z_STRVAL_P(login), Z_STRLEN_P(login)); in make_http_soap_request()
736 smart_str_appendl(&soap_headers, Z_STRVAL_P(login), Z_STRLEN_P(login)); in make_http_soap_request()
788 smart_str_appendl(&auth, Z_STRVAL_P(login), Z_STRLEN_P(login)); in make_http_soap_request()
1144 zval *digest, *login, *password; in make_http_soap_request() local
1151 (login = zend_hash_str_find(Z_OBJPROP_P(this_ptr), "_login", sizeof("_login")-1)) != NULL && in make_http_soap_request()
1152 Z_TYPE_P(login) == IS_STRING && in make_http_soap_request()