HomeSort by relevance Sort by last modified time
    Searched defs:broadcast (Results 1 - 25 of 37) sorted by null

1 2

  /system/core/nexus/
DhcpListener.cpp 65 struct in_addr ipaddr, netmask, gateway, broadcast, dns1, dns2; local
73 if (!inet_aton(strsep(&next, ":"), &broadcast)) {
74 LOGW("Malformatted broadcast specified");
86 &broadcast, &gateway, &dns1, &dns2);
  /external/dnsmasq/src/
bpf.c 88 struct in_addr addr, netmask, broadcast; local
89 broadcast.s_addr = 0;
95 broadcast = ((struct sockaddr_in *) &ifr->ifr_addr)->sin_addr;
98 netmask, broadcast,
158 net broadcast or the destination can't reply to ARP yet,
netlink.c 194 struct in_addr netmask, addr, broadcast; local
198 broadcast.s_addr = 0;
205 broadcast = *((struct in_addr *)(rta+1));
211 if (!((*ipv4_callback)(addr, ifa->ifa_index, netmask, broadcast, parm)))
  /external/webkit/JavaScriptCore/wtf/
ThreadingNone.cpp 56 void ThreadCondition::broadcast() { } function in class:WTF::ThreadCondition
ThreadingPthreads.cpp 385 void ThreadCondition::broadcast() function in class:WTF::ThreadCondition
ThreadingWin.cpp 48 * This file includes timedWait/signal/broadcast implementations translated to WebKit coding style from the latest algorithm by
488 void ThreadCondition::broadcast() function in class:WTF::ThreadCondition
  /frameworks/base/core/java/android/os/
Broadcaster.java 171 public void broadcast(Message msg) method in class:Broadcaster
  /dalvik/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/
DdmServer.java 106 private static void broadcast(int event) method in class:DdmServer
  /dalvik/vm/
Ddm.c 187 * Broadcast an event to all handlers.
189 static void broadcast(int event) function
200 bcast = dvmFindDirectMethodByDescriptor(ddmServerClass, "broadcast", "(I)V");
202 LOGW("Unable to find DdmServer.broadcast\n");
209 LOGE("ERROR: DDM broadcast with thread status=%d\n", self->status);
216 LOGI("Exception thrown by broadcast(%d)\n", event);
236 broadcast(CONNECTED);
247 broadcast(DISCONNECTED);
280 * Because we broadcast the full set of threads when the notifications are
  /external/webkit/JavaScriptCore/wtf/gtk/
ThreadingGtk.cpp 241 void ThreadCondition::broadcast() function in class:WTF::ThreadCondition
  /external/webkit/JavaScriptCore/wtf/qt/
ThreadingQt.cpp 286 void ThreadCondition::broadcast() function in class:WTF::ThreadCondition
  /hardware/ti/wlan/wl1271/stad/src/Connection_Managment/
admCtrlWpa.c 109 Max broadcast cipher in the IE
116 ECipherSuite broadcast; member in struct:__anon8768
589 length -= 4; /* broadcast suite */
    [all...]
admCtrlWpa2.c 117 Max broadcast cipher in the IE
124 ECipherSuite broadcast; member in struct:__anon8772
    [all...]
rsn.c 632 /* reset unicast and broadcast ciphers after disconnect */
1773 const TI_UINT8 broadcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; local
    [all...]
  /packages/apps/AlarmClock/src/com/android/alarmclock/
AlarmAlertFullScreen.java 171 PendingIntent broadcast = local
178 Alarms.formatTime(this, c)), broadcast);
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmAlertFullScreen.java 174 PendingIntent broadcast = local
181 Alarms.formatTime(this, c)), broadcast);
  /system/wlan/ti/sta_dk_4_0_4_32/common/src/core/rsn/
admCtrlWpa.c 124 Max broadcast cipher in the IE
131 cipherSuite_e broadcast; member in struct:__anon13602
599 length -= 4; /* broadcast suite */
    [all...]
rsn.c 1634 const UINT8 broadcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; local
    [all...]
admCtrlWpa2.c 126 Max broadcast cipher in the IE
133 cipherSuite_e broadcast; member in struct:__anon13603
    [all...]
  /system/wlan/ti/wilink_6_1/stad/src/Connection_Managment/
admCtrlWpa.c 109 Max broadcast cipher in the IE
116 ECipherSuite broadcast; member in struct:__anon14604
590 length -= 4; /* broadcast suite */
    [all...]
rsn.c 1626 const TI_UINT8 broadcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff}; local
    [all...]
admCtrlWpa2.c 117 Max broadcast cipher in the IE
124 ECipherSuite broadcast; member in struct:__anon14608
    [all...]
  /external/grub/netboot/
main.c 66 static const unsigned char broadcast[] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; variable
231 eth_transmit (broadcast, IP, len, buf);
276 eth_transmit (broadcast, ARP, sizeof (arpreq), &arpreq);
316 * broadcast packets. This will cause the reply to the packets we are
509 eth_transmit (broadcast, RARP, sizeof (rarpreq), &rarpreq);
596 * which may now be filled with broadcast packets. This will
893 && (! grub_memcmp (broadcast, bootpreply->bp_hwaddr, ETH_ALEN)
  /frameworks/base/include/utils/
threads.h 323 void broadcast();
384 inline void Condition::broadcast() { function in class:android::Condition
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
MonitorThread.java 382 // on first DDM packet received, broadcast a "ready" message
384 broadcast(CLIENT_READY, client); method
436 broadcast(CLIENT_DISCONNECTED, client); method
587 broadcast(CLIENT_DISCONNECTED, c); method
649 * Broadcast an event to all message handlers.
651 private void broadcast(int event, Client client) { method in class:MonitorThread
652 Log.d("ddms", "broadcast " + event + ": " + client);

Completed in 4145 milliseconds

1 2