Home | History | Annotate | Download | only in mcap

Lines Matching refs:handle

62 ** Description      This function returns the handle for the given control
65 ** Returns the MCA handle.
71 tMCA_HANDLE handle = 0;
78 handle = i+1;
82 return handle;
89 ** Description This function returns the handle for the given data
92 ** Returns the MCA handle.
98 tMCA_HANDLE handle = 0;
105 handle = i+1;
109 return handle;
451 /* if control channel, handle control message */
534 ** Description This function deallocates the RCB with the given handle.
539 void mca_rcb_dealloc(tMCA_HANDLE handle)
546 if (handle && (handle
548 handle--;
549 p_rcb = &mca_cb.rcb[handle];
552 p_ccb = &mca_cb.ccb[handle*MCA_NUM_LINKS];
566 MCA_TRACE_DEBUG1("Reset MCA_RCB index=%d",handle);
577 ** a handle (tMCA_HANDLE). It returns the handle.
591 ** Description This function finds the RCB for a handle (tMCA_HANDLE).
593 ** handle it returns NULL.
598 tMCA_RCB *mca_rcb_by_handle(tMCA_HANDLE handle)
602 if (handle && (handle<=MCA_NUM_REGS) && mca_cb.rcb[handle-1].p_cback)
604 p_rcb = &mca_cb.rcb[handle-1];