Home | History | Annotate | Download | only in mcap

Lines Matching full: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;
454 /* if control channel, handle control message */
539 ** Description This function deallocates the RCB with the given handle.
544 handle)
551 if (handle && (handle<=MCA_NUM_REGS))
553 handle--;
554 p_rcb = &mca_cb.rcb[handle];
557 p_ccb = &mca_cb.ccb[handle*MCA_NUM_LINKS];
571 MCA_TRACE_DEBUG("%s() - reset MCA_RCB index=%d", __func__, handle);
582 ** a handle (tMCA_HANDLE). It returns the handle.
596 ** Description This function finds the RCB for a handle (tMCA_HANDLE).
598 ** handle it returns NULL.
603 tMCA_RCB *mca_rcb_by_handle(tMCA_HANDLE handle)
607 if (handle && (handle<=MCA_NUM_REGS) && mca_cb.rcb[handle-1].p_cback)
609 p_rcb = &mca_cb.rcb[handle-1];