Home | History | Annotate | Download | only in fst

Lines Matching refs:session_id

81 static void fst_ctrl_iface_notify(struct fst_iface *f, u32 session_id,
149 session_id,
161 session_id,
171 static int session_get(const char *session_id, char *buf, size_t buflen)
178 id = strtoul(session_id, NULL, 0);
210 static int session_set(const char *session_id, char *buf, size_t buflen)
217 id = strtoul(session_id, &p, 0);
273 static int session_remove(const char *session_id, char *buf, size_t buflen)
279 id = strtoul(session_id, NULL, 0);
297 static int session_initiate(const char *session_id, char *buf, size_t buflen)
302 id = strtoul(session_id, NULL, 0);
320 static int session_respond(const char *session_id, char *buf, size_t buflen)
327 id = strtoul(session_id, &p, 0);
363 static int session_transfer(const char *session_id, char *buf, size_t buflen)
368 id = strtoul(session_id, NULL, 0);
387 static int session_teardown(const char *session_id, char *buf, size_t buflen)
392 id = strtoul(session_id, NULL, 0);
728 u32 session_id = s ? fst_session_get_id(s) : FST_INVALID_SESSION_ID;
730 fst_ctrl_iface_notify(i, session_id, event_type, extra);