Lines Matching refs:txid
808 smb_server_cancel_event(smb_server_t *sv, uint32_t txid) in smb_server_cancel_event() argument
810 smb_event_cancel(sv, txid); in smb_server_cancel_event()
817 smb_event_notify(sv, ioc->txid); in smb_server_notify_event()
2510 smb_event_cancel(smb_server_t *sv, uint32_t txid) in smb_event_cancel() argument
2524 if (txid == 0 || event->se_txid == txid) { in smb_event_cancel()
2531 if (txid != 0) in smb_event_cancel()
2546 smb_event_notify(smb_server_t *sv, uint32_t txid) in smb_event_notify() argument
2560 if (txid == 0 || event->se_txid == txid) { in smb_event_notify()
2566 if (txid != 0) in smb_event_notify()
2586 static uint32_t txid; in smb_event_alloc_txid() local
2591 if (txid == 0) in smb_event_alloc_txid()
2592 txid = ddi_get_lbolt() << 11; in smb_event_alloc_txid()
2595 ++txid; in smb_event_alloc_txid()
2596 } while (txid == 0 || txid == (uint32_t)-1); in smb_event_alloc_txid()
2598 txid_ret = txid; in smb_event_alloc_txid()