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

/freebsd-current/contrib/libpcap/
H A Dnametoaddr.c250 struct netent result_buf; local
263 * then *result is set pointing to result_buf; otherwise, *result
270 err = getnetbyname_r(name, &result_buf, buf, sizeof buf, &np,
283 struct netent result_buf; local
286 np = getnetbyname_r(name, &result_buf, buf, (int)sizeof buf);
291 struct netent result_buf; local
294 if (getnetbyname_r(name, &result_buf, &net_data) == -1)
297 np = &result_buf;
523 struct protoent result_buf; local
527 err = getprotobyname_r(str, &result_buf, bu
539 struct protoent result_buf; local
547 struct protoent result_buf; local
[all...]
/freebsd-current/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)
171 type, input_flags, result_buf);
198 char *result_buf, int minsize, int maxsize)
201 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
197 UI_add_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize) argument
206 UI_dup_input_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize) argument
224 UI_add_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
233 UI_dup_verify_string(UI *ui, const char *prompt, int flags, char *result_buf, int minsize, int maxsize, const char *test_buf) argument
252 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
261 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-current/usr.sbin/nvmfd/
H A Dctl.c46 char result_buf[256]; local
68 req.result = result_buf;
69 req.result_len = sizeof(result_buf);
78 nvl = nvlist_unpack(result_buf, req.result_len, 0);
/freebsd-current/crypto/openssl/include/openssl/
H A Dui.h101 char *result_buf, int minsize, int maxsize);
103 char *result_buf, int minsize, int maxsize);
105 char *result_buf, int minsize, int maxsize,
108 char *result_buf, int minsize, int maxsize,
112 int flags, char *result_buf);
115 int flags, char *result_buf);
/freebsd-current/sys/dev/ocs_fc/
H A Docs_mgmt.c969 char result_buf[80]; local
982 ocs_strncpy(result_buf, "BE2 A", sizeof(result_buf));
984 strcat(result_buf, tmp_buf);
988 ocs_strncpy(result_buf, "BE3", sizeof(result_buf));
990 strcat(result_buf, "-R");
993 strcat(result_buf, tmp_buf);
995 strcat(result_buf, tmp_buf);
999 ocs_strncpy(result_buf, "Skyhaw
2035 char *result_buf; local
[all...]
/freebsd-current/sys/dev/nvdimm/
H A Dnvdimm.c107 ACPI_OBJECT params_pkg, params_buf, *result_buf; local
140 result_buf = (ACPI_OBJECT *)result.Pointer;
141 if (result_buf->Type != ACPI_TYPE_BUFFER ||
142 result_buf->Buffer.Pointer == NULL ||
143 result_buf->Buffer.Length != 4 + to_read ||
144 ((uint16_t *)result_buf->Buffer.Pointer)[0] != 0) {
148 bcopy(result_buf->Buffer.Pointer + 4, dest, to_read);
/freebsd-current/crypto/openssh/
H A Dumac.c1053 UINT64 result_buf[STREAMS]; local
1054 UINT8 *nh_result = (UINT8 *)&result_buf;
1106 UINT64 result_buf[STREAMS]; local
1107 UINT8 *nh_result = (UINT8 *)&result_buf;
/freebsd-current/usr.sbin/ctld/
H A Dkernel.c1016 char result_buf[NVLIST_BUFSIZE]; local
1059 req.result = result_buf;
1060 req.result_len = sizeof(result_buf);
1079 req.result_nvl = nvlist_unpack(result_buf, req.result_len, 0);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc7681 INTERCEPTOR(int, getprotoent_r, struct __sanitizer_protoent *result_buf,
7684 COMMON_INTERCEPTOR_ENTER(ctx, getprotoent_r, result_buf, buf, buflen,
7686 int res = REAL(getprotoent_r)(result_buf, buf, buflen, result);
7695 struct __sanitizer_protoent *result_buf, char *buf, SIZE_T buflen,
7698 COMMON_INTERCEPTOR_ENTER(ctx, getprotobyname_r, name, result_buf, buf,
7702 int res = REAL(getprotobyname_r)(name, result_buf, buf, buflen, result);
7711 struct __sanitizer_protoent *result_buf, char *buf,
7714 COMMON_INTERCEPTOR_ENTER(ctx, getprotobynumber_r, num, result_buf, buf,
7716 int res = REAL(getprotobynumber_r)(num, result_buf, buf, buflen, result);

Completed in 137 milliseconds