/external/dnsmasq/src/ |
D | rfc2131.c | 87 static void option_put(struct dhcp_packet *mess, unsigned char *end, int opt, int len, unsigned int… 88 static void option_put_string(struct dhcp_packet *mess, unsigned char *end, 95 static unsigned char *option_find(struct dhcp_packet *mess, size_t size, int opt_type, int minsize); 97 static size_t dhcp_packet_size(struct dhcp_packet *mess, struct dhcp_netid *netid, 99 static void clear_packet(struct dhcp_packet *mess, unsigned char *end); 101 struct dhcp_packet *mess, 114 static void do_encap_opts(struct dhcp_opt *opts, int encap, int flag, struct dhcp_packet *mess, uns… 115 static void pxe_misc(struct dhcp_packet *mess, unsigned char *end, unsigned char *uuid); 130 struct dhcp_packet *mess = (struct dhcp_packet *)daemon->dhcp_packet.iov_base; in dhcp_reply() local 131 unsigned char *end = (unsigned char *)(mess + 1); in dhcp_reply() [all …]
|
D | tftp.c | 23 static ssize_t tftp_err(int err, char *packet, char *mess, char *file); 378 } *mess = (struct ack *)daemon->packet; in check_tftp_listeners() local 392 if (ntohs(mess->op) == OP_ACK && ntohs(mess->block) == (unsigned short)transfer->block) in check_tftp_listeners() 400 else if (ntohs(mess->op) == OP_ERR) in check_tftp_listeners() 417 (int)ntohs(mess->block), err, in check_tftp_listeners() 499 } *mess = (struct errmess *)packet; in tftp_err() local 503 mess->op = htons(OP_ERR); in tftp_err() 504 mess->err = htons(err); in tftp_err() 505 ret += (snprintf(mess->message, 500, message, file, errstr) + 1); in tftp_err() 506 my_syslog(MS_TFTP | LOG_ERR, "TFTP %s", mess->message); in tftp_err() [all …]
|
D | bpf.c | 154 void send_via_bpf(struct dhcp_packet *mess, size_t len, in send_via_bpf() argument 176 if (mess->htype != ARPHRD_ETHER || mess->hlen != ETHER_ADDR_LEN) in send_via_bpf() 179 mess->htype, ifr->ifr_name); in send_via_bpf() 190 if (ntohs(mess->flags) & 0x8000) in send_via_bpf() 197 memcpy(ether.ether_dhost, mess->chaddr, ETHER_ADDR_LEN); in send_via_bpf() 198 ip.ip_dst.s_addr = mess->yiaddr.s_addr; in send_via_bpf() 222 ((char *)mess)[len] = 0; /* for checksum, in case length is odd. */ in send_via_bpf() 233 sum += ((u16 *)mess)[i]; in send_via_bpf() 246 iov[3].iov_base = mess; in send_via_bpf()
|
D | dhcp.c | 104 struct dhcp_packet *mess; in dhcp_packet() local 161 mess = (struct dhcp_packet *)daemon->dhcp_packet.iov_base; in dhcp_packet() 170 if ((msg.msg_flags & MSG_TRUNC) || sz < (ssize_t)(sizeof(*mess) - sizeof(mess->options))) in dhcp_packet() 237 parm.relay = mess->giaddr; in dhcp_packet() 261 mess = (struct dhcp_packet *)daemon->dhcp_packet.iov_base; in dhcp_packet() 267 if (mess->giaddr.s_addr) in dhcp_packet() 271 dest.sin_addr = mess->giaddr; in dhcp_packet() 273 else if (mess->ciaddr.s_addr) in dhcp_packet() 279 if ((!is_inform && dest.sin_addr.s_addr != mess->ciaddr.s_addr) || in dhcp_packet() 283 dest.sin_addr = mess->ciaddr; in dhcp_packet() [all …]
|
/external/dnsmasq/contrib/wrt/ |
D | dhcp_lease_time.c | 96 static unsigned char *option_find(struct dhcp_packet *mess, size_t size, int opt_type, int minsize) in option_find() argument 101 if ((ret = option_find1(&mess->options[0], ((unsigned char *)mess) + size, opt_type, minsize))) in option_find() 105 …if (!(overload = option_find1(&mess->options[0], ((unsigned char *)mess) + size, OPTION_OVERLOAD, … in option_find() 110 (ret = option_find1(&mess->file[0], &mess->file[128], opt_type, minsize))) in option_find() 115 (ret = option_find1(&mess->sname[0], &mess->sname[64], opt_type, minsize))) in option_find()
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x501/ |
D | NameTest.java | 38 private static final byte[] mess = { field in NameTest 69 Name principal = (Name) Name.ASN1.decode(mess); in testGetName1779() 79 ByteArrayInputStream is = new ByteArrayInputStream(mess); in testStreamGetName1779()
|
/external/dnsmasq/contrib/lease-access/ |
D | lease.access.patch | 276 struct dhcp_packet *mess; 415 +static int check_access_script( int piperead, struct dhcp_lease *lease, struct dhcp_packet *mess, … 428 + lease_set_hwaddr(lease, mess->chaddr, NULL, mess->hlen, mess->htype, 0); 477 mess->op = BOOTREPLY; 482 mess->yiaddr = lease->addr; 488 (!(lease = lease_allocate(mess->yiaddr)))) 496 + if (check_access_script(piperead, lease, mess, now) < 0)
|
/external/mksh/src/ |
D | histrap.c | 1052 sigtraps[i].mess = sys_siglist[i]; in inittraps() 1054 sigtraps[i].mess = strsignal(i); in inittraps() 1056 sigtraps[i].mess = NULL; in inittraps() 1058 if ((sigtraps[i].mess == NULL) || in inittraps() 1059 (sigtraps[i].mess[0] == '\0')) in inittraps() 1060 sigtraps[i].mess = shf_smprintf("%s %d", in inittraps() 1065 sigtraps[ksh_SIGEXIT].mess = "Exit trap"; in inittraps() 1068 sigtraps[ksh_SIGERR].mess = "Error handler"; in inittraps()
|
D | jobs.c | 1563 sigtraps[stopsig].mess : "Stopped", sizeof(buf)); in j_print() 1593 sigtraps[termsig].mess : "Signalled", in j_print()
|
/external/llvm/test/Transforms/ADCE/ |
D | 2002-05-22-PHITest.ll | 1 ; It is illegal to remove BB1 because it will mess up the PHI node!
|
/external/libmicrohttpd/src/testzzuf/ |
D | README | 3 zzuf is used to randomly mess with the TCP connection between the CURL
|
/external/llvm/test/MC/ARM/ |
D | comment.s | 41 @ Make sure we did not mess up the parser state and it still lexes
|
/external/llvm/test/CodeGen/X86/ |
D | 2010-03-05-EFLAGS-Redef.ll | 4 ; branch folding pass. That makes a complete mess of the %EFLAGS liveness, but
|
D | splat-const.ll | 25 ; (as opposed to the previous mess)
|
D | lsr-loop-exit-cond.ll | 147 ; Check that DAGCombiner doesn't mess up the IV update when the exiting value
|
/external/dexmaker/ |
D | README | 14 …s proxies. If you just want to do AOP or class mocking, you don't need to mess around with bytecod…
|
/external/llvm/test/CodeGen/AArch64/ |
D | fast-isel-cmp-vec.ll | 6 ; Verify that we don't mess up vector comparisons in fast-isel.
|
/external/chromium-trace/catapult/third_party/webapp2/docs/_themes/webapp2/static/ |
D | webapp2.css | 4 /* This stylesheet is stil a mess. :) */
|
/external/valgrind/docs/internals/ |
D | BIG_APP_NOTES.txt | 35 # before and so on the first run, the new build wants to mess with
|
D | howto_BUILD_KDE42.txt | 7 mess up any existing KDE sessions/settings.
|
/external/dbus/doc/ |
D | TODO | 127 string/hostname-based mess. per-screen is then done by appending screen number
|
/external/valgrind/ |
D | README.android | 93 # Do configuration stuff. Don't mess with the --prefix in the
|
/external/libchrome/base/allocator/ |
D | BUILD.gn | 38 # TODO(brettw) this is only used in one place and is kind of mess, because it
|
/external/curl/docs/ |
D | DISTRO-DILEMMA | 21 licensed programs have avoided this license mess by adding an exception[8] to
|
/external/libevent/ |
D | whatsnew-2.0.txt | 78 2.2. New thread-safe, binary-compatible, harder-to-mess-up APIs 599 might mess with global state can all run each in their own 601 crash or mess up global state, it doesn't affect any others.
|