Searched refs:result_buf (Results 1 - 9 of 9) sorted by relevance

/freebsd-13-stable/contrib/libpcap/
H A Dnametoaddr.c229 struct netent result_buf;
242 * then *result is set pointing to result_buf; otherwise, *result
249 err = getnetbyname_r(name, &result_buf, buf, sizeof buf, &np,
262 struct netent result_buf;
265 np = getnetbyname_r(name, &result_buf, buf, (int)sizeof buf);
270 struct netent result_buf;
273 if (getnetbyname_r(name, &result_buf, &net_data) == -1)
276 np = &result_buf;
502 struct protoent result_buf; local
506 err = getprotobyname_r(str, &result_buf, bu
518 struct protoent result_buf; local
526 struct protoent result_buf; local
[all...]
/freebsd-13-stable/crypto/openssl/crypto/ui/
H A Dui_lib.c100 int input_flags, char *result_buf)
107 || type == UIT_BOOLEAN) && result_buf == NULL) {
114 ret->result_buf = result_buf;
122 char *result_buf, int minsize, int maxsize,
127 type, input_flags, result_buf);
153 int input_flags, char *result_buf)
172 type, input_flags, result_buf);
199 char *result_buf, int minsize, int maxsize)
202 UIT_PROMPT, flags, result_buf, minsiz
97 general_allocate_prompt(UI *ui, const char *prompt, int prompt_freeable, enum UI_string_types type, int input_flags, char *result_buf) argument
119 general_allocate_string(UI *ui, const char *prompt, int prompt_freeable, enum UI_string_types type, int input_flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
146 general_allocate_boolean(UI *ui, const char *prompt, const char *action_desc, const char *ok_chars, const char *cancel_chars, int prompt_freeable, enum UI_string_types type, int input_flags, char *result_buf) argument
198 UI_add_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize) argument
207 UI_dup_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize) argument
225 UI_add_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
234 UI_dup_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
253 UI_add_input_boolean(UI *ui, const char *prompt, const char *action_desc, const char *ok_chars, const char *cancel_chars, int flags, char *result_buf) argument
262 UI_dup_input_boolean(UI *ui, const char *prompt, const char *action_desc, const char *ok_chars, const char *cancel_chars, int flags, char *result_buf) argument
[all...]
H A Dui_local.h69 char *result_buf; /* Input and Output: If not NULL, member in struct:ui_string_st
/freebsd-13-stable/crypto/openssl/include/openssl/
H A Dui.h90 char *result_buf, int minsize, int maxsize);
92 char *result_buf, int minsize, int maxsize);
94 char *result_buf, int minsize, int maxsize,
97 char *result_buf, int minsize, int maxsize,
101 int flags, char *result_buf);
104 int flags, char *result_buf);
/freebsd-13-stable/sys/dev/ocs_fc/
H A Docs_mgmt.c1103 char result_buf[80]; local
1116 ocs_strncpy(result_buf, "BE2 A", sizeof(result_buf));
1118 strcat(result_buf, tmp_buf);
1122 ocs_strncpy(result_buf, "BE3", sizeof(result_buf));
1124 strcat(result_buf, "-R");
1127 strcat(result_buf, tmp_buf);
1129 strcat(result_buf, tmp_buf);
1133 ocs_strncpy(result_buf, "Skyhaw
2164 char *result_buf; local
[all...]
/freebsd-13-stable/sys/dev/nvdimm/
H A Dnvdimm.c110 ACPI_OBJECT params_pkg, params_buf, *result_buf; local
143 result_buf = (ACPI_OBJECT *)result.Pointer;
144 if (result_buf->Type != ACPI_TYPE_BUFFER ||
145 result_buf->Buffer.Pointer == NULL ||
146 result_buf->Buffer.Length != 4 + to_read ||
147 ((uint16_t *)result_buf->Buffer.Pointer)[0] != 0) {
151 bcopy(result_buf->Buffer.Pointer + 4, dest, to_read);
/freebsd-13-stable/crypto/openssh/
H A Dumac.c1051 UINT64 result_buf[STREAMS]; local
1052 UINT8 *nh_result = (UINT8 *)&result_buf;
1104 UINT64 result_buf[STREAMS]; local
1105 UINT8 *nh_result = (UINT8 *)&result_buf;
/freebsd-13-stable/usr.sbin/ctld/
H A Dkernel.c1017 char result_buf[NVLIST_BUFSIZE]; local
1060 req.result = result_buf;
1061 req.result_len = sizeof(result_buf);
1080 req.result_nvl = nvlist_unpack(result_buf, req.result_len, 0);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc7371 INTERCEPTOR(int, getprotoent_r, struct __sanitizer_protoent *result_buf,
7374 COMMON_INTERCEPTOR_ENTER(ctx, getprotoent_r, result_buf, buf, buflen,
7376 int res = REAL(getprotoent_r)(result_buf, buf, buflen, result);
7385 struct __sanitizer_protoent *result_buf, char *buf, SIZE_T buflen,
7388 COMMON_INTERCEPTOR_ENTER(ctx, getprotobyname_r, name, result_buf, buf,
7392 int res = REAL(getprotobyname_r)(name, result_buf, buf, buflen, result);
7401 struct __sanitizer_protoent *result_buf, char *buf,
7404 COMMON_INTERCEPTOR_ENTER(ctx, getprotobynumber_r, num, result_buf, buf,
7406 int res = REAL(getprotobynumber_r)(num, result_buf, buf, buflen, result);

Completed in 191 milliseconds