Searched refs:sections (Results 1 – 25 of 31) sorted by relevance
12
/system/bt/osi/src/ |
D | config.cc | 46 config.sections.begin(), config.sections.end(), in section_find() 54 if (sec == config.sections.end()) return nullptr; in entry_find() 103 for (const section_t& sec : src.sections) { in config_new_clone() 113 return (section_find(config, section) != config.sections.end()); in config_has_section() 182 if (sec == config->sections.end()) { in config_set_string() 183 config->sections.emplace_back(section_t{.name = section}); in config_set_string() 184 sec = std::prev(config->sections.end()); in config_set_string() 210 if (sec == config->sections.end()) return false; in config_remove_section() 212 config->sections.erase(sec); in config_remove_section() 220 if (sec == config->sections.end()) return false; in config_remove_key() [all …]
|
/system/chre/build/ |
D | tools_config.mk | 29 COMMON_CFLAGS += -fdata-sections 30 COMMON_CFLAGS += -ffunction-sections
|
/system/bt/build/ |
D | BUILD.gn | 35 "-fdata-sections", 36 "-ffunction-sections", 72 ldflags = [ "-Wl,--gc-sections" ]
|
/system/chre/build/arch/ |
D | arm64.mk | 33 TARGET_SO_LDFLAGS += -Wl,-gc-sections
|
D | x86.mk | 34 TARGET_SO_LDFLAGS += -Wl,-gc-sections
|
D | hexagon.mk | 59 TARGET_SO_LDFLAGS += --gc-sections
|
/system/bt/btif/src/ |
D | btif_config.cc | 480 std::list<section_t>& btif_config_sections() { return config->sections; } in btif_config_sections() 558 for (auto it = conf->sections.begin(); it != conf->sections.end();) { in btif_config_remove_unpaired() 569 it = conf->sections.erase(it); in btif_config_remove_unpaired() 618 for (auto it = config->sections.begin(); it != config->sections.end();) { in btif_config_remove_restricted() 624 it = config->sections.erase(it); in btif_config_remove_restricted()
|
/system/extras/simpleperf/scripts/ |
D | binary_cache_builder.py | 145 sections = self.readelf.get_sections(file_path) 146 if '.debug_line' in sections: 148 if '.symtab' in sections:
|
D | app_profiler.py | 96 sections = self.readelf.get_sections(path) 98 if '.debug_info' in sections: 100 elif '.gnu_debugdata' in sections: 102 elif '.symtab' in sections:
|
/system/media/camera/docs/ |
D | HidlMetadata.mako | 49 * Top level hierarchy definitions for camera metadata. *_INFO sections are for 71 * Hierarchy positions in enum space. All vendor extension sections must be 88 // No new metadata sections added in this revision
|
D | camera_metadata_tags.mako | 45 * Top level hierarchy definitions for camera metadata. *_INFO sections are for 47 * New sections must be added right before ANDROID_SECTION_COUNT to maintain
|
D | CameraMetadataKeys.mako | 18 ## These sections of metadata Key definitions are inserted into the middle of 78 % for section in outer_namespace.sections:
|
D | metadata_model.py | 459 sections_dict = self._dictionary_by_name(outer_namespace.sections) 485 if sec not in outer_namespace.sections: 672 def __init__(self, name, parent, sections=[]): argument 675 self._sections = sections[:] 681 def sections(self): member in OuterNamespace
|
D | ACameraMetadata.mako | 21 % for section in outer_namespace.sections:
|
D | CameraMetadataEnums.mako | 59 % for section in outer_namespace.sections:
|
D | html.mako | 178 % for section in root.sections: 214 % for section in root.sections:
|
D | metadata_template.mako | 44 % for section in root.sections:
|
/system/bt/osi/include/ |
D | config.h | 39 std::list<section_t> sections; member
|
/system/chre/build/sys_support/qcom/ |
D | uimage.lcs.toolv80 | 186 /* DWARF debug sections. 187 Symbols in the DWARF debugging sections are relative to the beginning
|
D | uimage_v2.lcs | 138 /* Non alloc sections */
|
/system/sepolicy/tools/ |
D | insertkeys.py | 119 for tag in self.sections():
|
/system/update_engine/ |
D | update_engine.gyp | 42 '-ffunction-sections', 53 '-Wl,--gc-sections',
|
D | Android.bp | 47 "-ffunction-sections", 63 ldflags: ["-Wl,--gc-sections"],
|
/system/core/libmemunreachable/ |
D | README.md | 68 …11. A list of all roots is produced from globals (.data and .bss sections of binaries), and regist…
|
/system/sepolicy/tools/fc_sort/ |
D | NOTICE | 115 identifiable sections of that work are not derived from the Program, 118 sections when you distribute them as separate works. But when you 119 distribute the same sections as part of a whole which is a work based
|
12