OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:config_has_key
(Results
1 - 4
of
4
) sorted by null
/system/bt/osi/test/
config_test.cpp
104
EXPECT_TRUE(
config_has_key
(config, CONFIG_DEFAULT_SECTION, "first_key"));
111
EXPECT_TRUE(
config_has_key
(config, "DID", "recordNumber"));
112
EXPECT_TRUE(
config_has_key
(config, "DID", "primaryRecord"));
113
EXPECT_TRUE(
config_has_key
(config, "DID", "productId"));
114
EXPECT_TRUE(
config_has_key
(config, "DID", "version"));
120
EXPECT_FALSE(
config_has_key
(config, "DID_BAD", "primaryRecord"));
121
EXPECT_FALSE(
config_has_key
(config, "DID", "primaryRecord_BAD"));
122
EXPECT_FALSE(
config_has_key
(config, CONFIG_DEFAULT_SECTION, "primaryRecord"));
142
EXPECT_FALSE(
config_has_key
(config, "DID", "productId"));
156
EXPECT_FALSE(
config_has_key
(config, "DID", "productId"))
[
all
...]
/system/bt/btif/src/
btif_config.c
278
bool ret =
config_has_key
(config, section, key);
291
bool ret =
config_has_key
(config, section, key);
514
if (!
config_has_key
(conf, section, "LinkKey") &&
515
!
config_has_key
(conf, section, "LE_KEY_PENC") &&
516
!
config_has_key
(conf, section, "LE_KEY_PID") &&
517
!
config_has_key
(conf, section, "LE_KEY_PCSRK") &&
518
!
config_has_key
(conf, section, "LE_KEY_LENC") &&
519
!
config_has_key
(conf, section, "LE_KEY_LCSRK")) {
571
if (string_is_bdaddr(section) &&
config_has_key
(config, section, "Restricted")) {
/system/bt/osi/include/
config.h
61
bool
config_has_key
(const config_t *config, const char *section, const char *key);
/system/bt/osi/src/
config.c
143
bool
config_has_key
(const config_t *config, const char *section, const char *key) {
function
Completed in 111 milliseconds