Home
last modified time | relevance | path

Searched refs:mInterfaces (Results 1 – 21 of 21) sorted by relevance

/aosp12/system/netd/server/
H A DNetwork.cpp31 if (!mInterfaces.empty()) { in ~Network()
41 return mInterfaces.find(interface) != mInterfaces.end(); in hasInterface()
45 return mInterfaces; in getInterfaces()
49 while (!mInterfaces.empty()) { in clearInterfaces()
52 std::string interface = *mInterfaces.begin(); in clearInterfaces()
66 if (mInterfaces.size() > 0) { in toString()
67 repr << kSeparator << android::base::Join(mInterfaces, ","); in toString()
H A DPhysicalNetwork.cpp102 if (mInterfaces.empty()) { in setPermission()
108 for (const std::string& interface : mInterfaces) { in setPermission()
118 for (const std::string& interface : mInterfaces) { in setPermission()
139 for (const std::string& interface : mInterfaces) { in addAsDefault()
152 for (const std::string& interface : mInterfaces) { in removeAsDefault()
166 for (const std::string& interface : mInterfaces) { in addUsers()
181 for (const std::string& interface : mInterfaces) { in removeUsers()
207 mInterfaces.insert(interface); in addInterface()
229 mInterfaces.erase(interface); in removeInterface()
H A DVirtualNetwork.cpp39 for (const std::string& interface : mInterfaces) { in addUsers()
54 for (const std::string& interface : mInterfaces) { in removeUsers()
75 mInterfaces.insert(interface); in addInterface()
88 mInterfaces.erase(interface); in removeInterface()
H A DLocalNetwork.cpp42 mInterfaces.insert(interface); in addInterface()
54 mInterfaces.erase(interface); in removeInterface()
H A DTetherController.cpp435 for (const auto& ifname : mInterfaces) { in applyDnsInterfaces()
466 mInterfaces.push_back(interface); in tetherInterface()
469 mInterfaces.pop_back(); in tetherInterface()
480 for (auto it = mInterfaces.cbegin(); it != mInterfaces.cend(); ++it) { in untetherInterface()
482 mInterfaces.erase(it); in untetherInterface()
493 return mInterfaces; in getTetheredInterfaceList()
H A DDummyNetwork.cpp36 mInterfaces.insert(INTERFACE_NAME); in DummyNetwork()
H A DNetwork.h71 std::set<std::string> mInterfaces; variable
H A DTetherController.h45 std::list<std::string> mInterfaces; variable
/aosp12/frameworks/base/core/java/android/hardware/usb/
H A DUsbConfiguration.java47 private @Nullable Parcelable[] mInterfaces; field in UsbConfiguration
135 return mInterfaces.length; in getInterfaceCount()
144 return (UsbInterface)mInterfaces[index]; in getInterface()
152 mInterfaces = Preconditions.checkArrayElementsNotNull(interfaces, "interfaces"); in setInterfaces()
160 for (int i = 0; i < mInterfaces.length; i++) { in toString()
162 builder.append(mInterfaces[i].toString()); in toString()
195 parcel.writeParcelableArray(mInterfaces, 0); in writeToParcel()
H A DUsbDevice.java73 private @Nullable UsbInterface[] mInterfaces; field in UsbDevice
266 if (mInterfaces == null) { in getInterfaceList()
274 mInterfaces = new UsbInterface[interfaceCount]; in getInterfaceList()
280 mInterfaces[offset++] = configuration.getInterface(j); in getInterfaceList()
285 return mInterfaces; in getInterfaceList()
/aosp12/system/tools/hidl/c2hal/
H A DAST.cpp57 if(mInterfaces != nullptr) { in ~AST()
58 for(auto* inter : *mInterfaces) { in ~AST()
62 delete mInterfaces; in ~AST()
139 mInterfaces = new std::vector<CompositeDeclaration*>; in isolateInterfaces()
146 mInterfaces->push_back((CompositeDeclaration *) *it); in isolateInterfaces()
180 mInterfaces->push_back(interface); in isolateGlobalInterface()
240 for (auto &interface : *mInterfaces) { in generateCode()
H A DAST.h75 std::vector<CompositeDeclaration *> *mInterfaces = nullptr; member
/aosp12/frameworks/wilhelm/src/
H A Dentry.cpp103 const struct iid_vtable *x = pCEngine_class->mInterfaces; in liCreateEngine()
189 switch (clazz->mInterfaces[i].mInterface) { in liQueryNumSupportedInterfaces()
225 switch (clazz->mInterfaces[i].mInterface) { in liQuerySupportedInterfaces()
239 *pInterfaceId = &SL_IID_array[clazz->mInterfaces[i].mMPH]; in liQuerySupportedInterfaces()
H A Dsles.cpp159 const struct iid_vtable *interfaces = clazz->mInterfaces; in checkInterfaces()
539 const struct iid_vtable *x = clazz->mInterfaces; in construct()
H A Dsles_allinclusive.h206 const struct iid_vtable *mInterfaces; // maps interface index to info about that interface member
/aosp12/frameworks/wilhelm/src/itf/
H A DIDynamicInterfaceManagement.cpp53 const struct iid_vtable *x = &clazz->mInterfaces[index]; in HandleAdd()
161 const struct iid_vtable *x = &clazz->mInterfaces[index]; in IDynamicInterfaceManagement_AddInterface()
230 const struct iid_vtable *x = &clazz->mInterfaces[index]; in IDynamicInterfaceManagement_RemoveInterface()
309 const struct iid_vtable *x = &clazz->mInterfaces[index]; in HandleResume()
409 const struct iid_vtable *x = &clazz->mInterfaces[index]; in IDynamicInterfaceManagement_ResumeInterface()
H A DIObject.cpp348 !(INTERFACE_PREREALIZE & clazz->mInterfaces[index].mInterface)) { in IObject_GetInterface()
360 interface = (char *) thiz + clazz->mInterfaces[index].mOffset; in IObject_GetInterface()
583 const struct iid_vtable *x = &clazz->mInterfaces[index]; in IObject_Destroy()
H A DIEngine.cpp801 switch (clazz->mInterfaces[i].mInterface) { in IEngine_QueryNumSupportedInterfaces()
841 switch (clazz->mInterfaces[i].mInterface) { in IEngine_QuerySupportedInterfaces()
855 *pInterfaceId = &SL_IID_array[clazz->mInterfaces[i].mMPH]; in IEngine_QuerySupportedInterfaces()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareDataPathStateManager.java112 private final Set<String> mInterfaces = new HashSet<>(); field in WifiAwareDataPathStateManager
236 if (mInterfaces.contains(name)) { in createAllInterfaces()
242 mInterfaces.remove(name); in createAllInterfaces()
273 if (mInterfaces.contains(interfaceName)) { in onInterfaceCreated()
277 mInterfaces.add(interfaceName); in onInterfaceCreated()
286 if (!mInterfaces.contains(interfaceName)) { in onInterfaceDeleted()
290 mInterfaces.remove(interfaceName); in onInterfaceDeleted()
915 if (mInterfaces.isEmpty()) { in acceptRequest()
1191 SortedSet<String> unused = new TreeSet<>(mInterfaces); in selectInterfaceForRequest()
1215 + ", invalid" + invalid + ", allInterfaces" + mInterfaces); in selectInterfaceForRequest()
[all …]
/aosp12/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ ...
/aosp12/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt25225 Landroid/hardware/usb/UsbConfiguration;->mInterfaces:[Landroid/os/Parcelable;