Lines Matching refs:digest

634 			zval **digest;  in make_http_soap_request()  local
637 …if (zend_hash_find(Z_OBJPROP_P(this_ptr), "_digest", sizeof("_digest"), (void **)&digest) == SUCCE… in make_http_soap_request()
638 if (Z_TYPE_PP(digest) == IS_ARRAY) { in make_http_soap_request()
649 if (zend_hash_find(Z_ARRVAL_PP(digest), "nc", sizeof("nc"), (void **)&tmp) == SUCCESS && in make_http_soap_request()
654 add_assoc_long(*digest, "nc", 1); in make_http_soap_request()
661 if (zend_hash_find(Z_ARRVAL_PP(digest), "realm", sizeof("realm"), (void **)&tmp) == SUCCESS && in make_http_soap_request()
672 …if (zend_hash_find(Z_ARRVAL_PP(digest), "algorithm", sizeof("algorithm"), (void **)&tmp) == SUCCES… in make_http_soap_request()
679 if (zend_hash_find(Z_ARRVAL_PP(digest), "nonce", sizeof("nonce"), (void **)&tmp) == SUCCESS && in make_http_soap_request()
717 if (zend_hash_find(Z_ARRVAL_PP(digest), "nonce", sizeof("nonce"), (void **)&tmp) == SUCCESS && in make_http_soap_request()
722 if (zend_hash_find(Z_ARRVAL_PP(digest), "qop", sizeof("qop"), (void **)&tmp) == SUCCESS && in make_http_soap_request()
738 if (zend_hash_find(Z_ARRVAL_PP(digest), "realm", sizeof("realm"), (void **)&tmp) == SUCCESS && in make_http_soap_request()
743 if (zend_hash_find(Z_ARRVAL_PP(digest), "nonce", sizeof("nonce"), (void **)&tmp) == SUCCESS && in make_http_soap_request()
762 if (zend_hash_find(Z_ARRVAL_PP(digest), "qop", sizeof("qop"), (void **)&tmp) == SUCCESS && in make_http_soap_request()
773 … if (zend_hash_find(Z_ARRVAL_PP(digest), "opaque", sizeof("opaque"), (void **)&tmp) == SUCCESS && in make_http_soap_request()
778 …if (zend_hash_find(Z_ARRVAL_PP(digest), "algorithm", sizeof("algorithm"), (void **)&tmp) == SUCCES… in make_http_soap_request()
1139 zval **digest, **login, **password; in make_http_soap_request() local
1144 …(zend_hash_find(Z_OBJPROP_P(this_ptr), "_digest", sizeof("_digest"), (void **)&digest) == FAILURE … in make_http_soap_request()
1145 Z_TYPE_PP(digest) != IS_ARRAY) && in make_http_soap_request()
1151 zval *digest = NULL; in make_http_soap_request() local
1181 if (digest == NULL) { in make_http_soap_request()
1182 ALLOC_INIT_ZVAL(digest); in make_http_soap_request()
1183 array_init(digest); in make_http_soap_request()
1185 add_assoc_string(digest, name, val ,1); in make_http_soap_request()
1189 if (digest != NULL) { in make_http_soap_request()
1192 Z_DELREF_P(digest); in make_http_soap_request()
1193 add_property_zval_ex(this_ptr, "_digest", sizeof("_digest"), digest TSRMLS_CC); in make_http_soap_request()