HomeSort by relevance Sort by last modified time
    Searched defs:iface (Results 101 - 125 of 156) sorted by null

1 2 3 45 6 7

  /frameworks/base/services/java/com/android/server/connectivity/
Vpn.java 346 public synchronized void interfaceStatusChanged(String iface, boolean up) {
348 mObserver.interfaceStatusChanged(iface, up);
491 final String iface = egress.getInterfaceName(); local
521 iface, profile.server, "udppsk", profile.ipsecIdentifier,
527 iface, profile.server, "udprsa", privateKey, userCert,
533 iface, profile.server, "xauthpsk", profile.ipsecIdentifier,
539 iface, profile.server, "xauthrsa", privateKey, userCert,
545 iface, profile.server, "hybridrsa",
556 iface, "pptp", profile.server, "1723",
566 iface, "l2tp", profile.server, "1701", profile.l2tpSecret
    [all...]
Tethering.java 178 // TODO - remove and rely on real notifications of the current iface
210 public void interfaceStatusChanged(String iface, boolean up) {
211 if (VDBG) Log.d(TAG, "interfaceStatusChanged " + iface + ", " + up);
215 if (isWifi(iface)) {
217 } else if (isUsb(iface)) {
220 } else if (isBluetooth(iface)) {
225 TetherInterfaceSM sm = mIfaces.get(iface);
228 sm = new TetherInterfaceSM(iface, mLooper, usb);
229 mIfaces.put(iface, sm);
233 if (isUsb(iface)) {
1293 String iface = null; local
    [all...]
  /frameworks/base/services/java/com/android/server/display/
WifiDisplayController.java 634 final String iface = addr.getHostAddress() + ":" + port; local
635 mRemoteDisplayInterface = iface;
637 Slog.i(TAG, "Listening for RTSP connection on " + iface
640 mRemoteDisplay = RemoteDisplay.listen(iface, new RemoteDisplay.Listener() {
849 NetworkInterface iface; local
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglImp.cpp 629 GLESiface* iface = g_eglInfo->getIface(version); local
631 if(iface) {
632 glesCtx = iface->createGLESContext();
654 iface->deleteGLESContext(glesCtx);
    [all...]
  /external/doclava/src/com/google/doclava/
InfoBuilder.java 1319 ClassInfo iface = buildClassName(child, containingClass, modifiers, local
    [all...]
Stubs.java 380 for (TypeInfo iface : cl.realInterfaceTypes()) {
381 if (notStrippable.contains(iface.asClassInfo()) && !iface.asClassInfo().isDocOnly()) {
382 usedInterfaces.add(iface);
393 for (TypeInfo iface : usedInterfaces) {
394 stream.print(comma + iface.fullName(classDeclTypeVars));
854 for (ClassInfo iface : interfaces) {
855 if (notStrippable.contains(iface)) {
856 xmlWriter.println("<implements name=\"" + iface.qualifiedName() + "\">");
    [all...]
ClassInfo.java 272 for (ClassInfo iface : cl.mRealInterfaces) {
273 if (iface.checkLevel()) {
274 interfaces.add(iface);
276 gatherHiddenInterfaces(iface, interfaces);
412 for (ClassInfo iface : interfaces) {
413 if (iface != null) {
414 for (MethodInfo method : iface.methods()) {
455 for (ClassInfo iface : interfaces()) {
456 addFields(iface, all);
490 for (ClassInfo iface : mRealInterfaces)
    [all...]
  /bionic/libc/netbsd/net/
getaddrinfo.c 217 const char *, struct addrinfo **, const char *iface);
409 const struct addrinfo *hints, struct addrinfo **res, const char *iface)
456 iface == NULL ? "^" : iface) < 0) {
585 const struct addrinfo *hints, const char *iface, struct addrinfo **res)
734 return android_getaddrinfo_proxy(hostname, servname, hints, res, iface);
764 &cur->ai_next, iface);
797 const char *servname, struct addrinfo **res, const char *iface)
823 default_dns_files, hostname, pai, iface)) {
1891 const char* iface; local
    [all...]
  /bionic/libc/netbsd/resolv/
res_cache.c 1867 char* iface; local
2040 char* iface = _res_default_ifname; local
    [all...]
  /bionic/libc/private/
resolv_private.h 143 char iface[IF_NAMESIZE+1]; member in struct:__res_state
  /dalvik/vm/
Debugger.cpp 1275 ClassObject* iface = clazz->interfaces[i]; local
    [all...]
  /dalvik/vm/oo/
Class.cpp 4118 const ClassObject* iface = iftable->clazz; local
    [all...]
  /external/wpa_supplicant_8/src/drivers/
driver_test.c 2534 struct wpa_interface_info *iface; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_new_handlers.c 516 * wpas_dbus_handler_create_interface - Request registration of a network iface
579 * Try to get the wpa_supplicant record for this iface, return
589 struct wpa_interface iface; local
590 os_memset(&iface, 0, sizeof(iface));
591 iface.driver = driver;
592 iface.ifname = ifname;
593 iface.confname = confname;
594 iface.bridge_ifname = bridge_ifname;
596 if ((wpa_s = wpa_supplicant_add_iface(global, &iface))) {
1479 char *iface = NULL, *net_id = NULL; local
1594 char *iface = NULL, *net_id = NULL; local
1647 char *iface = NULL, *net_id = NULL; local
    [all...]
  /frameworks/base/services/java/com/android/server/
NetworkManagementService.java 230 private void notifyInterfaceStatusChanged(String iface, boolean up) {
234 mObservers.getBroadcastItem(i).interfaceStatusChanged(iface, up);
246 private void notifyInterfaceLinkStateChanged(String iface, boolean up) {
250 mObservers.getBroadcastItem(i).interfaceLinkStateChanged(iface, up);
261 private void notifyInterfaceAdded(String iface) {
265 mObservers.getBroadcastItem(i).interfaceAdded(iface);
276 private void notifyInterfaceRemoved(String iface) {
279 mActiveAlerts.remove(iface);
280 mActiveQuotas.remove(iface);
285 mObservers.getBroadcastItem(i).interfaceRemoved(iface);
700 String iface = fields[0]; local
735 String iface = fields[9].trim(); local
    [all...]
  /frameworks/base/services/java/com/android/server/net/
NetworkStatsService.java 219 /** Current default active iface. */
606 entry.iface = IFACE_ALL;
803 public void limitReached(String limitName, String iface) {
895 final String iface = state.linkProperties.getInterfaceName(); local
    [all...]
  /external/clang/lib/CodeGen/
CGObjC.cpp 413 const ObjCInterfaceDecl *iface = impl->getClassInterface(); local
414 if (!iface->getSuperClass()) return;
425 iface,
1290 const ObjCInterfaceDecl *iface = impl->getClassInterface(); local
    [all...]
CodeGenModule.cpp 2636 const ObjCInterfaceDecl *iface = impl->getClassInterface(); local
    [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 1499 ObjCInterfaceDecl *iface = objectType->getInterface(); local
    [all...]
  /external/iproute2/misc/
ss.c 2074 int iface; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
ctrl_iface.c 5600 struct wpa_interface iface; local
5707 struct wpa_interface_info *iface = NULL, *last = NULL, *tmp; local
    [all...]
p2p_supplicant.c 1077 struct wpa_interface iface; local
1094 os_memset(&iface, 0, sizeof(iface));
1095 iface.ifname = wpa_s->pending_interface_name;
1096 iface.driver = wpa_s->driver->name;
1097 iface.ctrl_interface = wpa_s->conf->ctrl_interface;
1098 iface.driver_param = wpa_s->conf->driver_param;
1099 group_wpa_s = wpa_supplicant_add_iface(wpa_s->global, &iface);
3338 struct wpa_supplicant *iface; local
5374 struct wpa_supplicant *iface; local
5395 struct wpa_supplicant *iface; local
5421 struct wpa_supplicant *iface; local
5466 struct wpa_supplicant *iface; local
5865 struct wpa_supplicant *iface = NULL; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DcTracker.java 1623 String iface = linkProperties.getInterfaceName(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/sound/
emu10k1.h 267 int iface; /* interface identifier */ member in struct:__anon26085
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/sound/
emu10k1.h 267 int iface; /* interface identifier */ member in struct:__anon27675

Completed in 1448 milliseconds

1 2 3 45 6 7