OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:btif_config_section_iter_t
(Results
1 - 3
of
3
) sorted by null
/system/bt/btif/include/
btif_config.h
28
typedef struct
btif_config_section_iter_t
btif_config_section_iter_t
;
typedef in typeref:struct:btif_config_section_iter_t
46
const
btif_config_section_iter_t
* btif_config_section_begin(void);
47
const
btif_config_section_iter_t
* btif_config_section_end(void);
48
const
btif_config_section_iter_t
* btif_config_section_next(
49
const
btif_config_section_iter_t
* section);
50
const char* btif_config_section_name(const
btif_config_section_iter_t
* section);
/system/bt/btif/src/
btif_config.cc
382
const
btif_config_section_iter_t
* btif_config_section_begin(void) {
384
return (const
btif_config_section_iter_t
*)config_section_begin(config);
387
const
btif_config_section_iter_t
* btif_config_section_end(void) {
389
return (const
btif_config_section_iter_t
*)config_section_end(config);
392
const
btif_config_section_iter_t
* btif_config_section_next(
393
const
btif_config_section_iter_t
* section) {
396
return (const
btif_config_section_iter_t
*)config_section_next(
401
const
btif_config_section_iter_t
* section) {
btif_storage.cc
421
for (const
btif_config_section_iter_t
* iter = btif_config_section_begin();
[
all
...]
Completed in 64 milliseconds