Home | History | Annotate | Download | only in mcap

Lines Matching refs:rcb

72     tMCA_RCB *p_rcb = &mca_cb.rcb[0];
99 tMCA_RCB *p_rcb = &mca_cb.rcb[0];
513 ** If no free RCB is available, it returns NULL.
525 if (mca_cb.rcb[i].p_cback == NULL)
527 p_rcb = &mca_cb.rcb[i];
539 ** Description This function deallocates the RCB with the given handle.
554 p_rcb = &mca_cb.rcb[handle];
581 ** Description This function converts a pointer to an RCB to
589 return(UINT8) (p_rcb - mca_cb.rcb + 1);
596 ** Description This function finds the RCB for a handle (tMCA_HANDLE).
597 ** It returns a pointer to the RCB. If no RCB matches the
607 if (handle && (handle<=MCA_NUM_REGS) && mca_cb.rcb[handle-1].p_cback)
609 p_rcb = &mca_cb.rcb[handle-1];