HomeSort by: relevance | last modified time | path
    Searched refs:out_buf (Results 1 - 25 of 49) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_stacktrace_libcdep.cc 106 void __sanitizer_symbolize_pc(uptr pc, const char *fmt, char *out_buf,
112 internal_strncpy(out_buf, "<can't symbolize>", out_buf_size);
113 out_buf[out_buf_size - 1] = 0;
119 char *out_end = out_buf + out_buf_size - 1;
120 for (SymbolizedStack *cur = frame; cur && out_buf < out_end;
129 uptr n = out_end - out_buf - 1;
130 internal_strncpy(out_buf, frame_desc.data(), n);
131 out_buf += __sanitizer::Min<uptr>(n, frame_desc.length());
132 *out_buf++ = 0;
134 CHECK(out_buf <= out_end)
    [all...]
  /src/external/gpl3/gdb.old/dist/gdbsupport/
rsp-low.h 64 long, into escaped binary data in OUT_BUF. Only copy memory units that fit
65 completely in OUT_BUF. Set *OUT_LEN_UNITS to the number of units from
66 BUFFER successfully encoded in OUT_BUF, and return the number of bytes used
67 in OUT_BUF. The total number of bytes in the output buffer will be at most
72 int unit_size, gdb_byte *out_buf,
76 in OUT_BUF. Return the number of bytes written to OUT_BUF.
82 gdb_byte *out_buf, int out_maxlen);
rsp-low.cc 180 gdb_byte *out_buf, int *out_len_units,
219 out_buf[output_byte_index++] = '}';
220 out_buf[output_byte_index++] = b ^ 0x20;
223 out_buf[output_byte_index++] = b;
235 gdb_byte *out_buf, int out_maxlen)
251 out_buf[output_index++] = b ^ 0x20;
257 out_buf[output_index++] = b;
  /src/external/gpl3/gdb/dist/gdbsupport/
rsp-low.h 64 long, into escaped binary data in OUT_BUF. Only copy memory units that fit
65 completely in OUT_BUF. Set *OUT_LEN_UNITS to the number of units from
66 BUFFER successfully encoded in OUT_BUF, and return the number of bytes used
67 in OUT_BUF. The total number of bytes in the output buffer will be at most
72 int unit_size, gdb_byte *out_buf,
76 in OUT_BUF. Return the number of bytes written to OUT_BUF.
82 gdb_byte *out_buf, int out_maxlen);
rsp-low.cc 180 gdb_byte *out_buf, int *out_len_units,
219 out_buf[output_byte_index++] = '}';
220 out_buf[output_byte_index++] = b ^ 0x20;
223 out_buf[output_byte_index++] = b;
235 gdb_byte *out_buf, int out_maxlen)
251 out_buf[output_index++] = b ^ 0x20;
257 out_buf[output_index++] = b;
  /src/external/ibm-public/postfix/dist/src/util/
readlline.c 301 VSTRING *out_buf = vstring_alloc(100); local
325 if (readllines(out_buf, fp, &last_line, &first_line) == 0) {
326 VSTRING_RESET(out_buf);
327 VSTRING_TERMINATE(out_buf);
329 if (LEN(out_buf) != LEN(exp_buf)) {
331 (long) LEN(out_buf), (long) LEN(exp_buf));
332 } else if (memcmp(STR(out_buf), STR(exp_buf), LEN(out_buf)) != 0) {
334 STR(escape(esc_buf, STR(out_buf), LEN(out_buf))),
    [all...]
byte_mask.c 281 VSTRING *out_buf = vstring_alloc(1); local
291 demo_str = str_byte_mask_opt(out_buf, "mask", demo_table,
297 demo_str = str_byte_mask_opt(out_buf, "mask", demo_table,
304 vstring_free(out_buf);
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_stacktrace_libcdep.cpp 81 static void CopyStringToBuffer(const InternalScopedString &str, char *out_buf,
88 internal_memcpy(out_buf, str.data(), copy_size);
89 out_buf[copy_size] = '\0';
121 uptr StackTrace::PrintTo(char *out_buf, uptr out_buf_size) const {
122 CHECK(out_buf);
126 CopyStringToBuffer(output, out_buf, out_buf_size);
190 void __sanitizer_symbolize_pc(uptr pc, const char *fmt, char *out_buf,
203 CopyStringToBuffer(output, out_buf, out_buf_size);
208 char *out_buf, uptr out_buf_size) {
210 out_buf[0] = 0
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_stacktrace_libcdep.cpp 80 static void CopyStringToBuffer(const InternalScopedString &str, char *out_buf,
87 internal_memcpy(out_buf, str.data(), copy_size);
88 out_buf[copy_size] = '\0';
120 uptr StackTrace::PrintTo(char *out_buf, uptr out_buf_size) const {
121 CHECK(out_buf);
125 CopyStringToBuffer(output, out_buf, out_buf_size);
189 void __sanitizer_symbolize_pc(uptr pc, const char *fmt, char *out_buf,
202 CopyStringToBuffer(output, out_buf, out_buf_size);
207 char *out_buf, uptr out_buf_size) {
209 out_buf[0] = 0
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/
passwd.c 325 static char out_buf[6 + 9 + 24 + 2]; local
338 out_buf[0] = 0;
362 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
367 OPENSSL_strlcat(out_buf, ascii_magic, sizeof(out_buf));
368 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
371 OPENSSL_strlcat(out_buf, ascii_salt, sizeof(out_buf));
515 static char out_buf[3 + 17 + 17 + 86 + 1]; local
    [all...]
  /src/crypto/external/bsd/openssl/dist/apps/
passwd.c 317 static char out_buf[6 + 9 + 24 + 2]; local
330 out_buf[0] = 0;
354 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
359 OPENSSL_strlcat(out_buf, ascii_magic, sizeof(out_buf));
360 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
363 OPENSSL_strlcat(out_buf, ascii_salt, sizeof(out_buf));
510 static char out_buf[3 + 17 + 17 + 86 + 1]; local
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/apps/
passwd.c 314 static char out_buf[6 + 9 + 24 + 2]; local
327 out_buf[0] = 0;
351 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
356 OPENSSL_strlcat(out_buf, ascii_magic, sizeof(out_buf));
357 OPENSSL_strlcat(out_buf, ascii_dollar, sizeof(out_buf));
360 OPENSSL_strlcat(out_buf, ascii_salt, sizeof(out_buf));
507 static char out_buf[3 + 17 + 17 + 86 + 1]; local
    [all...]
  /src/external/bsd/wpa/dist/src/eap_server/
eap_server_tnc.c 24 struct wpabuf *out_buf; member in struct:eap_tnc_data
98 wpabuf_free(data->out_buf);
227 send_len = wpabuf_len(data->out_buf) - data->out_used;
247 wpabuf_put_be32(req, wpabuf_len(data->out_buf));
249 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
253 if (data->out_used == wpabuf_len(data->out_buf)) {
257 wpabuf_free(data->out_buf);
258 data->out_buf = NULL;
267 (unsigned long) wpabuf_len(data->out_buf) -
289 if (data->out_buf == NULL)
    [all...]
eap_server_wsc.c 23 struct wpabuf *out_buf; member in struct:eap_wsc_data
161 wpabuf_free(data->out_buf);
195 send_len = wpabuf_len(data->out_buf) - data->out_used;
218 wpabuf_put_be16(req, wpabuf_len(data->out_buf));
220 wpabuf_put_data(req, wpabuf_head_u8(data->out_buf) + data->out_used,
224 if (data->out_used == wpabuf_len(data->out_buf)) {
228 wpabuf_free(data->out_buf);
229 data->out_buf = NULL;
235 (unsigned long) wpabuf_len(data->out_buf) -
252 if (data->out_buf == NULL)
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_filter_program.c 116 char *out_buf; member in struct:program_filter
394 char *out_buf; local
401 out_buf = malloc(out_buf_len);
402 if (state == NULL || out_buf == NULL ||
410 free(out_buf);
419 state->out_buf = out_buf;
425 free(state->out_buf);
461 p = state->out_buf;
475 *buff = state->out_buf;
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
dvo_ch7xxx.c 145 u8 out_buf[2]; local
153 .buf = out_buf,
163 out_buf[0] = addr;
164 out_buf[1] = 0;
183 u8 out_buf[2]; local
188 .buf = out_buf,
191 out_buf[0] = addr;
192 out_buf[1] = ch;
dvo_sil164.c 78 u8 out_buf[2]; local
86 .buf = out_buf,
96 out_buf[0] = addr;
97 out_buf[1] = 0;
115 u8 out_buf[2]; local
120 .buf = out_buf,
123 out_buf[0] = addr;
124 out_buf[1] = ch;
dvo_tfp410.c 103 u8 out_buf[2]; local
111 .buf = out_buf,
121 out_buf[0] = addr;
122 out_buf[1] = 0;
140 u8 out_buf[2]; local
145 .buf = out_buf,
148 out_buf[0] = addr;
149 out_buf[1] = ch;
dvo_ivch.c 201 u8 out_buf[1]; local
214 .buf = out_buf,
224 out_buf[0] = addr;
244 u8 out_buf[3]; local
249 .buf = out_buf,
252 out_buf[0] = addr;
253 out_buf[1] = data & 0xff;
254 out_buf[2] = data >> 8;
  /src/external/gpl3/gcc.old/dist/libsanitizer/include/sanitizer/
dfsan_interface.h 119 /// \param [out] out_buf The output buffer to write the results to.
120 /// \param out_buf_size The size of \p out_buf.
122 /// \returns The number of symbols that should have been written to \p out_buf
126 char *out_buf, size_t out_buf_size);
133 /// \param [out] out_buf The output buffer to write the results to.
134 /// \param out_buf_size The size of \p out_buf.
136 /// \returns The number of symbols that should have been written to \p out_buf
139 size_t dfsan_sprint_stack_trace(char *out_buf, size_t out_buf_size);
common_interface_defs.h 200 // Outputs at most 'out_buf_size' bytes into 'out_buf'.
201 // If 'out_buf' is not empty then output is zero or more non empty C strings
209 void __sanitizer_symbolize_pc(void *pc, const char *fmt, char *out_buf,
213 char *out_buf, size_t out_buf_size);
  /src/external/bsd/wpa/dist/src/eap_peer/
eap_tnc.c 21 struct wpabuf *out_buf; member in struct:eap_tnc_data
64 wpabuf_free(data->out_buf);
100 send_len = wpabuf_len(data->out_buf) - data->out_used;
120 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
122 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
129 if (data->out_used == wpabuf_len(data->out_buf)) {
133 wpabuf_free(data->out_buf);
134 data->out_buf = NULL;
139 (unsigned long) wpabuf_len(data->out_buf) -
399 data->out_buf = resp
    [all...]
eap_ikev2.c 21 struct wpabuf *out_buf; member in struct:eap_ikev2_data
112 wpabuf_free(data->out_buf);
146 send_len = wpabuf_len(data->out_buf) - data->out_used;
181 wpabuf_put_be32(resp, wpabuf_len(data->out_buf));
183 wpabuf_put_data(resp, wpabuf_head_u8(data->out_buf) + data->out_used,
199 if (data->out_used == wpabuf_len(data->out_buf)) {
203 wpabuf_free(data->out_buf);
204 data->out_buf = NULL;
235 (unsigned long) wpabuf_len(data->out_buf) -
423 if (data->out_buf == NULL)
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/include/sanitizer/
dfsan_interface.h 172 /// \param [out] out_buf The output buffer to write the results to.
173 /// \param out_buf_size The size of \p out_buf.
175 /// \returns The number of symbols that should have been written to \p out_buf
180 char *out_buf,
185 char *out_buf,
193 /// \param [out] out_buf The output buffer to write the results to.
194 /// \param out_buf_size The size of \p out_buf.
196 /// \returns The number of symbols that should have been written to \p out_buf
199 size_t SANITIZER_CDECL dfsan_sprint_stack_trace(char *out_buf,
  /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
common_interface_defs.h 126 // Outputs at most 'out_buf_size' bytes into 'out_buf'.
127 // If 'out_buf' is not empty then output is zero or more non empty C strings
135 void __sanitizer_symbolize_pc(void *pc, const char *fmt, char *out_buf,
139 char *out_buf, size_t out_buf_size);

Completed in 42 milliseconds

1 2