Lines Matching defs:session
232 * session.
263 /* A new session has been created, add it to the list. */
264 sess->session_id = msg_arg->session;
275 /* Close session again to avoid leakage */
276 optee_close_session(ctx, msg_arg->session);
278 arg->session = msg_arg->session;
288 int optee_close_session(struct tee_context *ctx, u32 session)
296 /* Check that the session is valid and remove it from the list */
298 sess = find_session(ctxdata, session);
311 msg_arg->session = session;
328 /* Check that the session is valid */
330 sess = find_session(ctxdata, arg->session);
340 msg_arg->session = arg->session;
364 int optee_cancel_req(struct tee_context *ctx, u32 cancel_id, u32 session)
372 /* Check that the session is valid */
374 sess = find_session(ctxdata, session);
384 msg_arg->session = session;