Home
last modified time | relevance | path

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

/system/core/sh/
Derror.c357 struct errname const *ep; in errmsg() local
360 for (ep = errormsg ; ep->errcode ; ep++) { in errmsg()
361 if (ep->errcode == e && (ep->action & action) != 0) in errmsg()
362 return ep->msg; in errmsg()
Dvar.c396 char **ep; in environment() local
404 ep = env = stalloc((nenv + 1) * sizeof *env); in environment()
408 *ep++ = vp->text; in environment()
410 *ep = NULL; in environment()
/system/core/libutils/
DProcessCallStack.cpp128 struct dirent *ep; in update() local
157 while ((code = readdir_r(dp, &entry, &ep)) == 0 && ep != NULL) { in update()
159 sscanf(ep->d_name, "%d", &tid); in update()
164 __FUNCTION__, PATH_SELF_TASK, ep->d_name); in update()
/system/core/toolbox/grep/
Dgrep.c320 char *ep; in grep_main() local
422 l = strtoull(optarg, &ep, 10); in grep_main()
426 else if (ep[0] != '\0') { in grep_main()
511 mcount = strtoull(optarg, &ep, 10); in grep_main()
515 else if (ep[0] != '\0') { in grep_main()
/system/core/fastboot/
Dusb_linux.c323 bulk.ep = h->ep_out; in usb_write()
341 bulk.ep = h->ep_out; in usb_write()
375 bulk.ep = h->ep_in; in usb_read()
/system/core/libusbhost/
Dusbhost.c598 ctrl.ep = endpoint; in usb_device_bulk_transfer()