Home | History | Annotate | Download | only in btm

Lines Matching full:p_name

1552 tBTM_STATUS BTM_SetLocalDeviceName (char *p_name)
1556 if (!p_name || !p_name[0] || (strlen ((char *)p_name) > BD_NAME_LEN))
1566 if (p != (UINT8 *)p_name)
1568 BCM_STRNCPY_S(btm_cb.cfg.bd_name, sizeof(btm_cb.cfg.bd_name), p_name, BTM_MAX_LOC_BD_NAME_LEN);
1572 p = (UINT8 *)p_name;
1590 ** If success, BTM_SUCCESS is returned and p_name points stored
1593 ** is returned and p_name is set to NULL
1596 tBTM_STATUS BTM_ReadLocalDeviceName (char **p_name)
1599 *p_name = btm_cb.cfg.bd_name;
1602 *p_name = NULL;