OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ignore_interfaces
(Results
1 - 4
of
4
) sorted by null
/external/dbus-binding-generator/chromeos-dbus-bindings/
header_generator.h
46
std::vector<std::string>
ignore_interfaces
;
member in struct:chromeos_dbus_bindings::ServiceConfig
xml_interface_parser.cc
63
const std::vector<std::string>&
ignore_interfaces
) {
86
if (!
ignore_interfaces
.empty()) {
87
// Remove interfaces whose names are in |
ignore_interfaces
| list.
88
auto condition = [&
ignore_interfaces
](const Interface& itf) {
89
return std::find(
ignore_interfaces
.begin(),
ignore_interfaces
.end(),
90
itf.name) !=
ignore_interfaces
.end();
generate_chromeos_dbus_bindings.cc
108
if (dict->GetListWithoutPathExpansion("
ignore_interfaces
", &list)) {
109
config->
ignore_interfaces
.reserve(list->GetSize());
113
LOG(ERROR) << "Invalid interface name in [
ignore_interfaces
] section";
116
config->
ignore_interfaces
.push_back(interface_name);
162
if (!parser.ParseXmlInterfaceFile(contents, config.
ignore_interfaces
)) {
xml_interface_parser.h
34
const std::vector<std::string>&
ignore_interfaces
);
Completed in 69 milliseconds