Home
last modified time | relevance | path

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

/system/core/toolbox/upstream-netbsd/lib/libc/gen/
Dgetbsize.c58 char *ep, *p; in __weak_alias() local
67 if ((n = strtol(p, &ep, 10)) < 0) in __weak_alias()
71 if (*ep && ep[1]) in __weak_alias()
73 switch (*ep) { in __weak_alias()
/system/core/libutils/
DProcessCallStack.cpp134 struct dirent *ep; in update() local
162 while ((code = readdir_r(dp, &entry, &ep)) == 0 && ep != NULL) { in update()
164 sscanf(ep->d_name, "%d", &tid); in update()
169 __FUNCTION__, PATH_SELF_TASK, ep->d_name); in update()
/system/core/logcat/tests/
Dlogcat_test.cpp130 char *ep = cp; in fgetLongTime() local
131 while (isdigit(*ep)) { in fgetLongTime()
132 ++ep; in fgetLongTime()
134 if ((*ep != '-') && (*ep != '.')) { in fgetLongTime()
138 while (((ep = strchr(ep, ':'))) && (*++ep != ' ')) { in fgetLongTime()
141 if (!ep) { in fgetLongTime()
144 ep -= 7; in fgetLongTime()
145 *ep = '\0'; in fgetLongTime()
/system/core/logcat/
Dlogcat.cpp434 char *ep = t.strptime(cp, "%m-%d %H:%M:%S.%q"); in parseTime() local
435 if (ep) { in parseTime()
436 return ep; in parseTime()
438 ep = t.strptime(cp, "%Y-%m-%d %H:%M:%S.%q"); in parseTime()
439 if (ep) { in parseTime()
440 return ep; in parseTime()
502 char *ep = parseTime(t, line.c_str()); in lastLogTime() local
503 if (!ep || (*ep != ' ')) { in lastLogTime()
/system/core/toolbox/upstream-netbsd/usr.bin/grep/
Dgrep.c317 char *ep; in main() local
419 l = strtoull(optarg, &ep, 10); in main()
423 else if (ep[0] != '\0') { in main()
508 mcount = strtoull(optarg, &ep, 10); in main()
512 else if (ep[0] != '\0') { in main()
/system/core/logd/
DLogKlog.cpp256 char *ep = buffer + len; in onDataAvailable() local
257 *ep = '\0'; in onDataAvailable()
262 if (((tok + sublen) >= ep) && (retval != 0) && full) { in onDataAvailable()
281 const char *ep = real.strptime(real_string, "%Y-%m-%d %H:%M:%S.%09q UTC"); in calculateCorrection() local
282 if (!ep || (ep > &real_string[len]) || (real > log_time(CLOCK_REALTIME))) { in calculateCorrection()
/system/core/fastboot/
Dusb_linux.cpp400 bulk.ep = handle_->ep_out; in Write()
434 bulk.ep = handle_->ep_in; in Read()
/system/update_engine/sample_images/
Dgenerate_images.sh54 sudo setcap cap_net_raw=ep "${mntdir}"/regular-with_net_cap
/system/core/libusbhost/
Dusbhost.c613 ctrl.ep = endpoint; in usb_device_bulk_transfer()