Lines Matching refs:pch
2832 char* pch; in btif_dm_get_smp_config() local
2838 pch = strtok(conf, ","); in btif_dm_get_smp_config()
2839 if (pch != NULL) in btif_dm_get_smp_config()
2840 p_cfg->ble_auth_req = (uint8_t)strtoul(pch, &endptr, 16); in btif_dm_get_smp_config()
2844 pch = strtok(NULL, ","); in btif_dm_get_smp_config()
2845 if (pch != NULL) in btif_dm_get_smp_config()
2846 p_cfg->ble_io_cap = (uint8_t)strtoul(pch, &endptr, 16); in btif_dm_get_smp_config()
2850 pch = strtok(NULL, ","); in btif_dm_get_smp_config()
2851 if (pch != NULL) in btif_dm_get_smp_config()
2852 p_cfg->ble_init_key = (uint8_t)strtoul(pch, &endptr, 16); in btif_dm_get_smp_config()
2856 pch = strtok(NULL, ","); in btif_dm_get_smp_config()
2857 if (pch != NULL) in btif_dm_get_smp_config()
2858 p_cfg->ble_resp_key = (uint8_t)strtoul(pch, &endptr, 16); in btif_dm_get_smp_config()
2862 pch = strtok(NULL, ","); in btif_dm_get_smp_config()
2863 if (pch != NULL) in btif_dm_get_smp_config()
2864 p_cfg->ble_max_key_size = (uint8_t)strtoul(pch, &endptr, 16); in btif_dm_get_smp_config()