HomeSort by relevance Sort by last modified time
    Searched refs:iface (Results 151 - 175 of 386) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Bluetooth/src/com/android/bluetooth/pan/
PanService.java 159 // TBD get iface from the msg
161 handlePanDeviceStateChange(device, mPanIfName /* iface */, convertHalState(cs.state),
361 String iface, int state, int local_role, int remote_role) {
362 if(DBG) Log.d(TAG, "handlePanDeviceStateChange: device: " + device + ", iface: " + iface +
384 ifaceAddr = enableTethering(iface);
402 service.startReverseTethering(iface);
424 panDevice = new BluetoothPanDevice(state, ifaceAddr, iface, local_role);
430 panDevice.mIface = iface;
448 private String enableTethering(String iface) {
    [all...]
  /dalvik/dx/src/com/android/dx/cf/direct/
DirectClassFile.java 21 import com.android.dx.cf.iface.Attribute;
22 import com.android.dx.cf.iface.AttributeList;
23 import com.android.dx.cf.iface.ClassFile;
24 import com.android.dx.cf.iface.FieldList;
25 import com.android.dx.cf.iface.MethodList;
26 import com.android.dx.cf.iface.ParseException;
27 import com.android.dx.cf.iface.ParseObserver;
28 import com.android.dx.cf.iface.StdAttributeList;
  /external/ppp/pppd/
cbcp.c 120 cbcp_init(iface)
121 int iface;
125 us = &cbcp[iface];
127 us->us_unit = iface;
133 cbcp_lowerup(iface)
134 int iface;
136 cbcp_state *us = &cbcp[iface];
210 void cbcp_protrej(int iface)
  /frameworks/base/core/jni/
android_net_TrafficStats.cpp 84 static int parseIfaceStat(const char* iface, struct IfaceStat* stat) {
103 if (!iface || !strcmp(iface, cur_iface)) {
122 static uint64_t getIfaceStatType(const char* iface, IfaceStatType type) {
126 if (parseIfaceStat(iface, &stat)) {
148 static jlong getIfaceStat(JNIEnv* env, jclass clazz, jstring iface, jint type) {
150 const char* ifaceChars = env->GetStringUTFChars(iface, NULL);
153 env->ReleaseStringUTFChars(iface, ifaceChars);
android_media_RemoteDisplay.cpp 129 ScopedUtfChars iface(env, ifaceStr);
141 client, String8(iface.c_str()));
144 iface.c_str());
  /external/libppp/src/
atm.c 168 atm_CreateDevice(struct physical *p, const char *iface, unsigned vpi,
182 strncpy(sock.snatm_if, iface, IFNAMSIZ);
187 iface, vpi, vci);
215 char iface[25]; local
218 if (sscanf(p->name.full + PPPOA_LEN + 1, "%25[A-Za-z0-9]:%u.%u", iface,
225 dev = atm_CreateDevice(p, iface, vpi, vci);
bundle.h 73 struct iface;
86 struct iface *iface; /* Interface information */ member in struct:bundle
  /external/mesa3d/src/pixelflinger2/
scanline.cpp 246 void ScanLine(const GGLInterface * iface, const VertexOutput * start, const VertexOutput * end)
248 GGL_GET_CONST_CONTEXT(ctx, iface);
253 // GGL_GET_CONST_CONTEXT(ctx, iface);
575 static void PickScanLine(GGLInterface * iface)
577 GGL_GET_CONTEXT(ctx, iface);
609 void InitializeScanLineFunctions(GGLInterface * iface)
611 GGL_GET_CONTEXT(ctx, iface);
  /frameworks/base/core/java/android/net/
ConnectivityManager.java 705 public int tether(String iface) {
707 return mService.tether(iface);
717 public int untether(String iface) {
719 return mService.untether(iface);
804 * @param iface The name of the interface we're interested in
809 public int getLastTetherError(String iface) {
811 return mService.getLastTetherError(iface);
IConnectivityManager.aidl 76 int tether(String iface);
78 int untether(String iface);
80 int getLastTetherError(String iface);
  /external/dhcpcd/
if-bsd.c 80 if_init(_unused struct interface *iface)
87 if_conf(_unused struct interface *iface)
153 if_address(const struct interface *iface, const struct in_addr *address,
165 strlcpy(ifa.ifra_name, iface->name, sizeof(ifa.ifra_name));
235 rt->net.s_addr != rt->iface->net.s_addr ||
236 rt->dest.s_addr != (rt->iface->addr.s_addr & rt->iface->net.s_addr))
257 link_addr(rt->iface->name, &su.sdl);
266 ADDADDR(&rt->iface->addr);
400 rt.iface = NULL
    [all...]
  /external/wpa_supplicant_8/src/ap/
wps_hostapd.c 53 static int wps_for_each(struct hostapd_iface *iface, void *ctx)
58 if (iface == NULL)
60 for (j = 0; j < iface->num_bss; j++) {
61 struct hostapd_data *hapd = iface->bss[j];
75 struct hostapd_iface *iface = hapd->iface; local
79 if (iface->interfaces == NULL ||
80 iface->interfaces->for_each_interface == NULL)
81 return wps_for_each(iface, &data);
82 return iface->interfaces->for_each_interface(iface->interfaces
257 struct hostapd_iface *iface = eloop_data; local
    [all...]
drv_callbacks.c 370 hapd->iface->freq = freq;
520 static struct hostapd_data * get_hapd_bssid(struct hostapd_iface *iface,
531 for (i = 0; i < iface->num_bss; i++) {
532 if (os_memcmp(bssid, iface->bss[i]->own_addr, ETH_ALEN) == 0)
533 return iface->bss[i];
544 hapd = get_hapd_bssid(hapd->iface, bssid);
554 struct hostapd_iface *iface = hapd->iface; local
564 hapd = get_hapd_bssid(iface, bssid);
575 hapd = iface->bss[0]
674 struct hostapd_iface *iface = hapd->iface; local
    [all...]
  /system/core/adb/
usb_osx.c 56 static usb_handle* CheckInterface(IOUSBInterfaceInterface **iface,
124 IOUSBInterfaceInterface220 **iface = NULL; local
151 &iface);
154 if (result || !iface) {
163 kr = (*iface)->GetDevice(iface, &usbDevice);
258 usb_handle* handle = CheckInterface((IOUSBInterfaceInterface**)iface,
262 (*iface)->Release(iface);
  /frameworks/base/core/java/android/bluetooth/
BluetoothTetheringDataTracker.java 291 private boolean readLinkProperty(String iface) {
292 String DhcpPrefix = "dhcp." + iface + ".";
310 mLinkProperties.setInterfaceName(iface);
313 public synchronized void startReverseTether(String iface) {
314 mIface = iface;
358 //NetworkUtils.stopDhcp(iface);
  /frameworks/base/services/java/com/android/server/net/
LockdownVpnTracker.java 149 final String iface = vpnConfig.interfaze; local
152 if (TextUtils.equals(iface, mAcceptedIface)
157 Slog.d(TAG, "VPN connected using iface=" + iface + ", sourceAddr=" + sourceAddr);
164 mNetService.setFirewallInterfaceRule(iface, true);
168 mAcceptedIface = iface;
  /external/doclava/src/com/google/doclava/
ClassInfo.java 269 for (ClassInfo iface : cl.mRealInterfaces) {
270 if (iface.checkLevel()) {
271 interfaces.add(iface);
273 gatherHiddenInterfaces(iface, interfaces);
409 for (ClassInfo iface : interfaces) {
410 if (iface != null) {
411 for (MethodInfo method : iface.methods()) {
452 for (ClassInfo iface : interfaces()) {
453 addFields(iface, all);
487 for (ClassInfo iface : mRealInterfaces)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/
wpa_supplicant.c     [all...]
  /system/netd/
BandwidthController.cpp 84 * . adding a new iface to this, E.g.:
106 * Should normally include costly_<iface>, but we rely on the way they are setup
426 * Flush the costly_<iface> is allowed to fail in case it didn't exist.
501 int BandwidthController::setInterfaceSharedQuota(const char *iface, int64_t maxBytes) {
516 if (StrncpyAndCheck(ifn, iface, sizeof(ifn))) {
569 int BandwidthController::removeInterfaceSharedQuota(const char *iface) {
576 if (StrncpyAndCheck(ifn, iface, sizeof(ifn))) {
587 ALOGE("No such iface %s to delete", ifn);
607 int BandwidthController::setInterfaceQuota(const char *iface, int64_t maxBytes) {
621 return removeInterfaceQuota(iface);
    [all...]
  /dalvik/dx/src/com/android/dx/cf/code/
ConcreteMethod.java 23 import com.android.dx.cf.iface.AttributeList;
24 import com.android.dx.cf.iface.ClassFile;
25 import com.android.dx.cf.iface.Method;
  /external/libvpx/vpx/
vpx_codec.h 196 vpx_codec_iface_t *iface; /**< Interface pointers */ member in struct:vpx_codec_ctx
274 * \param[in] iface Interface pointer
277 const char *vpx_codec_iface_name(vpx_codec_iface_t *iface);
343 * \param[in] iface Pointer to the algorithm interface
346 vpx_codec_caps_t vpx_codec_get_caps(vpx_codec_iface_t *iface);
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new.py 139 global iface
140 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)
141 iface.Scan({'Type': 'active'})
  /external/libcap-ng/libcap-ng-0.7/utils/
netcap.c 351 static void get_interface(unsigned int iface, char *ifc)
361 iface++;
372 if (line == iface) {
392 unsigned int ref_cnt, type, proto, iface, r, rmem, uid; local
410 &sk, &ref_cnt, &type, &proto, &iface,
412 get_interface(iface, ifc);
  /external/webkit/Source/WebCore/accessibility/gtk/
WebKitAccessibleHyperlink.cpp 163 static void atkActionInterfaceInit(AtkActionIface* iface)
165 iface->do_action = webkitAccessibleHyperlinkActionDoAction;
166 iface->get_n_actions = webkitAccessibleHyperlinkActionGetNActions;
167 iface->get_description = webkitAccessibleHyperlinkActionGetDescription;
168 iface->get_keybinding = webkitAccessibleHyperlinkActionGetKeybinding;
169 iface->get_name = webkitAccessibleHyperlinkActionGetName;
  /development/tools/emulator/opengl/system/egl/
ClientAPIExts.cpp 64 void initClientFuncs(const EGLClient_glesInterface *iface, int idx)
68 (FUNC_TYPE(fname))iface->getProcAddress(#fname);

Completed in 556 milliseconds

1 2 3 4 5 67 8 91011>>