Lines Matching defs:p_clreg
596 tBTA_GATTC_RCB *p_clreg;
606 if ((p_clreg = bta_gattc_cl_get_regcb(client_if)) != NULL)
610 if ( p_clreg->notif_reg[i].in_use &&
611 !memcmp(p_clreg->notif_reg[i].remote_bda, bda, BD_ADDR_LEN) &&
612 p_clreg->notif_reg[i].handle == handle)
623 if (!p_clreg->notif_reg[i].in_use)
625 memset((void *)&p_clreg->notif_reg[i], 0, sizeof(tBTA_GATTC_NOTIF_REG));
627 p_clreg->notif_reg[i].in_use = TRUE;
628 memcpy(p_clreg->notif_reg[i].remote_bda, bda, BD_ADDR_LEN);
630 p_clreg->notif_reg[i].handle = handle;
671 tBTA_GATTC_RCB *p_clreg = bta_gattc_cl_get_regcb(client_if);
672 if (p_clreg == NULL) {
679 if (p_clreg->notif_reg[i].in_use &&
680 !memcmp(p_clreg->notif_reg[i].remote_bda, bda, BD_ADDR_LEN) &&
681 p_clreg->notif_reg[i].handle == handle) {
684 memset(&p_clreg->notif_reg[i], 0, sizeof(tBTA_GATTC_NOTIF_REG));