Lines Matching refs:peek_ctx
495 struct proc_ctx *peek_ctx; in ZTEST() local
503 peek_ctx = llcp_lr_peek(&conn); in ZTEST()
504 zassert_is_null(peek_ctx, NULL); in ZTEST()
510 peek_ctx = (struct proc_ctx *)sys_slist_peek_head(&conn.llcp.local.pend_proc_list); in ZTEST()
511 zassert_equal_ptr(peek_ctx, &ctx, NULL); in ZTEST()
513 peek_ctx = llcp_lr_peek(&conn); in ZTEST()
514 zassert_equal_ptr(peek_ctx, &ctx, NULL); in ZTEST()
519 peek_ctx = llcp_lr_peek(&conn); in ZTEST()
520 zassert_is_null(peek_ctx, NULL); in ZTEST()
529 struct proc_ctx *peek_ctx; in ZTEST() local
537 peek_ctx = llcp_rr_peek(&conn); in ZTEST()
538 zassert_is_null(peek_ctx, NULL); in ZTEST()
544 peek_ctx = (struct proc_ctx *)sys_slist_peek_head(&conn.llcp.remote.pend_proc_list); in ZTEST()
545 zassert_equal_ptr(peek_ctx, &ctx, NULL); in ZTEST()
547 peek_ctx = llcp_rr_peek(&conn); in ZTEST()
548 zassert_equal_ptr(peek_ctx, &ctx, NULL); in ZTEST()
553 peek_ctx = llcp_rr_peek(&conn); in ZTEST()
554 zassert_is_null(peek_ctx, NULL); in ZTEST()