Searched defs:endstr (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/libelf/common/
H A Dgetarsym.c96 char *endstr = (char *)off + sz; local
128 if ((n > 0) && (((str = (char *)endoff) >= endstr) ||
129 (*(endstr - 1) != '\0'))) {
151 if (str >= endstr) {
/illumos-gate/usr/src/cmd/bnu/
H A Deio.c531 char bufr[EBUFSIZ], *endstr; local
536 /* point endstr to last character to be sent */
537 if ((endstr = strchr(str, '\n')) != 0)
538 *endstr = 0;
540 endstr = str + strlen(str);
542 memcpy(bufr+1, str, (endstr - str) + 1); /* include '\0' */
544 len = (endstr - str) + 2; /* include bufr[0] and '\0' */
/illumos-gate/usr/src/cmd/pbind/
H A Dpbind.c372 char *endstr; local
374 cpu = strtol(str, &endstr, 10);
375 if (endstr != NULL && *endstr != '\0' || cpu < 0)
402 char *endstr; local
499 cpu = (id_t)strtol(*argv, &endstr, 10);
500 if (errno != 0 || (endstr != NULL && *endstr != '\0') ||
528 pid = (id_t)strtol(*argv, &endstr, 10);
530 (endstr !
[all...]
/illumos-gate/usr/src/uts/sun4u/cpu/
H A Dspitfire.c110 uint_t logflags, const char *endstr, const char *fmt, ...);
3153 * endstr: a end string to appear at the end of this log
3168 * newline+4spaces<endstr>
3170 * Note that <endstr> may not start on a newline if we are logging <CPU_PSYND>;
3171 * it is assumed that <endstr> will be the unum string in this case. The size
3179 const char *endstr, const char *fmt, ...)
3319 if (endstr != NULL) {
3321 (void) snprintf(p, (size_t)(q - p), "\n %s", endstr);
3323 (void) snprintf(p, (size_t)(q - p), "%s", endstr);
3178 cpu_aflt_log(int ce_code, int tagnum, spitf_async_flt *spflt, uint_t logflags, const char *endstr, const char *fmt, ...) argument

Completed in 71 milliseconds