Searched refs:interfaceName (Results 1 - 25 of 39) sorted by relevance

12

/frameworks/base/core/java/android/net/
H A DIpSecTunnelInterfaceResponse.java31 public final String interfaceName; field in class:IpSecTunnelInterfaceResponse
44 out.writeString(interfaceName);
53 interfaceName = "";
59 interfaceName = inInterfaceName;
65 interfaceName = in.readString();
/frameworks/base/tests/UsbHostExternalManagmentTest/UsbHostExternalManagmentTestApp/src/com/android/hardware/usb/externalmanagementtest/
H A DUsbUtil.java50 String interfaceName = usbInterface.getName();
52 if (AOAP_INTERFACE_NAME.equals(interfaceName) ||
53 ADB_INTERFACE_NAME.equals(interfaceName) ||
54 MTP_INTERFACE_NAME.equals(interfaceName)) {
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/
H A DTestUtils.java94 public boolean createAwareNetworkInterface(short transactionId, String interfaceName) { argument
99 public boolean deleteAwareNetworkInterface(short transactionId, String interfaceName) { argument
105 int channel, byte[] peer, String interfaceName, byte[] pmk, String passphrase,
112 String interfaceName, byte[] pmk, String passphrase, boolean isOutOfBand,
104 initiateDataPath(short transactionId, int peerId, int channelRequestType, int channel, byte[] peer, String interfaceName, byte[] pmk, String passphrase, boolean isOutOfBand, Capabilities capabilities) argument
111 respondToDataPathRequest(short transactionId, boolean accept, int ndpId, String interfaceName, byte[] pmk, String passphrase, boolean isOutOfBand, Capabilities capabilities) argument
H A DWifiAwareDataPathStateManagerTest.java200 ArgumentCaptor<String> interfaceName = ArgumentCaptor.forClass(String.class);
215 interfaceName.capture());
217 equalTo(interfaceName.getValue()));
230 interfaceName.capture());
232 interfaceName.getValue().substring(sAwareInterfacePrefix.length()));
251 interfaceName.capture());
253 sAwareInterfacePrefix + i, equalTo(interfaceName.getValue()));
258 interfaceName.capture());
260 equalTo(interfaceName.getValue()));
/frameworks/native/cmds/lshal/
H A DTableEntry.cpp69 return interfaceName;
128 std::string debugInfo = emitDebugInfo(entry.interfaceName);
147 return interfaceName == other.interfaceName && transport == other.transport &&
156 ss << "name=" << interfaceName << ";transport=" << transport << ";thread=" << getThreadUsage()
H A DLshal.cpp98 const std::string &interfaceName,
107 hardware::Return<sp<IBase>> retBase = serviceManager()->get(interfaceName, instanceName);
110 std::string msg = "Cannot get " + interfaceName + "/" + instanceName + ": "
119 std::string msg = interfaceName + "/" + instanceName + " does not exist, or "
129 std::string msg = interfaceName + "/" + instanceName + " getDescriptor failed";
133 if (descriptor != interfaceName) {
156 std::string msg = "debug() FAILED on " + interfaceName + "/" + instanceName + ": "
97 emitDebugInfo( const std::string &interfaceName, const std::string &instanceName, const std::vector<std::string> &options, bool excludesParentInstances, std::ostream &out, NullableOStream<std::ostream> err) const argument
H A DListCommand.cpp254 std::string packageName = packageEntry.interfaceName;
263 FQName interfaceName{splitFirst(interfaceEntry.interfaceName, '/').first};
264 if (!interfaceName.isValid()) {
267 if (interfaceName.getPackageAndVersion() == fqPackageName) {
306 std::string fqInstanceName = entry.interfaceName;
336 std::string interfaceName =
381 hal->insertLegacyInstance(interfaceName, instanceName);
398 manifestHal.insertLegacyInstance(interfaceName, instanceName);
509 std::string interfaceName
[all...]
H A DTableEntry.h71 std::string interfaceName{};
86 return a.interfaceName < b.interfaceName;
H A DLshal.h51 const std::string &interfaceName,
H A DListCommand.h102 void addLine(TextTable *table, const std::string &interfaceName, const std::string &transport,
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
H A DWifiAwareDataPathStateManager.java229 public void onInterfaceCreated(String interfaceName) { argument
230 if (VDBG) Log.v(TAG, "onInterfaceCreated: interfaceName=" + interfaceName);
232 if (mInterfaces.contains(interfaceName)) {
233 Log.w(TAG, "onInterfaceCreated: already contains interface -- " + interfaceName);
236 mInterfaces.add(interfaceName);
242 public void onInterfaceDeleted(String interfaceName) { argument
243 if (VDBG) Log.v(TAG, "onInterfaceDeleted: interfaceName=" + interfaceName);
245 if (!mInterfaces.contains(interfaceName)) {
1011 public String interfaceName; field in class:WifiAwareDataPathStateManager.AwareNetworkRequestInformation
[all...]
H A DWifiAwareNativeApi.java807 * @param interfaceName The name of the interface, e.g. "aware0".
809 public boolean createAwareNetworkInterface(short transactionId, String interfaceName) { argument
812 + "interfaceName=" + interfaceName);
823 WifiStatus status = iface.createDataInterfaceRequest(transactionId, interfaceName);
841 * @param interfaceName The name of the interface, e.g. "aware0".
843 public boolean deleteAwareNetworkInterface(short transactionId, String interfaceName) { argument
846 + "interfaceName=" + interfaceName);
857 WifiStatus status = iface.deleteDataInterfaceRequest(transactionId, interfaceName);
888 initiateDataPath(short transactionId, int peerId, int channelRequestType, int channel, byte[] peer, String interfaceName, byte[] pmk, String passphrase, boolean isOutOfBand, Capabilities capabilities) argument
966 respondToDataPathRequest(short transactionId, boolean accept, int ndpId, String interfaceName, byte[] pmk, String passphrase, boolean isOutOfBand, Capabilities capabilities) argument
[all...]
H A DWifiAwareMetrics.java426 ndiInApp.add(anri.interfaceName);
436 Integer ndpCount = ndpPerNdiMap.get(anri.interfaceName);
438 ndpPerNdiMap.put(anri.interfaceName, 1);
440 ndpPerNdiMap.put(anri.interfaceName, ndpCount + 1);
444 ndiInSystem.add(anri.interfaceName);
H A DWifiAwareStateManager.java757 public void createDataPathInterface(String interfaceName) { argument
760 msg.obj = interfaceName;
767 public void deleteDataPathInterface(String interfaceName) { argument
770 msg.obj = interfaceName;
778 int channelRequestType, int channel, byte[] peer, String interfaceName, byte[] pmk,
787 msg.getData().putString(MESSAGE_BUNDLE_KEY_INTERFACE_NAME, interfaceName);
797 public void respondToDataPathRequest(boolean accept, int ndpId, String interfaceName, argument
803 msg.getData().putString(MESSAGE_BUNDLE_KEY_INTERFACE_NAME, interfaceName);
1715 String interfaceName = data.getString(MESSAGE_BUNDLE_KEY_INTERFACE_NAME);
1722 interfaceName, pm
777 initiateDataPathSetup(WifiAwareNetworkSpecifier networkSpecifier, int peerId, int channelRequestType, int channel, byte[] peer, String interfaceName, byte[] pmk, String passphrase, boolean isOutOfBand) argument
2469 initiateDataPathSetupLocal(short transactionId, WifiAwareNetworkSpecifier networkSpecifier, int peerId, int channelRequestType, int channel, byte[] peer, String interfaceName, byte[] pmk, String passphrase, boolean isOutOfBand) argument
2494 respondToDataPathRequestLocal(short transactionId, boolean accept, int ndpId, String interfaceName, byte[] pmk, String passphrase, boolean isOutOfBand) argument
[all...]
/frameworks/native/libs/dumputils/
H A Ddump_utils.cpp89 if (!should_dump_hal_interface(info.interfaceName.c_str())) {
/frameworks/base/core/java/android/os/
H A DINetworkManagementService.aidl367 void startClatd(String interfaceName);
372 void stopClatd(String interfaceName);
377 boolean isClatdStarted(String interfaceName);
H A DHwParcel.java71 * @param interfaceName fully qualified name of interface message
74 public native final void writeInterfaceToken(String interfaceName); argument
281 public native final void enforceInterface(String interfaceName); argument
H A DParcel.java333 private static native void nativeWriteInterfaceToken(long nativePtr, String interfaceName); argument
334 private static native void nativeEnforceInterface(long nativePtr, String interfaceName); argument
605 public final void writeInterfaceToken(String interfaceName) { argument
606 nativeWriteInterfaceToken(mNativePtr, interfaceName);
609 public final void enforceInterface(String interfaceName) { argument
610 nativeEnforceInterface(mNativePtr, interfaceName);
/frameworks/base/core/jni/
H A Dandroid_os_HwParcel.cpp263 const jchar *interfaceName = env->GetStringCritical(interfaceNameObj, NULL); local
264 if (interfaceName) {
266 reinterpret_cast<const char16_t *>(interfaceName),
269 env->ReleaseStringCritical(interfaceNameObj, interfaceName);
270 interfaceName = NULL;
290 const jchar *interfaceName = env->GetStringCritical(interfaceNameObj, NULL); local
291 if (interfaceName) {
293 reinterpret_cast<const char16_t *>(interfaceName),
296 env->ReleaseStringCritical(interfaceNameObj, interfaceName);
297 interfaceName
[all...]
/frameworks/layoutlib/bridge/src/android/webkit/
H A DWebView.java224 public void addJavascriptInterface(Object obj, String interfaceName) { argument
/frameworks/base/tests/net/java/com/android/server/
H A DIpSecServiceParameterizedTest.java520 eq(createTunnelResp.interfaceName),
539 verify(mMockNetd).removeVirtualTunnelInterface(eq(createTunnelResp.interfaceName));
563 verify(mMockNetd).removeVirtualTunnelInterface(eq(createTunnelResp.interfaceName));
581 eq(createTunnelResp.interfaceName),
588 eq(createTunnelResp.interfaceName),
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java248 public void addJavascriptInterface(Object obj, String interfaceName); argument
250 public void removeJavascriptInterface(String interfaceName); argument
/frameworks/av/media/mtp/
H A DMtpDevice.cpp103 char* interfaceName = usb_device_get_string(device, interface->iInterface, local
105 if (!interfaceName) {
107 } else if (strcmp(interfaceName, "MTP")) {
108 free(interfaceName);
111 free(interfaceName);
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
H A DEthernetNetworkFactory.java155 void removeInterface(String interfaceName) { argument
156 NetworkInterfaceState iface = mTrackingInterfaces.remove(interfaceName);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWificondControl.java838 * @param interfaceName Name of the interface.
842 public boolean setMacAddress(@NonNull String interfaceName, @NonNull MacAddress mac) { argument
843 IClientInterface mClientInterface = getClientInterface(interfaceName);

Completed in 569 milliseconds

12