Home | History | Annotate | Download | only in gatt

Lines Matching refs:p_reg

150     tGATT_REG              *p_reg = gatt_get_regcb(gatt_if);
156 if (p_reg == NULL)
162 p_app_uuid128 = &p_reg->app_uuid128;
401 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
406 if (p_reg == NULL)
411 p_app_uuid128 = &p_reg->app_uuid128;
471 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
477 if (p_reg == NULL)
605 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
610 if ( (p_reg == NULL) || (p_tcb == NULL))
676 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
681 if ( (p_reg == NULL) || (p_tcb == NULL))
725 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
731 if ( (p_reg == NULL) || (p_tcb == NULL))
779 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
791 if ( (p_tcb == NULL) || (p_reg==NULL) || (mtu < GATT_DEF_BLE_MTU_SIZE) || (mtu > GATT_MAX_MTU_SIZE))
834 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
839 if ( (p_tcb == NULL) || (p_reg==NULL) ||(p_param == NULL) ||
903 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
908 if ( (p_tcb == NULL) || (p_reg==NULL) || (p_read == NULL) || ((type >= GATT_READ_MAX) || (type == 0)))
991 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
993 if ( (p_tcb == NULL) || (p_reg==NULL) || (p_write == NULL) ||
1065 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
1069 if ( (p_tcb == NULL) || (p_reg==NULL) )
1197 tGATT_REG *p_reg;
1204 for (i_gatt_if = 0, p_reg = gatt_cb.cl_rcb; i_gatt_if < GATT_MAX_APPS; i_gatt_if++, p_reg++)
1206 if (p_reg->in_use && !memcmp(p_app_uuid128->uu.uuid128, p_reg->app_uuid128.uu.uuid128, LEN_UUID_128))
1213 for (i_gatt_if = 0, p_reg = gatt_cb.cl_rcb; i_gatt_if < GATT_MAX_APPS; i_gatt_if++, p_reg++)
1215 if (!p_reg->in_use)
1217 memset(p_reg, 0 , sizeof(tGATT_REG));
1219 p_reg->app_uuid128 = *p_app_uuid128;
1221 p_reg->gatt_if = (tGATT_IF)i_gatt_if;
1222 p_reg->app_cb = *p_cb_info;
1223 p_reg->in_use = TRUE;
1246 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
1254 if ( (gatt_if == 0) || (p_reg == NULL) )
1274 gatt_free_srvc_db_buffer_app_id(&p_reg->app_uuid128);
1295 (p_clcb->p_reg->gatt_if == gatt_if) &&
1312 memset (p_reg, 0, sizeof(tGATT_REG));
1331 tGATT_REG *p_reg;
1339 if ((p_reg = gatt_get_regcb(gatt_if)) != NULL)
1341 p_reg = &gatt_cb.cl_rcb[gatt_if - 1];
1346 if (p_reg->app_cb.p_conn_cb && p_tcb)
1349 (*p_reg->app_cb.p_conn_cb)(gatt_if, bda, conn_id, TRUE, 0, transport);
1373 tGATT_REG *p_reg;
1379 if ((p_reg = gatt_get_regcb(gatt_if)) == NULL)
1386 status = gatt_act_connect (p_reg, bd_addr, transport);
1416 tGATT_REG *p_reg;
1424 if ((gatt_if != 0) && ((p_reg = gatt_get_regcb(gatt_if)) == NULL))
1536 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
1543 if (p_tcb && p_reg )
1572 tGATT_REG *p_reg = gatt_get_regcb(gatt_if);
1576 if (p_reg && p_tcb && (gatt_get_ch_state(p_tcb) == GATT_CH_OPEN) )
1604 tGATT_REG *p_reg;
1610 if ((p_reg = gatt_get_regcb(gatt_if)) == NULL)
1622 p_reg->listening = start ? GATT_LISTEN_TO_ALL : GATT_LISTEN_TO_NONE;