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

/frameworks/base/core/java/android/net/
H A DNetworkUtils.java52 * @param interfaceName is the interface to reset
55 public native static int resetConnections(String interfaceName, int mask); argument
62 * @param interfaceName the name of the interface to configure
67 public native static boolean runDhcp(String interfaceName, DhcpResults dhcpResults); argument
72 * @param interfaceName the name of the interface to configure
77 public native static boolean runDhcpRenew(String interfaceName, DhcpResults dhcpResults); argument
81 * @param interfaceName the name of the interface for which the daemon
85 public native static boolean stopDhcp(String interfaceName); argument
89 * @param interfaceName the name of the interface for which the lease should
93 public native static boolean releaseDhcpLease(String interfaceName); argument
[all...]
/frameworks/base/core/java/android/os/
H A DINetworkManagementService.aidl346 void startClatd(String interfaceName);
351 void stopClatd(String interfaceName);
356 boolean isClatdStarted(String interfaceName);
H A DParcel.java283 private static native void nativeWriteInterfaceToken(long nativePtr, String interfaceName); argument
284 private static native void nativeEnforceInterface(long nativePtr, String interfaceName); argument
461 public final void writeInterfaceToken(String interfaceName) { argument
462 nativeWriteInterfaceToken(mNativePtr, interfaceName);
465 public final void enforceInterface(String interfaceName) { argument
466 nativeEnforceInterface(mNativePtr, interfaceName);
/frameworks/base/services/core/jni/
H A Dcom_android_server_UsbHostManager.cpp113 jstring interfaceName = AndroidRuntime::NewStringLatin1(env, name); local
116 interface->bInterfaceNumber, interfaceName, interface->bAlternateSetting,
120 env->DeleteLocalRef(interfaceName);
/frameworks/base/tools/layoutlib/bridge/src/android/webkit/
H A DWebView.java224 public void addJavascriptInterface(Object obj, String interfaceName) { argument
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java227 public void addJavascriptInterface(Object obj, String interfaceName); argument
229 public void removeJavascriptInterface(String interfaceName); argument
/frameworks/base/services/core/java/com/android/server/
H A DNetworkManagementService.java1022 public RouteInfo[] getRoutes(String interfaceName) { argument
1034 if (interfaceName.equals(iface)) {
1068 if (interfaceName.equals(iface)) {
1861 public void startClatd(String interfaceName) throws IllegalStateException { argument
1865 mConnector.execute("clatd", "start", interfaceName);
1872 public void stopClatd(String interfaceName) throws IllegalStateException { argument
1876 mConnector.execute("clatd", "stop", interfaceName);
1883 public boolean isClatdStarted(String interfaceName) { argument
1888 event = mConnector.execute("clatd", "status", interfaceName);
/frameworks/av/media/mtp/
H A DMtpDevice.cpp81 char* interfaceName = usb_device_get_string(device, interface->iInterface); local
82 if (!interfaceName) {
84 } else if (strcmp(interfaceName, "MTP")) {
85 free(interfaceName);
88 free(interfaceName);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java106 public WifiNative(String interfaceName) { argument
107 mInterfaceName = interfaceName;
108 mTAG = "WifiNative-" + interfaceName;
109 if (!interfaceName.equals("p2p0")) {
110 mInterfacePrefix = "IFNAME=" + interfaceName + " ";
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java114 public RegisteredServicesCache(Context context, String interfaceName, String metaDataName, argument
117 mInterfaceName = interfaceName;
125 mPersistentServicesFile = new AtomicFile(new File(syncDir, interfaceName + ".xml"));
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java1391 public void addJavascriptInterface(final Object obj, final String interfaceName) { argument
1396 addJavascriptInterface(obj, interfaceName);
1405 mAwContents.addPossiblyUnsafeJavascriptInterface(obj, interfaceName, requiredAnnotation);
1409 public void removeJavascriptInterface(final String interfaceName) { argument
1414 removeJavascriptInterface(interfaceName);
1419 mAwContents.removeJavascriptInterface(interfaceName);

Completed in 279 milliseconds