Searched refs:config_has_key (Results 1 – 4 of 4) sorted by relevance
/system/bt/osi/test/ |
D | config_test.cc | 101 EXPECT_TRUE(config_has_key(config, CONFIG_DEFAULT_SECTION, "first_key")); in TEST_F() 110 EXPECT_TRUE(config_has_key(config, "DID", "recordNumber")); in TEST_F() 111 EXPECT_TRUE(config_has_key(config, "DID", "primaryRecord")); in TEST_F() 112 EXPECT_TRUE(config_has_key(config, "DID", "productId")); in TEST_F() 113 EXPECT_TRUE(config_has_key(config, "DID", "version")); in TEST_F() 119 EXPECT_FALSE(config_has_key(config, "DID_BAD", "primaryRecord")); in TEST_F() 120 EXPECT_FALSE(config_has_key(config, "DID", "primaryRecord_BAD")); in TEST_F() 121 EXPECT_FALSE(config_has_key(config, CONFIG_DEFAULT_SECTION, "primaryRecord")); in TEST_F() 141 EXPECT_FALSE(config_has_key(config, "DID", "productId")); in TEST_F() 155 EXPECT_FALSE(config_has_key(config, "DID", "productId")); in TEST_F()
|
/system/bt/btif/src/ |
D | btif_config.cc | 260 return config_has_key(config, section, key); in btif_config_exist() 270 bool ret = config_has_key(config, section, key); in btif_config_get_int() 479 if (!config_has_key(conf, section, "LinkKey") && in btif_config_remove_unpaired() 480 !config_has_key(conf, section, "LE_KEY_PENC") && in btif_config_remove_unpaired() 481 !config_has_key(conf, section, "LE_KEY_PID") && in btif_config_remove_unpaired() 482 !config_has_key(conf, section, "LE_KEY_PCSRK") && in btif_config_remove_unpaired() 483 !config_has_key(conf, section, "LE_KEY_LENC") && in btif_config_remove_unpaired() 484 !config_has_key(conf, section, "LE_KEY_LCSRK")) { in btif_config_remove_unpaired() 537 config_has_key(config, section, "Restricted")) { in btif_config_remove_restricted()
|
/system/bt/osi/include/ |
D | config.h | 61 bool config_has_key(const config_t* config, const char* section,
|
/system/bt/osi/src/ |
D | config.cc | 142 bool config_has_key(const config_t* config, const char* section, in config_has_key() function
|