/freebsd/contrib/sendmail/libsm/ |
H A D | t-qic.c | 56 char *obp, *bp; local 62 obp = quote_internal_chars(in, out, &outlen, NULL); 65 dequote_internal_chars(obp, line_back, sizeof(line_back)); 67 dequote_internal_chars(obp, line_back, strlen(obp)); 69 dequote_internal_chars(obp, line_back, strlen(obp) + 1); 83 bp = str2prt(obp); 87 return obp; 105 char line_in[1024], line[256], line_out[32], *obp; local 150 obp = quote_unquote(line_in, line_out, los, 0, mode); 151 if (obp != line_out) [all …]
|
H A D | util.c | 152 (ibp, obp, bsp, rpool in quote_internal_chars_tagged() argument 158 char *obp; 177 buffer_same = ibp == obp; 179 if (NULL == obp) 196 obp = sm_rpool_malloc_tagged_x(rpool, olen, tag, line, group); 213 bufused = sm_strlcpy(obp, ibp, *bsp); 216 return obp; 221 obp = sm_malloc_tagged_x(olen, tag, line + 1, group); 226 for (ip = ibp, op = obp, bufused = 0; *ip != '\0'; ip++) 237 return obp; [all …]
|
H A D | t-ixlen.c | 42 char *obp; local 49 obp = quote_internal_chars(str, NULL, &outlen, NULL); 50 leni = strlen(obp); 52 for (ilen = 0; *obp != '\0'; obp++, ilen++) 54 XLEN(*obp);
|
H A D | t-str2prt.c | 35 char *obp; local 51 obp = str2prt(inout[i].qic_in); 52 cmp = strcmp(inout[i].qic_out, obp); 57 fprintf(stderr, "got: %s\n", obp);
|
/freebsd/contrib/sendmail/include/sm/ |
H A D | sendmail.h | 26 # define quote_internal_chars(ibp, obp, bsp, rpool) quote_internal_chars_tagged(ibp, obp, bsp, rpoo… argument 29 # define quote_internal_chars_tagged(ibp, obp, bsp, rpool, file, line, group) quote_internal_chars(… argument
|
/freebsd/contrib/sendmail/src/ |
H A D | headers.c | 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 [all …]
|
H A D | readcf.c | 867 translate_dollars(ibp, obp, bsp) in translate_dollars() argument 869 char *obp; 883 bp = quote_internal_chars(ibp, obp, bsp, NULL);
|
/freebsd/contrib/nvi/ex/ |
H A D | ex_print.c | 272 exp->obp_len += n = vsnprintf(exp->obp + exp->obp_len, in ex_printf() 273 sizeof(exp->obp) - exp->obp_len, fmt, ap); in ex_printf() 277 if (exp->obp[exp->obp_len - 1] == '\n' || in ex_printf() 278 exp->obp_len > sizeof(exp->obp) / 2) in ex_printf() 299 if (exp->obp_len > sizeof(exp->obp)) in ex_puts() 301 if ((exp->obp[exp->obp_len++] = *str++) == '\n') in ex_puts() 323 sp->gp->scr_msg(sp, M_NONE, exp->obp, exp->obp_len); in ex_fflush()
|
H A D | ex.h | 187 char obp[1024]; /* Ex output buffer. */ member
|
/freebsd/sys/geom/uzip/ |
H A D | g_uzip_lzma.c | 66 void *ibp, size_t ilen, void *obp) in g_uzip_lzma_decompress() argument 74 lzp->b.out = obp; in g_uzip_lzma_decompress() 82 "in_size=%jd, out_size=%jd\n", __func__, ibp, obp, in g_uzip_lzma_decompress()
|
H A D | g_uzip_zlib.c | 61 size_t ilen, void *obp) in g_uzip_zlib_decompress() argument 70 zp->zs.next_out = obp; in g_uzip_zlib_decompress()
|
/freebsd/contrib/tcsh/ |
H A D | sh.dol.c | 973 Char *lbp, *obp, *mbp; in heredoc() local 1025 obp = obuf; in heredoc() 1067 *obp++ = (Char) c; in heredoc() 1068 if (obp == OBUF_END) { in heredoc() 1071 obp = obuf; in heredoc() 1126 *obp++ = *mbp & TRIM; in heredoc() 1127 if (obp == OBUF_END) { in heredoc() 1130 obp = obuf; in heredoc() 1133 *obp++ = '\n'; in heredoc() 1134 if (obp == OBUF_END) { in heredoc() [all …]
|
/freebsd/contrib/nvi/common/ |
H A D | conv.c | 225 char *obp = cw->bp1.c + offset; \ in default_int2char() 232 ret = iconv(id, (iconv_src_t)&bp, lenp, &obp, \ in default_int2char()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | dbuf.c | 5130 blkptr_t *obp = &dr->dt.dl.dr_overridden_by; in dbuf_write_override_done() local 5133 if (!BP_EQUAL(zio->io_bp, obp)) { in dbuf_write_override_done() 5134 if (!BP_IS_HOLE(obp)) in dbuf_write_override_done() 5135 dsl_free(spa_get_dsl(zio->io_spa), zio->io_txg, obp); in dbuf_write_override_done()
|