Home | History | Annotate | Download | only in marvell

Lines Matching defs:session

190  * Allocate a new 'session' and return an encoded session id.  'sidp'
191 * contains our registration id, and should contain an encoded session
326 * Deallocate a session.
332 int session;
335 session = MVCESA_SESSION(sid);
336 KASSERTMSG(session >= 0, "session=%d", session);
337 KASSERTMSG(session < sc->sc_nsessions, "session=%d nsessions=%d",
338 session, sc->sc_nsessions);
340 memset(&sc->sc_sessions[session], 0, sizeof(sc->sc_sessions[session]));
351 int session;
354 session = MVCESA_SESSION(crp->crp_sid);
355 KASSERTMSG(session < sc->sc_nsessions, "session=%d nsessions=%d",
356 session, sc->sc_nsessions);
357 ses = &sc->sc_sessions[session];