Lines Matching refs:obp
2038 register char *obp; local
2046 obp = obuf + strlen(obuf);
2058 if (SPACELEFT(obuf, obp) - 1 < (size_t) l)
2059 l = SPACELEFT(obuf, obp) - 1;
2061 (void) sm_snprintf(obp, SPACELEFT(obuf, obp), "%.*s", l, v);
2065 obp = obuf;
2067 *obp++ = ' ';
2071 (void) sm_snprintf(obp, SPACELEFT(obuf, obp), "%.*s",
2072 (int) (SPACELEFT(obuf, obp) - 1), v);
2106 register char *obp; local
2133 obp = obuf;
2134 (void) sm_snprintf(obp, SPACELEFT(obuf, obp), "%.200s:", h->h_field);
2139 obp += opos;
2159 (void) sm_snprintf(obp, SPACELEFT(obuf, obp), "%*s", spaces,
2162 obp += spaces;
2163 SM_ASSERT(obp < &obuf[MAXLINE]);
2281 (void) sm_strlcpy(obp, ",\n", SPACELEFT(obuf, obp));
2284 obp = obuf;
2285 (void) sm_strlcpy(obp, " ", sizeof(obuf));
2286 opos = strlen(obp);
2287 obp += opos;
2292 (void) sm_strlcpy(obp, ", ", SPACELEFT(obuf, obp));
2293 obp += 2;
2296 while ((c = *name++) != '\0' && obp < &obuf[MAXLINE])
2297 *obp++ = c;
2301 if (obp < &obuf[sizeof(obuf)])
2302 *obp = '\0';