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 - 3
of
3
) sorted by null
/external/bluetooth/bluedroid/osi/test/
config_test.cpp
81
EXPECT_TRUE(
config_has_key
(config, CONFIG_DEFAULT_SECTION, "first_key"));
88
EXPECT_TRUE(
config_has_key
(config, "DID", "recordNumber"));
89
EXPECT_TRUE(
config_has_key
(config, "DID", "primaryRecord"));
90
EXPECT_TRUE(
config_has_key
(config, "DID", "productId"));
91
EXPECT_TRUE(
config_has_key
(config, "DID", "version"));
97
EXPECT_FALSE(
config_has_key
(config, "DID_BAD", "primaryRecord"));
98
EXPECT_FALSE(
config_has_key
(config, "DID", "primaryRecord_BAD"));
99
EXPECT_FALSE(
config_has_key
(config, CONFIG_DEFAULT_SECTION, "primaryRecord"));
/external/bluetooth/bluedroid/osi/include/
config.h
46
bool
config_has_key
(const config_t *config, const char *section, const char *key);
/external/bluetooth/bluedroid/osi/src/
config.c
76
bool
config_has_key
(const config_t *config, const char *section, const char *key) {
function
Completed in 132 milliseconds