Home
last modified time | relevance | path

Searched refs:outval (Results 1 – 6 of 6) sorted by relevance

/freebsd/usr.sbin/ypserv/common/
H A Dyplib_host.c137 int inkeylen, char **outval, int *outvallen) in yp_match_host() argument
144 *outval = NULL; in yp_match_host()
164 *outval = malloc(*outvallen + 1); in yp_match_host()
165 memcpy(*outval, yprv.val.valdat_val, *outvallen); in yp_match_host()
166 (*outval)[*outvallen] = '\0'; in yp_match_host()
175 int *outkeylen, char **outval, int *outvallen) in yp_first_host() argument
182 *outkey = *outval = NULL; in yp_first_host()
203 *outval = malloc(*outvallen+1); in yp_first_host()
204 memcpy(*outval, yprkv.val.valdat_val, *outvallen); in yp_first_host()
205 (*outval)[*outvallen] = '\0'; in yp_first_host()
[all …]
H A Dyplib_host.h33 const char *inkey, int inkeylen, char **outval, int *outvallen);
35 char **outkey, int *outkeylen, char **outval, int *outvallen);
37 int inkeylen, char **outkey, int *outkeylen, char **outval,
/freebsd/lib/libc/yp/
H A Dyplib.c645 char **outval, int *outvallen) in yp_match() argument
653 *outval = NULL; in yp_match()
681 *outval = (char *)malloc(*outvallen+1); in yp_match()
682 if (*outval == NULL) { in yp_match()
688 bcopy(yprv.val.valdat_val, *outval, *outvallen); in yp_match()
689 (*outval)[*outvallen] = '\0'; in yp_match()
724 *outval = (char *)malloc(*outvallen+1); in yp_match()
725 if (*outval == NULL) { in yp_match()
732 bcopy(yprv.val.valdat_val, *outval, *outvallen); in yp_match()
733 (*outval)[*outvallen] = '\0'; in yp_match()
[all …]
/freebsd/include/rpcsvc/
H A Dypclnt.h78 char **outval, int *outvallen);
80 char **outval, int *outvallen);
82 char **outkey, int *outkeylen, char **outval, int *outvallen);
/freebsd/contrib/ntp/ntpd/
H A Drefclock_ripencc.c1286 short outval; in bGetShort() local
1289 optr = (unsigned char*)&outval + 1; in bGetShort()
1292 return outval; in bGetShort()
1301 unsigned short outval; in bGetUShort() local
1304 optr = (unsigned char*)&outval + 1; in bGetUShort()
1307 return outval; in bGetUShort()
1315 long outval; in bGetLong() local
1318 optr = (unsigned char*)&outval + 3; in bGetLong()
1323 return outval; in bGetLong()
1331 unsigned long outval; in bGetULong() local
1348 float outval; bGetSingle() local
1364 double outval; bGetDouble() local
[all...]
/freebsd/sys/dev/qat/qat_common/
H A Dqat_uclo.c149 unsigned int outval; in qat_uclo_wr_sram_by_words() local
157 memcpy(&outval, ptr, 4); in qat_uclo_wr_sram_by_words()
158 SRAM_WRITE(handle, addr, outval); in qat_uclo_wr_sram_by_words()
173 unsigned int outval; in qat_uclo_wr_umem_by_words() local
179 memcpy(&outval, ptr, 4); in qat_uclo_wr_umem_by_words()
180 qat_hal_wr_umem(handle, ae, addr++, 1, &outval); in qat_uclo_wr_umem_by_words()