Lines Matching refs:txwin
566 struct vas_window *txwin; in nx842_exec_vas() local
589 txwin = this_cpu_read(cpu_txwin); in nx842_exec_vas()
601 ret = vas_paste_crb(txwin, 0, 1); in nx842_exec_vas()
686 struct vas_window *txwin = NULL; in nx_alloc_txwin() local
699 txwin = vas_tx_win_open(coproc->vas.id, coproc->ct, &txattr); in nx_alloc_txwin()
700 if (IS_ERR(txwin)) in nx_alloc_txwin()
702 PTR_ERR(txwin)); in nx_alloc_txwin()
704 return txwin; in nx_alloc_txwin()
719 struct vas_window *txwin = NULL; in nx_open_percpu_txwins() local
734 txwin = nx_alloc_txwin(coproc); in nx_open_percpu_txwins()
735 if (IS_ERR(txwin)) in nx_open_percpu_txwins()
736 return PTR_ERR(txwin); in nx_open_percpu_txwins()
738 per_cpu(cpu_txwin, i) = txwin; in nx_open_percpu_txwins()
996 struct vas_window *txwin; in nx_delete_coprocs() local
1003 txwin = per_cpu(cpu_txwin, i); in nx_delete_coprocs()
1004 if (txwin) in nx_delete_coprocs()
1005 vas_win_close(txwin); in nx_delete_coprocs()