HomeSort by relevance Sort by last modified time
    Searched full:mess (Results 1 - 25 of 439) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/dnsmasq/src/
rfc2131.c 87 static void option_put(struct dhcp_packet *mess, unsigned char *end, int opt, int len, unsigned int val);
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, unsigned char *end, int null_term);
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; local
131 unsigned char *end = (unsigned char *)(mess + 1);
812 do_encap_opts(pxe_opts(pxearch, netid), OPTION_VENDOR_CLASS_OPT, DHOPT_VENDOR_MATCH, mess, end, 0); local
    [all...]
bpf.c 154 void send_via_bpf(struct dhcp_packet *mess, size_t len,
176 if (mess->htype != ARPHRD_ETHER || mess->hlen != ETHER_ADDR_LEN)
179 mess->htype, ifr->ifr_name);
190 if (ntohs(mess->flags) & 0x8000)
197 memcpy(ether.ether_dhost, mess->chaddr, ETHER_ADDR_LEN);
198 ip.ip_dst.s_addr = mess->yiaddr.s_addr;
222 ((char *)mess)[len] = 0; /* for checksum, in case length is odd. */
233 sum += ((u16 *)mess)[i];
246 iov[3].iov_base = mess;
    [all...]
tftp.c 23 static ssize_t tftp_err(int err, char *packet, char *mess, char *file);
378 } *mess = (struct ack *)daemon->packet; local
392 if (ntohs(mess->op) == OP_ACK && ntohs(mess->block) == (unsigned short)transfer->block)
400 else if (ntohs(mess->op) == OP_ERR)
417 (int)ntohs(mess->block), err,
499 } *mess = (struct errmess *)packet; local
503 mess->op = htons(OP_ERR);
504 mess->err = htons(err);
505 ret += (snprintf(mess->message, 500, message, file, errstr) + 1)
526 } *mess = (struct oackmess *)packet; local
549 } *mess = (struct datamess *)packet; local
    [all...]
dhcp.c 104 struct dhcp_packet *mess; local
161 mess = (struct dhcp_packet *)daemon->dhcp_packet.iov_base;
170 if ((msg.msg_flags & MSG_TRUNC) || sz < (ssize_t)(sizeof(*mess) - sizeof(mess->options)))
237 parm.relay = mess->giaddr;
261 mess = (struct dhcp_packet *)daemon->dhcp_packet.iov_base;
267 if (mess->giaddr.s_addr)
271 dest.sin_addr = mess->giaddr;
273 else if (mess->ciaddr.s_addr)
279 if ((!is_inform && dest.sin_addr.s_addr != mess->ciaddr.s_addr) |
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/verify/b2/
Test_b2.java 26 * @title attempt to mess around with register-pairs.
39 * @title attempt to mess around with register-pairs.
52 * @title attempt to mess around with register-pairs.
65 * @title attempt to mess around with register-pairs.
78 * @title attempt to mess around with register-pairs.
  /external/clang/test/PCH/
variables.h 2 // Do not mess with the whitespace in this file. It's important.
  /external/dnsmasq/contrib/wrt/
dhcp_lease_time.c 96 static unsigned char *option_find(struct dhcp_packet *mess, size_t size, int opt_type, int minsize)
101 if ((ret = option_find1(&mess->options[0], ((unsigned char *)mess) + size, opt_type, minsize)))
105 if (!(overload = option_find1(&mess->options[0], ((unsigned char *)mess) + size, OPTION_OVERLOAD, 1)))
110 (ret = option_find1(&mess->file[0], &mess->file[128], opt_type, minsize)))
115 (ret = option_find1(&mess->sname[0], &mess->sname[64], opt_type, minsize)))
  /external/llvm/test/Transforms/ADCE/
2002-05-22-PHITest.ll 1 ; It is illegal to remove BB1 because it will mess up the PHI node!
  /hardware/libhardware/
Android.mk 3 # Setting LOCAL_PATH will mess up all-subdir-makefiles, so do it beforehand.
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/security/auth/x500/
X500PrincipalTest.java 343 /*byte [] mess = {0x30, 0x30,
365 /*byte [] mess = {0x30, 0x30,
381 byte[] mess = { 0x30, (byte) 0x81, (byte) 0x9A, 0x31, 0x0A, 0x30, 0x08,
399 ByteArrayInputStream is = new ByteArrayInputStream(mess);
413 byte[] mess = { 0x30, 0x0C, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
415 ByteArrayInputStream is = new ByteArrayInputStream(mess);
425 /*byte [] mess = {0x30, 0x30,
449 byte[] mess = { 0x30, 0x0C, 0x31, 0x0A, 0x30, 0x08, 0x06, 0x03, 0x55,
451 X500Principal principal = new X500Principal(mess);
452 mess[mess.length - 1] = (byte) 0xFF
    [all...]
  /dalvik/dx/tests/093-ssa-invoke-range/
Blort.java 55 // with a differing category doesn't mess us up.
  /hardware/libhardware_legacy/
Android.mk 3 # Setting LOCAL_PATH will mess up all-subdir-makefiles, so do it beforehand.
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExtendedType.java 70 * will mess up existing hashtable entries!
83 * will mess up existing hashtable entries!
  /external/boringssl/src/util/bot/go/
env.py 29 # Do not want to mess with sys.path, load the module directly.
  /external/dexmaker/
README 14 It includes a stock code generator for class proxies. If you just want to do AOP or class mocking, you don't need to mess around with bytecodes.
  /external/llvm/test/CodeGen/X86/
2010-03-05-EFLAGS-Redef.ll 4 ; branch folding pass. That makes a complete mess of the %EFLAGS liveness, but
splat-const.ll 25 ; (as opposed to the previous mess)
  /external/llvm/test/MC/ARM/
comment.s 41 @ Make sure we did not mess up the parser state and it still lexes
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
CallbackFilter.java 32 * @param allMethods all the methods found on the instance. Don't mess with the contents of this list!!!
  /external/v8/test/mjsunit/compiler/
switch-bailout.js 30 // Test that bailing out of the optimized compilation doesn't mess with
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x501/
NameTest.java 38 private static final byte[] mess = { field in class:NameTest
69 Name principal = (Name) Name.ASN1.decode(mess);
79 ByteArrayInputStream is = new ByteArrayInputStream(mess);
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fclose.c 59 fp->_r = fp->_w = 0; /* Mess up if reaccessed. */
  /build/core/tasks/
ide.mk 50 # the mess below with ./src tries to guess whether the src
  /external/dnsmasq/contrib/lease-access/
lease.access.patch 276 struct dhcp_packet *mess;
415 +static int check_access_script( int piperead, struct dhcp_lease *lease, struct dhcp_packet *mess, time_t now)
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/mockito/src/org/mockito/internal/progress/
MockingProgressImpl.java 81 //this cannot really be tested functionally because I cannot dynamically mess up org.mockito.configuration.MockitoConfiguration class

Completed in 2522 milliseconds

1 2 3 4 5 6 7 8 91011>>