OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:config_has_key
(Results
1 - 4
of
4
) sorted by null
/system/bt/osi/test/
config_test.cc
101
EXPECT_TRUE(
config_has_key
(config, CONFIG_DEFAULT_SECTION, "first_key"));
110
EXPECT_TRUE(
config_has_key
(config, "DID", "recordNumber"));
111
EXPECT_TRUE(
config_has_key
(config, "DID", "primaryRecord"));
112
EXPECT_TRUE(
config_has_key
(config, "DID", "productId"));
113
EXPECT_TRUE(
config_has_key
(config, "DID", "version"));
119
EXPECT_FALSE(
config_has_key
(config, "DID_BAD", "primaryRecord"));
120
EXPECT_FALSE(
config_has_key
(config, "DID", "primaryRecord_BAD"));
121
EXPECT_FALSE(
config_has_key
(config, CONFIG_DEFAULT_SECTION, "primaryRecord"));
141
EXPECT_FALSE(
config_has_key
(config, "DID", "productId"));
155
EXPECT_FALSE(
config_has_key
(config, "DID", "productId"))
[
all
...]
/system/bt/btif/src/
btif_config.cc
255
return
config_has_key
(config, section, key);
265
bool ret =
config_has_key
(config, section, key);
474
if (!
config_has_key
(conf, section, "LinkKey") &&
475
!
config_has_key
(conf, section, "LE_KEY_PENC") &&
476
!
config_has_key
(conf, section, "LE_KEY_PID") &&
477
!
config_has_key
(conf, section, "LE_KEY_PCSRK") &&
478
!
config_has_key
(conf, section, "LE_KEY_LENC") &&
479
!
config_has_key
(conf, section, "LE_KEY_LCSRK")) {
532
config_has_key
(config, section, "Restricted")) {
/system/bt/osi/include/
config.h
61
bool
config_has_key
(const config_t* config, const char* section,
/system/bt/osi/src/
config.cc
142
bool
config_has_key
(const config_t* config, const char* section,
function
Completed in 280 milliseconds