Home
last modified time | relevance | path

Searched refs:ep (Results 1 – 25 of 203) sorted by relevance

123456789

/external/tcpdump/
Dprint-ahcp.c103 ahcp_time_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_time_print() argument
109 if (cp + 4 != ep) in ahcp_time_print()
123 ND_TCHECK2(*cp, ep - cp); in ahcp_time_print()
131 ahcp_seconds_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_seconds_print() argument
133 if (cp + 4 != ep) in ahcp_seconds_print()
141 ND_TCHECK2(*cp, ep - cp); in ahcp_seconds_print()
149 ahcp_ipv6_addresses_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_ipv6_addresses_print() argument
153 while (cp < ep) { in ahcp_ipv6_addresses_print()
154 if (cp + 16 > ep) in ahcp_ipv6_addresses_print()
169 ND_TCHECK2(*cp, ep - cp); in ahcp_ipv6_addresses_print()
[all …]
Dprint-openflow-1.0.c739 const u_char *cp, const u_char *ep, const u_int len) in of10_data_print() argument
752 return ep; in of10_data_print()
757 const u_char *cp, const u_char *ep, const u_int len) in of10_bsn_message_print() argument
899 if (fn_printn(ndo, cp, len - 8, ep)) { in of10_bsn_message_print()
920 if (fn_printn(ndo, cp, len - 4, ep)) { in of10_bsn_message_print()
957 return ep; in of10_bsn_message_print()
962 const u_char *cp, const u_char *ep, const u_int len) in of10_bsn_actions_print() argument
1031 return ep; in of10_bsn_actions_print()
1036 const u_char *cp, const u_char *ep, const u_int len) in of10_vendor_action_print() argument
1052 return decoder(ndo, cp, ep, len - 4); in of10_vendor_action_print()
[all …]
Dprint-dvmrp.c71 register const u_char *ep; in dvmrp_print() local
74 ep = (const u_char *)ndo->ndo_snapend; in dvmrp_print()
75 if (bp >= ep) in dvmrp_print()
90 if (print_probe(ndo, bp, ep, len) < 0) in dvmrp_print()
98 if (print_report(ndo, bp, ep, len) < 0) in dvmrp_print()
109 if (print_neighbors(ndo, bp, ep, len) < 0) in dvmrp_print()
128 if (print_neighbors2(ndo, bp, ep, len) < 0) in dvmrp_print()
163 register const u_char *bp, register const u_char *ep, in print_report() argument
189 if (bp + width + 1 > ep) { in print_report()
221 register const u_char *bp, register const u_char *ep, in print_probe() argument
[all …]
Dprint-openflow.c79 of_header_body_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in of_header_body_print() argument
85 if (ep < cp + OF_HEADER_LEN) in of_header_body_print()
116 return of10_header_body_print(ndo, cp, ep, type, length, xid); in of_header_body_print()
125 ND_TCHECK2(*cp, ep - cp); in of_header_body_print()
126 return ep; in of_header_body_print()
129 return ep; in of_header_body_print()
137 const u_char *ep = cp + len; in openflow_print() local
140 while (cp < ep) in openflow_print()
141 cp = of_header_body_print(ndo, cp, ep); in openflow_print()
Dprint-pim.c230 register const u_char *ep; in pimv1_print() local
233 ep = (const u_char *)ndo->ndo_snapend; in pimv1_print()
234 if (bp >= ep) in pimv1_print()
420 register const u_char *ep; in pim_print() local
423 ep = (const u_char *)ndo->ndo_snapend; in pim_print()
424 if (bp >= ep) in pim_print()
627 register const u_char *ep; in pimv2_print() local
631 ep = (const u_char *)ndo->ndo_snapend; in pimv2_print()
632 if (bp >= ep) in pimv2_print()
634 if (ep > bp + len) in pimv2_print()
[all …]
Dprint-ether.c93 register const struct ether_header *ep; in ether_hdr_print() local
96 ep = (const struct ether_header *)bp; in ether_hdr_print()
99 etheraddr_string(ndo, ESRC(ep)), in ether_hdr_print()
100 etheraddr_string(ndo, EDST(ep)))); in ether_hdr_print()
102 ether_type = EXTRACT_16BITS(&ep->ether_type); in ether_hdr_print()
131 struct ether_header *ep; in ether_print() local
150 ep = (struct ether_header *)p; in ether_print()
153 ether_type = EXTRACT_16BITS(&ep->ether_type); in ether_print()
161 if (llc_print(ndo, p, length, caplen, ESRC(ep), EDST(ep), in ether_print()
167 ether_hdr_print(ndo, (u_char *)ep, orig_length); in ether_print()
[all …]
Dprint-zeromq.c79 zmtp1_print_frame(netdissect_options *ndo, const u_char *cp, const u_char *ep) in zmtp1_print_frame() argument
107 body_len_captured = ep - cp - header_len; in zmtp1_print_frame()
139 return ep; in zmtp1_print_frame()
145 const u_char *ep = min(ndo->ndo_snapend, cp + len); in zmtp1_print() local
148 while (cp < ep) in zmtp1_print()
149 cp = zmtp1_print_frame(ndo, cp, ep); in zmtp1_print()
214 const u_char *ep = min(ndo->ndo_snapend, cp + len); in zmtp1_print_datagram() local
217 while (cp < ep) in zmtp1_print_datagram()
218 cp = zmtp1_print_frame(ndo, cp, ep); in zmtp1_print_datagram()
Daddrtoname.c323 lookup_emem(const u_char *ep) in lookup_emem() argument
328 k = (ep[0] << 8) | ep[1]; in lookup_emem()
329 j = (ep[2] << 8) | ep[3]; in lookup_emem()
330 i = (ep[4] << 8) | ep[5]; in lookup_emem()
470 etheraddr_string(netdissect_options *ndo, register const u_char *ep) in etheraddr_string() argument
478 tp = lookup_emem(ep); in etheraddr_string()
491 if (ether_ntohost(buf2, (struct ether_addr *)ep) == 0) { in etheraddr_string()
498 oui = EXTRACT_24BITS(ep); in etheraddr_string()
499 *cp++ = hex[*ep >> 4 ]; in etheraddr_string()
500 *cp++ = hex[*ep++ & 0xf]; in etheraddr_string()
[all …]
Dprint-isakmp.c635 const u_char *ep, uint32_t phase,
745 if (ep < (u_char *)(p)) { \
888 const u_char *cp, const u_char *ep) in ike_show_somedata() argument
891 const u_char *end = ep - 20; in ike_show_somedata()
893 int len = ep - cp; in ike_show_somedata()
901 elen = ep - end; in ike_show_somedata()
925 const u_char *p, const u_char *ep, in ikev1_attrmap_print() argument
935 if (ep < p + totlen) { in ikev1_attrmap_print()
937 return ep + 1; in ikev1_attrmap_print()
962 ikev1_attr_print(netdissect_options *ndo, const u_char *p, const u_char *ep) in ikev1_attr_print() argument
[all …]
Dprint-aoe.c148 const u_char *ep = cp + len; in aoev1_issue_print() local
202 ND_TCHECK2(*cp, ep - cp); in aoev1_issue_print()
212 const u_char *ep = cp + len; in aoev1_query_print() local
251 ND_TCHECK2(*cp, ep - cp); in aoev1_query_print()
261 const u_char *ep = cp + len; in aoev1_mac_print() local
302 ND_TCHECK2(*cp, ep - cp); in aoev1_mac_print()
312 const u_char *ep = cp + len; in aoev1_reserve_print() local
337 ND_TCHECK2(*cp, ep - cp); in aoev1_reserve_print()
348 const u_char *ep = cp + len; in aoev1_print() local
395 ND_TCHECK2(*cp, ep - cp); in aoev1_print()
[all …]
Dprint-atalk.c385 const u_char *ep; in nbp_print() local
399 ep = ndo->ndo_snapend; in nbp_print()
400 if ((const u_char *)tp > ep) { in nbp_print()
409 if ((const u_char *)(tp + 1) > ep) { in nbp_print()
413 (void)nbp_name_print(ndo, tp, ep); in nbp_print()
435 tp = nbp_tuple_print(ndo, tp, ep, snet, snode, skt); in nbp_print()
447 register const char *cp, register const u_char *ep) in print_cstring() argument
451 if (cp >= (const char *)ep) { in print_cstring()
463 if (cp >= (const char *)ep) { in print_cstring()
474 register const struct atNBPtuple *tp, register const u_char *ep, in nbp_tuple_print() argument
[all …]
/external/autotest/client/tests/kvm/autotest_control/
Dnpb.control17 # ep.A ep.B ep.C ep.D ep.E ep.S ep.W
27 job.run_test(url='npb', tests='ep.A ep.B')
/external/autotest/client/tests/npb/
Dcontrol17 # ep.A ep.B ep.C ep.D ep.E ep.S ep.W
27 job.run_test(url='npb', tests='ep.A ep.B bt.S bt.W')
/external/bison/lib/
Dunsetenv.c60 char **ep; in __libc_lock_define_initialized() local
72 ep = __environ; in __libc_lock_define_initialized()
73 while (*ep != NULL) in __libc_lock_define_initialized()
74 if (!strncmp (*ep, name, len) && (*ep)[len] == '=') in __libc_lock_define_initialized()
77 char **dp = ep; in __libc_lock_define_initialized()
85 ++ep; in __libc_lock_define_initialized()
/external/openssh/openbsd-compat/
Dinet_ntop.c118 char *tp, *ep; in inet_ntop6() local
159 ep = tmp + sizeof(tmp); in inet_ntop6()
160 for (i = 0; i < (IN6ADDRSZ / INT16SZ) && tp < ep; i++) { in inet_ntop6()
165 if (tp + 1 >= ep) in inet_ntop6()
173 if (tp + 1 >= ep) in inet_ntop6()
180 if (!inet_ntop4(src+12, tp, (size_t)(ep - tp))) in inet_ntop6()
185 advance = snprintf(tp, ep - tp, "%x", words[i]); in inet_ntop6()
186 if (advance <= 0 || advance >= ep - tp) in inet_ntop6()
192 if (tp + 1 >= ep) in inet_ntop6()
196 if (tp + 1 >= ep) in inet_ntop6()
Dstrtonum.c38 char *ep; in strtonum() local
55 ll = strtoll(numstr, &ep, 10); in strtonum()
56 if (numstr == ep || *ep != '\0') in strtonum()
/external/libusb-compat/libusb/
Dcore.c349 static void clear_endpoint_descriptor(struct usb_endpoint_descriptor *ep) in clear_endpoint_descriptor() argument
351 if (ep->extra) in clear_endpoint_descriptor()
352 free(ep->extra); in clear_endpoint_descriptor()
729 API_EXPORTED int usb_resetep(usb_dev_handle *dev, unsigned int ep) in usb_resetep() argument
731 return compat_err(usb_clear_halt(dev, ep)); in usb_resetep()
734 API_EXPORTED int usb_clear_halt(usb_dev_handle *dev, unsigned int ep) in usb_clear_halt() argument
736 usbi_dbg("endpoint %x", ep); in usb_clear_halt()
737 return compat_err(libusb_clear_halt(dev->handle, ep & 0xff)); in usb_clear_halt()
746 static int usb_bulk_io(usb_dev_handle *dev, int ep, char *bytes, in usb_bulk_io() argument
751 usbi_dbg("endpoint %x size %d timeout %d", ep, size, timeout); in usb_bulk_io()
[all …]
/external/ipsec-tools/src/libipsec/
Dpfkey.c382 caddr_t ep; in pfkey_send_getspi() local
430 ep = ((caddr_t)(void *)newmsg) + len; in pfkey_send_getspi()
432 p = pfkey_setsadbmsg((void *)newmsg, ep, SADB_GETSPI, in pfkey_send_getspi()
439 p = pfkey_setsadbxsa2(p, ep, mode, reqid); in pfkey_send_getspi()
446 p = pfkey_setsadbaddr(p, ep, SADB_EXT_ADDRESS_SRC, src, (u_int)plen, in pfkey_send_getspi()
454 p = pfkey_setsadbaddr(p, ep, SADB_EXT_ADDRESS_DST, dst, (u_int)plen, in pfkey_send_getspi()
465 if (p + sizeof(spirange) > ep) { in pfkey_send_getspi()
480 if (p != ep) { in pfkey_send_getspi()
570 caddr_t ep; in pfkey_send_delete_all() local
604 ep = ((caddr_t)(void *)newmsg) + len; in pfkey_send_delete_all()
[all …]
/external/autotest/client/site_tests/security_SuidBinaries/
Dbaseline.fscap1 /bin/arping = cap_net_raw+ep
2 /bin/ping = cap_net_raw+ep
3 /bin/ping6 = cap_net_raw+ep
4 /sbin/unix_chkpwd = cap_dac_override+ep
5 /usr/bin/fusermount = cap_sys_admin+ep
/external/giflib/
Dgifalloc.c230 ExtensionBlock *ep; in GifAddExtensionBlock() local
246 ep = &(*ExtensionBlocks)[(*ExtensionBlockCount)++]; in GifAddExtensionBlock()
248 ep->Function = Function; in GifAddExtensionBlock()
249 ep->ByteCount=Len; in GifAddExtensionBlock()
250 ep->Bytes = (GifByteType *)malloc(ep->ByteCount); in GifAddExtensionBlock()
251 if (ep->Bytes == NULL) in GifAddExtensionBlock()
255 memcpy(ep->Bytes, ExtData, Len); in GifAddExtensionBlock()
265 ExtensionBlock *ep; in GifFreeExtensions() local
270 for (ep = *ExtensionBlocks; in GifFreeExtensions()
271 ep < (*ExtensionBlocks + *ExtensionBlockCount); in GifFreeExtensions()
[all …]
/external/mksh/src/
Dmain.c922 struct env *ep; in newenv() local
931 ep = (void *)(cp - ALLOC_SIZE); in newenv()
933 ainit(&ep->area); in newenv()
934 ep->oenv = e; in newenv()
935 ep->loc = e->loc; in newenv()
936 ep->savefd = NULL; in newenv()
937 ep->temps = NULL; in newenv()
938 ep->yyrecursive_statep = NULL; in newenv()
939 ep->type = type; in newenv()
940 ep->flags = 0; in newenv()
[all …]
/external/libpcap/
Doptimize.c259 propedom(struct edge *ep) in propedom() argument
261 SET_INSERT(ep->edom, ep->id); in propedom()
262 if (ep->succ) { in propedom()
263 SET_INTERSECT(ep->succ->et.edom, ep->edom, edgewords); in propedom()
264 SET_INTERSECT(ep->succ->ef.edom, ep->edom, edgewords); in propedom()
1277 fold_edge(struct block *child, struct edge *ep) in fold_edge() argument
1281 int code = ep->code; in fold_edge()
1294 aval1 = ep->pred->val[A_ATOM]; in fold_edge()
1295 oval1 = ep->pred->oval; in fold_edge()
1329 opt_j(struct edge *ep) in opt_j() argument
[all …]
/external/icu/icu4c/source/test/intltest/
Dplurults.cpp513 const char* ep = rp; in testGetAllKeywordValues()
514 while (*ep && *ep != ':') ++ep; in testGetAllKeywordValues()
517 UnicodeString keyword(rp, ep - rp, US_INV); in testGetAllKeywordValues()
530 if (*ep) { in testGetAllKeywordValues()
531 ++ep; // skip colon in testGetAllKeywordValues()
532 while (*ep && *ep == ' ') ++ep; // and spaces in testGetAllKeywordValues()
537 if (*ep != 'n') { in testGetAllKeywordValues()
538 errln("expected values for keyword %s but got -1 (%s)", rp, ep); in testGetAllKeywordValues()
541 } else if (*ep == 'n') { in testGetAllKeywordValues()
542 errln("expected count of -1, got %d, for keyword %s (%s)", count, rp, ep); in testGetAllKeywordValues()
[all …]
/external/openssh/
Dmd5crypt.c54 static const char *sp, *ep; in md5_crypt() local
68 for (ep = sp; *ep != '$'; ep++) { in md5_crypt()
69 if (*ep == '\0' || ep >= (sp + 8)) in md5_crypt()
74 sl = ep - sp; in md5_crypt()
/external/libgsm/src/
Drpe.c387 static void RPE_grid_positioning P3((Mc,xMp,ep),
390 register word * ep /* [0..39] OUT */
405 case 3: *ep++ = 0;
407 *ep++ = 0;
408 case 1: *ep++ = 0;
409 case 0: *ep++ = *xMp++;
412 while (++Mc < 4) *ep++ = 0;
434 void Gsm_Update_of_reconstructed_short_time_residual_signal P3((dpp, ep, dp),
436 word * ep, /* [0...39] IN */
445 dp[ -40 + k ] = gsm_add( ep[k], dpp[k] );

123456789