Lines Matching refs:assoc
633 $assoc = $this->_getAssociation($service_endpoint);
634 $r = new Auth_OpenID_AuthRequest($service_endpoint, $assoc);
945 $assoc = $this->store->getAssociation($server_url, $assoc_handle);
947 if ($assoc) {
948 if ($assoc->getExpiresIn() <= 0) {
959 if (!$assoc->checkMessageSignature($message)) {
1443 $assoc = $this->store->getAssociation($endpoint->server_url);
1445 if (($assoc === null) ||
1446 ($assoc->getExpiresIn() <= 0)) {
1448 $assoc = $this->_negotiateAssociation($endpoint);
1450 if ($assoc !== null) {
1452 $assoc);
1456 return $assoc;
1508 $assoc = $this->_requestAssociation(
1511 if (Auth_OpenID::isFailure($assoc)) {
1515 if (is_a($assoc, 'Auth_OpenID_ServerErrorContainer')) {
1516 $why = $assoc;
1527 $assoc = $this->_requestAssociation(
1530 if (is_a($assoc, 'Auth_OpenID_ServerErrorContainer')) {
1539 return $assoc;
1545 return $assoc;
1755 function Auth_OpenID_AuthRequest($endpoint, $assoc) argument
1757 $this->assoc = $assoc;
1904 if ($this->assoc) {
1906 $this->assoc->handle);