Searched refs:sess (Results 1 - 25 of 31) sorted by relevance

12

/forgerock/web-agents-v4/source/varnish3/
H A Dvcc_if.h17 struct sess;
21 void vmod_init(struct sess *, struct vmod_priv *, const char *);
22 unsigned vmod_authenticate(struct sess *, struct vmod_priv *);
23 void vmod_done(struct sess *, struct vmod_priv *);
24 void vmod_ok(struct sess *, struct vmod_priv *);
25 void vmod_cleanup(struct sess *, struct vmod_priv *);
26 void vmod_request_cleanup(struct sess *, struct vmod_priv *);
H A Dvcc_if.c21 typedef void td_am_init(struct sess *, struct vmod_priv *, const char *);
22 typedef unsigned td_am_authenticate(struct sess *, struct vmod_priv *);
23 typedef void td_am_done(struct sess *, struct vmod_priv *);
24 typedef void td_am_ok(struct sess *, struct vmod_priv *);
25 typedef void td_am_cleanup(struct sess *, struct vmod_priv *);
26 typedef void td_am_request_cleanup(struct sess *, struct vmod_priv *);
51 "typedef void td_am_init(struct sess *, struct vmod_priv *, const char *);\n"
52 "typedef unsigned td_am_authenticate(struct sess *, struct vmod_priv *);\n"
53 "typedef void td_am_done(struct sess *, struct vmod_priv *);\n"
54 "typedef void td_am_ok(struct sess *, struc
[all...]
H A Dagent.c61 struct sess *ctx;
79 void vmod_init(struct sess *ctx, struct vmod_priv *priv, const char *conf) {
189 static struct request *create_request(struct sess *ctx) {
222 static struct request *get_request(struct sess *ctx) {
248 static const char *get_request_header(struct sess *ctx, const char *key) {
391 static char *VRT_INT_string(struct sess *ctx, long num) {
578 unsigned int vmod_authenticate(struct sess *ctx, struct vmod_priv *priv) {
652 static struct http *get_sess_http(struct sess *ctx, enum gethdr_e where) {
668 void vmod_cleanup(struct sess *ctx, struct vmod_priv *priv) {
675 void vmod_request_cleanup(struct sess *ct
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/share/
H A DSessionResponseParser.java198 Element sess = (Element) nodelist.item(i);
200 parseSessionExpirationTimeInfo(sess);
208 * @param sess session element.
210 private void parseSessionExpirationTimeInfo(Element sess) { argument
215 String temp = sess.getAttribute("sid");
219 temp = sess.getAttribute("expTime");
238 Element sess = (Element) nodelist.item(i);
240 SessionInfo sessionInfo = parseSessionElement(sess);
251 * @param sess Session Element.
254 static SessionInfo parseSessionElement(Element sess) { argument
[all...]
H A DSessionNotificationParser.java98 Element sess = (Element) nodelist.item(0);
99 if (sess != null) {
101 .parseSessionElement(sess));
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/share/
H A DSessionResponseParser.java191 Element sess = (Element) nodelist.item(i);
193 parseSessionExpirationTimeInfo(sess);
201 * @param sess session element.
203 private void parseSessionExpirationTimeInfo(Element sess) { argument
208 String temp = sess.getAttribute("sid");
212 temp = sess.getAttribute("expTime");
231 Element sess = (Element) nodelist.item(i);
233 SessionInfo sessionInfo = parseSessionElement(sess);
244 * @param sess Session Element.
247 static SessionInfo parseSessionElement(Element sess) { argument
[all...]
H A DSessionNotificationParser.java98 Element sess = (Element) nodelist.item(0);
99 if (sess != null) {
101 .parseSessionElement(sess));
/forgerock/openam-v13/openam-console/src/main/java/com/sun/identity/console/session/model/
H A DSMSessionCache.java110 Session sess = (Session)iter.next();
113 String userId = sess.getProperty(SMProfileModelImpl.USER_ID);
116 String id = sess.getID().toString();
121 sData.setTimeRemain(sess.getTimeLeft()/60);
122 sData.setMaxSessionTime(sess.getMaxSessionTime());
123 sData.setIdleTime(sess.getIdleTime()/60);
124 sData.setMaxIdleTime(sess.getMaxIdleTime());
/forgerock/openam/openam-console/src/main/java/com/sun/identity/console/session/model/
H A DSMSessionCache.java110 Session sess = (Session)iter.next();
113 String userId = sess.getProperty(SMProfileModelImpl.USER_ID);
116 String id = sess.getID().toString();
121 sData.setTimeRemain(sess.getTimeLeft()/60);
122 sData.setMaxSessionTime(sess.getMaxSessionTime());
123 sData.setIdleTime(sess.getIdleTime()/60);
124 sData.setMaxIdleTime(sess.getMaxIdleTime());
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/
H A DSessionEvent.java86 public SessionEvent(Session sess, int type, long time) { argument
87 session = sess;
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/dpro/session/service/
H A DSessionService.java601 InternalSession sess = cache.getBySessionID(token);
602 if (sess == null) {
603 sess = resolveRestrictedToken(token, true);
605 if (sess == null) {
608 return sess;
674 for (InternalSession sess : allValidSessions) {
678 String clientID = (!sess.isAppSession()) ?
679 DNUtils.DNtoName(sess.getClientID()) :
680 sess.getClientID();
697 sessions.add(sess);
1626 updateSessionMaps(InternalSession sess) argument
1676 checkIfShouldDestroy(InternalSession sess) argument
[all...]
/forgerock/openam-v13/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DSessionCommand.java152 Session sess = sData.session;
156 session.destroySession(sess);
283 Session sess = (Session)iter.next();
288 isCurr = sess.getProperty(SESSION_HANDLE_PROP)
297 String userId = sess.getProperty(USER_ID);
304 idx, userId, sess);
336 Session sess
341 sData.clientID = sess.getClientID();
343 sData.session = sess;
344 sData.timeRemain = String.valueOf(sess
[all...]
/forgerock/openam/openam-cli/openam-cli-impl/src/main/java/com/sun/identity/cli/
H A DSessionCommand.java155 Session sess = sData.session;
159 session.destroySession(sess);
282 for (Session sess : sessions) {
288 isCurr = sess.getProperty(SESSION_HANDLE_PROP)
297 String userId = sess.getProperty(USER_ID);
304 idx, userId, sess);
337 Session sess
342 sData.clientID = sess.getClientID();
344 sData.session = sess;
345 sData.timeRemain = String.valueOf(sess
[all...]
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionCookies.java144 Session sess = sessionCache.readSession(sid);
145 if (sess != null) {
146 cookieValue = sess.getProperty(lbCookieName);
H A DSessionPollerSender.java43 public SessionPollerSender(Session sess) { argument
44 this.session = sess;
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/
H A DSessionCookies.java159 Session sess = sessionCache.readSession(sid);
160 if (sess != null) {
161 cookieValue = sess.getProperty(lbCookieName);
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthUtils.java145 com.iplanet.dpro.session.service.InternalSession sess =
148 utilDebug.message("returning session : " + sess);
150 return sess;
329 com.iplanet.dpro.session.service.InternalSession sess = null;
395 // update loginState - requestHash , sess
400 sess = ad.getSession(sid);
402 utilDebug.message("AuthUtil :Session is .. : " + sess);
404 loginState.setSession(sess);
434 com.iplanet.dpro.session.service.InternalSession sess = null;
700 InternalSession sess
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/service/
H A DAuthUtils.java139 InternalSession sess = getLoginState(authContext).getSession();
141 utilDebug.message("returning session : " + sess);
143 return sess;
315 com.iplanet.dpro.session.service.InternalSession sess = null;
357 // update loginState - requestHash , sess
362 sess = AuthD.getSession(sessionId);
364 utilDebug.message("AuthUtil :Session is .. : " + sess);
366 loginState.setSession(sess);
630 InternalSession sess = loginState.getSession();
631 if (sess !
[all...]
/forgerock/openam/openam-core/src/main/java/com/iplanet/dpro/session/operations/strategies/
H A DLocalOperations.java229 InternalSession sess = sessionAccessManager.getInternalSession(token);
230 if (sess == null) {
231 sess = resolveRestrictedToken(token, true);
233 if (sess == null) {
236 return sess;
/forgerock/openam-v13/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAMLoginModule.java503 SSOToken sess = AuthD.getAuth().getSSOAuthSession();
504 if (sess == null) {
507 return sess;
1479 InternalSession sess = loginState.getSession();
1480 if (sess != null) {
1481 return sess.getID().toString();
1647 InternalSession sess = null;
1651 sess = getLoginState(null).getOldSession();
1653 sess = getLoginState("getUserSessionProperty()").getSession();
1656 if (sess !
[all...]
/forgerock/openam/openam-core/src/main/java/com/sun/identity/authentication/spi/
H A DAMLoginModule.java516 SSOToken sess = AuthD.getAuth().getSSOAuthSession();
517 if (sess == null) {
520 return sess;
1485 InternalSession sess = loginState.getSession();
1486 if (sess != null) {
1487 return sess.getID().toString();
1653 InternalSession sess = null;
1657 sess = getLoginState(null).getOldSession();
1659 sess = getLoginState("getUserSessionProperty()").getSession();
1662 if (sess !
[all...]
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/sso/providers/dpro/
H A DSSOProviderImpl.java368 * @param sess Session object associated with the token
374 public boolean isIPValid(Session sess, String clientIP) throws SSOException { argument
377 InetAddress sessIPAddress = InetAddress.getByName(sess
/forgerock/openam/openam-core/src/main/java/com/iplanet/sso/providers/dpro/
H A DSSOProviderImpl.java369 * @param sess Session object associated with the token
375 public boolean isIPValid(Session sess, String clientIP) throws SSOException { argument
378 InetAddress sessIPAddress = InetAddress.getByName(sess
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/liberty/
H A DLibertyManager.java2059 FSSession sess = null;
2061 sess = sMgr.getSession(ssoToken);
2064 if (sess != null) {
2065 partner = sess.getCurrentSessionPartner();
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/liberty/
H A DLibertyManager.java2059 FSSession sess = null;
2061 sess = sMgr.getSession(ssoToken);
2064 if (sess != null) {
2065 partner = sess.getCurrentSessionPartner();

Completed in 105 milliseconds

12