Home | History | Annotate | Download | only in vintf

Lines Matching refs:interface

104     // Apply func to instances of package@expectVersion::interface/*.
108 const std::string& interface,
111 [&func, &interface](const InstanceType& e) {
112 if (e.interface() == interface) {
120 // If interface is empty, returns all instances of package@version;
121 // else return all instances of package@version::interface.
124 const std::string& interface = "") const {
130 if (interface.empty()) {
133 (void)forEachInstanceOfInterface(package, expectVersion, interface, mapToVector);