HomeSort by relevance Sort by last modified time
    Searched defs:ep (Results 51 - 75 of 269) sorted by null

1 23 4 5 6 7 8 91011

  /system/core/libutils/
ProcessCallStack.cpp 154 dirent* ep; local
155 while ((ep = readdir(dp.get())) != NULL) {
157 sscanf(ep->d_name, "%d", &tid);
162 __FUNCTION__, PATH_SELF_TASK, ep->d_name);
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbDevice.java 58 UsbEndpoint ep = intf.getEndpoint(i); local
59 if (ep.getType() == UsbConstants.USB_ENDPOINT_XFER_BULK) {
60 if (ep.getDirection() == UsbConstants.USB_DIR_OUT) {
61 epOut = ep;
63 epIn = ep;
  /development/samples/USB/MissileLauncher/src/com/android/missilelauncher/
MissileLauncherActivity.java 127 UsbEndpoint ep = intf.getEndpoint(0); local
128 if (ep.getType() != UsbConstants.USB_ENDPOINT_XFER_INT) {
133 mEndpointIntr = ep;
  /device/google/marlin/usb/
Usb.cpp 334 struct dirent *ep; local
336 while ((ep = readdir(dp))) {
337 if (ep->d_type == DT_LNK) {
338 if (std::string::npos == std::string(ep->d_name).find("-partner")) {
340 names->find(ep->d_name);
342 names->insert({ep->d_name, false});
345 (*names)[std::strtok(ep->d_name, "-")] = true;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
lmathlib.c 163 int ep = luaL_checkint(L, 2); local
164 lua_pushnumber(L, l_mathop(ldexp)(x, ep));
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCallTemplate.java 153 ElemParam ep = (ElemParam)ete; local
154 if(ep.getName().equals(ewp.getName()))
  /external/dhcpcd-6.8.2/
script.c 549 char **env, **ep, *s; local
562 ep = env;
563 while (*ep)
564 free(*ep++);
621 char **env = NULL, **ep; local
646 ep = realloc(env, sizeof(char *) * (elen + 2 + (svcname ? 1 : 0)));
647 if (ep == NULL) {
651 env = ep;
728 ep = env;
729 while (*ep)
    [all...]
  /external/freetype/src/autofit/
afmodule.c 248 char* ep; local
255 dp[i] = (FT_Int)ft_strtol( s, &ep, 10 );
256 if ( *ep != ',' || s == ep )
259 s = ep + 1;
262 dp[7] = (FT_Int)ft_strtol( s, &ep, 10 );
263 if ( !( *ep == '\0' || *ep == ' ' ) || s == ep )
  /external/giflib/
dgif_lib.c 614 ExtensionBlock *ep = &GifFile->SavedImages[ImageIndex].ExtensionBlocks[i]; local
615 if (ep->Function == GRAPHICS_EXT_FUNC_CODE)
616 return DGifExtensionToGCB(ep->ByteCount, ep->Bytes, GCB);
    [all...]
egif_lib.c 680 ExtensionBlock *ep = &GifFile->SavedImages[ImageIndex].ExtensionBlocks[i]; local
681 if (ep->Function == GRAPHICS_EXT_FUNC_CODE) {
682 EGifGCBToExtension(GCB, ep->Bytes);
1061 ExtensionBlock *ep; local
    [all...]
  /external/libpcap/
nametoaddr.c 451 register u_char *ep, *e; local
454 e = ep = (u_char *)malloc(6);
466 *ep++ = d;
477 register struct pcap_etherent *ep; local
492 while ((ep = pcap_next_etherent(fp)) != NULL) {
493 if (strcmp(ep->name, name) == 0) {
496 memcpy(ap, ep->addr, 6);
  /external/ltp/testcases/kernel/io/ltp-aiodio/
aiocp.c 180 struct io_event *ep; local
191 for (ep = events; n-- > 0; ep++) {
192 io_callback_t cb = (io_callback_t) ep->data;
193 struct iocb *iocb = ep->obj;
197 ep, iocb, ep->res, ep->res2);
199 cb(ctx, iocb, ep->res, ep->res2)
    [all...]
  /external/ltp/testcases/network/stress/ns-tools/
ns-common.c 519 char *sp, *ep; local
557 ep = strchr(sp, ',');
558 if (ep != NULL)
559 *ep = '\0';
572 sp = ep + 1;
ns-icmpv6_sender.c 251 char *sp, *ep; local
313 ep = strchr(sp, ',');
314 if (ep != NULL)
315 *ep = '\0';
325 sp = ep + 1;
  /external/one-true-awk/
lex.c 539 char *ep = ebuf; variable
560 if (ep >= ebuf + sizeof ebuf)
561 ep = ebuf;
562 return *ep++ = c;
572 if (--ep < ebuf)
573 ep = ebuf + sizeof(ebuf) - 1;
  /external/syslinux/com32/lua/src/
lmathlib.c 163 int ep = luaL_checkint(L, 2); local
164 lua_pushnumber(L, l_mathop(ldexp)(x, ep));
  /external/syslinux/com32/modules/
linux.c 381 char *ep; local
384 type = strtoul(arg, &ep, 10);
385 if (ep[0] != '=' || !ep[1])
391 if (setup_data_file(setup_data, type, ep+1, opt_quiet))
  /external/syslinux/core/
dmi.c 269 const char *p, *ep; local
282 ep = p = str;
285 ep = p+1;
290 q = nstr = malloc(pfxlen + (ep-str) + 1);
295 memcpy(q, str, ep-str);
296 q += (ep-str);
  /external/syslinux/core/fs/pxe/
http_readdir.c 329 char *ep; member in struct:entity_state
337 if (!st->ep) {
340 st->ep = st->entity_buf;
346 st->ep = NULL;
378 } else if (st->ep < st->entity_buf + sizeof st->entity_buf - 1) {
379 *st->ep++ = c;
  /external/syslinux/gpxe/src/arch/i386/core/
wince_loader.c 6 static char ** ep; variable
270 ep = phys_to_virt(BOOT_ARG_PTR_LOCATION);
271 *ep= virt_to_phys(&BootArgs);
  /external/tcpdump/
print-ahcp.c 101 ahcp_time_print(netdissect_options *ndo, const u_char *cp, const u_char *ep)
107 if (cp + 4 != ep)
121 ND_TCHECK2(*cp, ep - cp);
129 ahcp_seconds_print(netdissect_options *ndo, const u_char *cp, const u_char *ep)
131 if (cp + 4 != ep)
139 ND_TCHECK2(*cp, ep - cp);
147 ahcp_ipv6_addresses_print(netdissect_options *ndo, const u_char *cp, const u_char *ep)
151 while (cp < ep) {
152 if (cp + 16 > ep)
163 ND_TCHECK2(*cp, ep - cp)
350 const u_char *ep = cp + len; local
    [all...]
print-aoe.c 146 const u_char *ep = cp + len; local
200 ND_TCHECK2(*cp, ep - cp);
210 const u_char *ep = cp + len; local
249 ND_TCHECK2(*cp, ep - cp);
259 const u_char *ep = cp + len; local
300 ND_TCHECK2(*cp, ep - cp);
310 const u_char *ep = cp + len; local
335 ND_TCHECK2(*cp, ep - cp);
346 const u_char *ep = cp + len; local
393 ND_TCHECK2(*cp, ep - cp)
403 const u_char *ep = cp + len; local
    [all...]
print-atalk.c 416 const u_char *ep; local
429 /* ep points to end of available data */
430 ep = ndo->ndo_snapend;
431 if ((const u_char *)tp > ep) {
440 if ((const u_char *)(tp + 1) > ep) {
444 (void)nbp_name_print(ndo, tp, ep);
466 tp = nbp_tuple_print(ndo, tp, ep, snet, snode, skt);
478 register const char *cp, register const u_char *ep)
482 if (cp >= (const char *)ep) {
494 if (cp >= (const char *)ep) {
    [all...]
print-mobility.c 206 const u_char *ep; local
212 /* 'ep' points to the end of available data. */
213 ep = ndo->ndo_snapend;
228 mhlen = ep - bp;
  /external/toybox/kconfig/
menu.c 233 struct expr *parentdep, *basedep, *dep, *dep2, **ep; local
332 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr)
334 *ep = expr_alloc_one(E_CHOICE, NULL);
335 (*ep)->right.sym = menu->sym;

Completed in 5909 milliseconds

1 23 4 5 6 7 8 91011