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];
508 ** If no free RCB is available, it returns NULL.
520 if (mca_cb.rcb[i].p_cback == NULL)
522 p_rcb = &mca_cb.rcb[i];
534 ** Description This function deallocates the RCB with the given handle.
549 p_rcb = &mca_cb.rcb[handle];
576 ** Description This function converts a pointer to an RCB to
584 return(UINT8) (p_rcb - mca_cb.rcb + 1);
591 ** Description This function finds the RCB for a handle (tMCA_HANDLE).
592 ** It returns a pointer to the RCB. If no RCB matches the
602 if (handle && (handle<=MCA_NUM_REGS) && mca_cb.rcb[handle-1].p_cback)
604 p_rcb = &mca_cb.rcb[handle-1];