Home
last modified time | relevance | path

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

/freebsd-12-stable/crypto/openssl/crypto/ui/
Dui_lib.c100 int input_flags, char *result_buf) in general_allocate_prompt() argument
107 || type == UIT_BOOLEAN) && result_buf == NULL) { in general_allocate_prompt()
114 ret->result_buf = result_buf; in general_allocate_prompt()
122 char *result_buf, int minsize, int maxsize, in general_allocate_string() argument
127 type, input_flags, result_buf); in general_allocate_string()
153 int input_flags, char *result_buf) in general_allocate_boolean() argument
172 type, input_flags, result_buf); in general_allocate_boolean()
199 char *result_buf, int minsize, int maxsize) in UI_add_input_string() argument
202 UIT_PROMPT, flags, result_buf, minsize, in UI_add_input_string()
208 char *result_buf, int minsize, int maxsize) in UI_dup_input_string() argument
[all …]
Dui_local.h69 char *result_buf; /* Input and Output: If not NULL, member
/freebsd-12-stable/contrib/libpcap/
Dnametoaddr.c229 struct netent result_buf; in pcap_nametonetaddr()
249 err = getnetbyname_r(name, &result_buf, buf, sizeof buf, &np, in pcap_nametonetaddr()
262 struct netent result_buf; in pcap_nametonetaddr()
265 np = getnetbyname_r(name, &result_buf, buf, (int)sizeof buf); in pcap_nametonetaddr()
270 struct netent result_buf; in pcap_nametonetaddr()
273 if (getnetbyname_r(name, &result_buf, &net_data) == -1) in pcap_nametonetaddr()
276 np = &result_buf; in pcap_nametonetaddr()
502 struct protoent result_buf; in pcap_nametoproto() local
506 err = getprotobyname_r(str, &result_buf, buf, sizeof buf, &p); in pcap_nametoproto()
518 struct protoent result_buf; in pcap_nametoproto() local
[all …]
/freebsd-12-stable/sys/dev/ocs_fc/
Docs_mgmt.c986 char result_buf[80]; in get_chip_type() local
999 ocs_strncpy(result_buf, "BE2 A", sizeof(result_buf)); in get_chip_type()
1001 strcat(result_buf, tmp_buf); in get_chip_type()
1005 ocs_strncpy(result_buf, "BE3", sizeof(result_buf)); in get_chip_type()
1007 strcat(result_buf, "-R"); in get_chip_type()
1010 strcat(result_buf, tmp_buf); in get_chip_type()
1012 strcat(result_buf, tmp_buf); in get_chip_type()
1016 ocs_strncpy(result_buf, "Skyhawk A0", sizeof(result_buf)); in get_chip_type()
1020 ocs_strncpy(result_buf, "Lancer A", sizeof(result_buf)); in get_chip_type()
1022 strcat(result_buf, tmp_buf); in get_chip_type()
[all …]
/freebsd-12-stable/crypto/openssl/include/openssl/
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-12-stable/sys/dev/nvdimm/
Dnvdimm.c109 ACPI_OBJECT params_pkg, params_buf, *result_buf; in read_label_area() local
142 result_buf = (ACPI_OBJECT *)result.Pointer; in read_label_area()
143 if (result_buf->Type != ACPI_TYPE_BUFFER || in read_label_area()
144 result_buf->Buffer.Pointer == NULL || in read_label_area()
145 result_buf->Buffer.Length != 4 + to_read || in read_label_area()
146 ((uint16_t *)result_buf->Buffer.Pointer)[0] != 0) { in read_label_area()
150 bcopy(result_buf->Buffer.Pointer + 4, dest, to_read); in read_label_area()
/freebsd-12-stable/crypto/openssl/doc/man3/
DUI_new.pod26 char *result_buf, int minsize, int maxsize);
28 char *result_buf, int minsize, int maxsize);
30 char *result_buf, int minsize, int maxsize,
33 char *result_buf, int minsize, int maxsize,
37 int flags, char *result_buf);
40 int flags, char *result_buf);
/freebsd-12-stable/crypto/openssh/
Dumac.c1052 UINT64 result_buf[STREAMS]; in uhash_update() local
1053 UINT8 *nh_result = (UINT8 *)&result_buf; in uhash_update()
1105 UINT64 result_buf[STREAMS]; in uhash_final() local
1106 UINT8 *nh_result = (UINT8 *)&result_buf; in uhash_final()
/freebsd-12-stable/usr.sbin/ctld/
Dkernel.c1002 char result_buf[NVLIST_BUFSIZE]; in kernel_port_add() local
1045 req.result = result_buf; in kernel_port_add()
1046 req.result_len = sizeof(result_buf); in kernel_port_add()
1065 req.result_nvl = nvlist_unpack(result_buf, req.result_len, 0); in kernel_port_add()
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc7574 INTERCEPTOR(int, getprotoent_r, struct __sanitizer_protoent *result_buf,
7577 COMMON_INTERCEPTOR_ENTER(ctx, getprotoent_r, result_buf, buf, buflen,
7579 int res = REAL(getprotoent_r)(result_buf, buf, buflen, result);
7588 struct __sanitizer_protoent *result_buf, char *buf, SIZE_T buflen,
7591 COMMON_INTERCEPTOR_ENTER(ctx, getprotobyname_r, name, result_buf, buf,
7595 int res = REAL(getprotobyname_r)(name, result_buf, buf, buflen, result);
7604 struct __sanitizer_protoent *result_buf, char *buf,
7607 COMMON_INTERCEPTOR_ENTER(ctx, getprotobynumber_r, num, result_buf, buf,
7609 int res = REAL(getprotobynumber_r)(num, result_buf, buf, buflen, result);