Searched refs:str_buf (Results 1 - 25 of 29) sorted by relevance

12

/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dattr_scan0.c217 static int attr_scan0_data(VSTREAM *fp, VSTRING *str_buf, argument
227 if (base64_decode(str_buf, STR(base64_buf), LEN(base64_buf)) == 0) {
237 static int attr_scan0_number(VSTREAM *fp, unsigned *ptr, VSTRING *str_buf, argument
243 if ((ch = attr_scan0_string(fp, str_buf, context)) < 0)
245 if (sscanf(STR(str_buf), "%u%c", ptr, &junk) != 1 || junk != 0) {
247 VSTREAM_PATH(fp), context, STR(str_buf));
256 VSTRING *str_buf,
262 if ((ch = attr_scan0_string(fp, str_buf, context)) < 0)
264 if (sscanf(STR(str_buf), "%lu%c", ptr, &junk) != 1 || junk != 0) {
266 VSTREAM_PATH(fp), context, STR(str_buf));
255 attr_scan0_long_number(VSTREAM *fp, unsigned long *ptr, VSTRING *str_buf, const char *context) argument
277 static VSTRING *str_buf = 0; local
[all...]
H A Dattr_scan_plain.c231 static int attr_scan_plain_data(VSTREAM *fp, VSTRING *str_buf, argument
242 if (base64_decode(str_buf, STR(base64_buf), LEN(base64_buf)) == 0) {
252 static int attr_scan_plain_number(VSTREAM *fp, unsigned *ptr, VSTRING *str_buf, argument
258 if ((ch = attr_scan_plain_string(fp, str_buf, terminator, context)) < 0)
260 if (sscanf(STR(str_buf), "%u%c", ptr, &junk) != 1 || junk != 0) {
262 VSTREAM_PATH(fp), context, STR(str_buf));
271 VSTRING *str_buf,
278 if ((ch = attr_scan_plain_string(fp, str_buf, terminator, context)) < 0)
280 if (sscanf(STR(str_buf), "%lu%c", ptr, &junk) != 1 || junk != 0) {
282 VSTREAM_PATH(fp), context, STR(str_buf));
270 attr_scan_plain_long_number(VSTREAM *fp, unsigned long *ptr, VSTRING *str_buf, int terminator, const char *context) argument
293 static VSTRING *str_buf = 0; local
[all...]
H A Dattr_scan64.c240 static int attr_scan64_number(VSTREAM *fp, unsigned *ptr, VSTRING *str_buf, argument
246 if ((ch = attr_scan64_string(fp, str_buf, context)) < 0)
248 if (sscanf(STR(str_buf), "%u%c", ptr, &junk) != 1 || junk != 0) {
250 VSTREAM_PATH(fp), context, STR(str_buf));
259 VSTRING *str_buf,
265 if ((ch = attr_scan64_string(fp, str_buf, context)) < 0)
267 if (sscanf(STR(str_buf), "%lu%c", ptr, &junk) != 1 || junk != 0) {
269 VSTREAM_PATH(fp), context, STR(str_buf));
280 static VSTRING *str_buf = 0; local
310 if (str_buf
258 attr_scan64_long_number(VSTREAM *fp, unsigned long *ptr, VSTRING *str_buf, const char *context) argument
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/smtp/
H A Dsmtp_chat.c17 /* VSTRING *str_buf;
257 if (rdata.str_buf == 0) {
259 rdata.str_buf = vstring_alloc(100);
270 VSTRING_RESET(rdata.str_buf);
286 chat_append_flag = (LEN(rdata.str_buf) < var_line_limit);
292 session->namaddrport, var_line_limit, STR(rdata.str_buf));
321 if (LEN(rdata.str_buf))
322 VSTRING_ADDCH(rdata.str_buf, '\n');
323 vstring_strcat(rdata.str_buf, STR(session->buffer));
413 VSTRING_TERMINATE(rdata.str_buf);
[all...]
/netbsd-current/external/cddl/osnet/dist/tools/ctf/cvt/
H A Dstrtab.h40 ulong_t str_buf; /* index of string data buffer */ member in struct:strhash
H A Dstrtab.c113 ulong_t b = hp->str_buf;
186 hp->str_buf = sp->str_nbufs - 1;
243 ulong_t b = hp->str_buf;
/netbsd-current/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_strtab.h40 ulong_t str_buf; /* index of string data buffer */ member in struct:dt_strhash
H A Ddt_strtab.c151 ulong_t b = hp->str_buf;
250 hp->str_buf = sp->str_nbufs - 1;
/netbsd-current/external/gpl3/binutils.old/dist/libiberty/
H A Drust-demangle.c427 struct str_buf struct
436 str_buf_reserve (struct str_buf *buf, size_t extra)
494 str_buf_append (struct str_buf *buf, const char *data, size_t len)
507 str_buf_append ((struct str_buf *)opaque, data, len);
513 struct str_buf out;
H A Dregex.c6194 CHAR_T str_buf[WORK_BUFFER_SIZE];
6310 str_buf[i] = TRANSLATE(*d);
6311 str_buf[i+1] = '\0';
6314 match = __wcscoll (workp, str_buf);
6316 match = wcscoll (workp, str_buf);
6322 /* (str_buf > workp) indicate (str_buf + X > workp),
6323 because for all X (str_buf + X > str_buf).
6327 /* Otherwise(str_buf < work
6177 CHAR_T str_buf[WORK_BUFFER_SIZE]; local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/libiberty/
H A Drust-demangle.c427 struct str_buf struct
436 str_buf_reserve (struct str_buf *buf, size_t extra)
494 str_buf_append (struct str_buf *buf, const char *data, size_t len)
507 str_buf_append ((struct str_buf *)opaque, data, len);
513 struct str_buf out;
H A Dregex.c6194 CHAR_T str_buf[WORK_BUFFER_SIZE];
6310 str_buf[i] = TRANSLATE(*d);
6311 str_buf[i+1] = '\0';
6314 match = __wcscoll (workp, str_buf);
6316 match = wcscoll (workp, str_buf);
6322 /* (str_buf > workp) indicate (str_buf + X > workp),
6323 because for all X (str_buf + X > str_buf).
6327 /* Otherwise(str_buf < work
6177 CHAR_T str_buf[WORK_BUFFER_SIZE]; local
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/libiberty/
H A Drust-demangle.c427 struct str_buf struct
436 str_buf_reserve (struct str_buf *buf, size_t extra)
494 str_buf_append (struct str_buf *buf, const char *data, size_t len)
507 str_buf_append ((struct str_buf *)opaque, data, len);
513 struct str_buf out;
H A Dregex.c6194 CHAR_T str_buf[WORK_BUFFER_SIZE];
6310 str_buf[i] = TRANSLATE(*d);
6311 str_buf[i+1] = '\0';
6314 match = __wcscoll (workp, str_buf);
6316 match = wcscoll (workp, str_buf);
6322 /* (str_buf > workp) indicate (str_buf + X > workp),
6323 because for all X (str_buf + X > str_buf).
6327 /* Otherwise(str_buf < work
6177 CHAR_T str_buf[WORK_BUFFER_SIZE]; local
[all...]
/netbsd-current/external/bsd/wpa/dist/src/utils/
H A Dxml_libxml2.c24 struct str_buf { struct
33 struct str_buf *str = ctx_ptr;
62 struct str_buf errors;
123 struct str_buf errors;
/netbsd-current/external/gpl3/gcc.old/dist/libgfortran/io/
H A Dwrite.c1577 char str_buf[BUF_STACK_SZ]; local
1585 result = select_string (dtp, f, str_buf, &res_len, kind);
1692 char str_buf[BUF_STACK_SZ]; local
1703 result = select_string (dtp, &f, str_buf, &res_len, kind);
1728 char str_buf[BUF_STACK_SZ]; local
1759 result = select_string (dtp, &ff, str_buf, &res_len, kind);
/netbsd-current/external/gpl3/gcc/dist/libgfortran/io/
H A Dwrite.c1622 char str_buf[BUF_STACK_SZ]; local
1630 result = select_string (dtp, f, str_buf, &res_len, kind);
1744 char str_buf[BUF_STACK_SZ]; local
1755 result = select_string (dtp, &f, str_buf, &res_len, kind);
1780 char str_buf[BUF_STACK_SZ]; local
1811 result = select_string (dtp, &ff, str_buf, &res_len, kind);
/netbsd-current/external/gpl3/binutils/dist/libiberty/
H A Drust-demangle.c1499 struct str_buf struct
1508 str_buf_reserve (struct str_buf *buf, size_t extra)
1566 str_buf_append (struct str_buf *buf, const char *data, size_t len)
1579 str_buf_append ((struct str_buf *)opaque, data, len);
1585 struct str_buf out;
H A Dregex.c6198 CHAR_T str_buf[WORK_BUFFER_SIZE];
6314 str_buf[i] = TRANSLATE(*d);
6315 str_buf[i+1] = '\0';
6318 match = __wcscoll (workp, str_buf);
6320 match = wcscoll (workp, str_buf);
6326 /* (str_buf > workp) indicate (str_buf + X > workp),
6327 because for all X (str_buf + X > str_buf).
6331 /* Otherwise(str_buf < work
6181 CHAR_T str_buf[WORK_BUFFER_SIZE]; local
[all...]
/netbsd-current/external/gpl3/gcc/dist/libiberty/
H A Drust-demangle.c1470 struct str_buf struct
1479 str_buf_reserve (struct str_buf *buf, size_t extra)
1537 str_buf_append (struct str_buf *buf, const char *data, size_t len)
1550 str_buf_append ((struct str_buf *)opaque, data, len);
1556 struct str_buf out;
H A Dregex.c6198 CHAR_T str_buf[WORK_BUFFER_SIZE];
6314 str_buf[i] = TRANSLATE(*d);
6315 str_buf[i+1] = '\0';
6318 match = __wcscoll (workp, str_buf);
6320 match = wcscoll (workp, str_buf);
6326 /* (str_buf > workp) indicate (str_buf + X > workp),
6327 because for all X (str_buf + X > str_buf).
6331 /* Otherwise(str_buf < work
6181 CHAR_T str_buf[WORK_BUFFER_SIZE]; local
[all...]
/netbsd-current/external/gpl3/gdb/dist/libiberty/
H A Drust-demangle.c1499 struct str_buf struct
1508 str_buf_reserve (struct str_buf *buf, size_t extra)
1566 str_buf_append (struct str_buf *buf, const char *data, size_t len)
1579 str_buf_append ((struct str_buf *)opaque, data, len);
1585 struct str_buf out;
H A Dregex.c6198 CHAR_T str_buf[WORK_BUFFER_SIZE];
6314 str_buf[i] = TRANSLATE(*d);
6315 str_buf[i+1] = '\0';
6318 match = __wcscoll (workp, str_buf);
6320 match = wcscoll (workp, str_buf);
6326 /* (str_buf > workp) indicate (str_buf + X > workp),
6327 because for all X (str_buf + X > str_buf).
6331 /* Otherwise(str_buf < work
6181 CHAR_T str_buf[WORK_BUFFER_SIZE]; local
[all...]
/netbsd-current/external/gpl2/diffutils/dist/lib/
H A Dregex.c6410 CHAR_T str_buf[WORK_BUFFER_SIZE];
6513 str_buf[i] = TRANSLATE(*d);
6514 str_buf[i+1] = '\0';
6516 match = wcscoll (workp, str_buf);
6521 /* (str_buf > workp) indicate (str_buf + X > workp),
6522 because for all X (str_buf + X > str_buf).
6526 /* Otherwise(str_buf < workp),
6527 (str_buf
6393 CHAR_T str_buf[WORK_BUFFER_SIZE]; local
[all...]
/netbsd-current/external/gpl2/gettext/dist/gettext-tools/libgrep/
H A Dregex.c6293 CHAR_T str_buf[WORK_BUFFER_SIZE];
6396 str_buf[i] = TRANSLATE(*d);
6397 str_buf[i+1] = '\0';
6399 match = wcscoll (workp, str_buf);
6404 /* (str_buf > workp) indicate (str_buf + X > workp),
6405 because for all X (str_buf + X > str_buf).
6409 /* Otherwise(str_buf < workp),
6410 (str_buf
6276 CHAR_T str_buf[WORK_BUFFER_SIZE]; local
[all...]

Completed in 351 milliseconds

12