Lines Matching refs:cb
32 return (struct _strp_msg *)((void *)skb->cb + in _strp_msg()
70 strp->cb.abort_parser(strp, err); in strp_parser_err()
213 len = (*strp->cb.parse_msg)(strp, head); in __strp_recv()
301 strp->cb.rcv_msg(strp, head); in __strp_recv()
360 desc.error = strp->cb.read_sock_done(strp, desc.error); in strp_read_sock()
398 strp->cb.lock(strp); in do_strp_work()
410 strp->cb.unlock(strp); in do_strp_work()
425 strp->cb.lock(strp); in strp_msg_timeout()
426 strp->cb.abort_parser(strp, -ETIMEDOUT); in strp_msg_timeout()
427 strp->cb.unlock(strp); in strp_msg_timeout()
441 const struct strp_callbacks *cb) in strp_init() argument
444 if (!cb || !cb->rcv_msg || !cb->parse_msg) in strp_init()
459 if (!cb->lock || !cb->unlock) in strp_init()
467 strp->cb.lock = cb->lock ? : strp_sock_lock; in strp_init()
468 strp->cb.unlock = cb->unlock ? : strp_sock_unlock; in strp_init()
469 strp->cb.rcv_msg = cb->rcv_msg; in strp_init()
470 strp->cb.parse_msg = cb->parse_msg; in strp_init()
471 strp->cb.read_sock_done = cb->read_sock_done ? : default_read_sock_done; in strp_init()
472 strp->cb.abort_parser = cb->abort_parser ? : strp_abort_strp; in strp_init()