Home
last modified time | relevance | path

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

/src/usr.sbin/ypserv/common/
H A Dyplib_host.c139 int inkeylen, char **outval, int *outvallen) in yp_match_host() argument
146 *outval = NULL; in yp_match_host()
166 *outval = malloc(*outvallen + 1); in yp_match_host()
167 memcpy(*outval, yprv.val.valdat_val, *outvallen); in yp_match_host()
168 (*outval)[*outvallen] = '\0'; in yp_match_host()
177 int *outkeylen, char **outval, int *outvallen) in yp_first_host() argument
184 *outkey = *outval = NULL; in yp_first_host()
205 *outval = malloc(*outvallen+1); in yp_first_host()
206 memcpy(*outval, yprkv.val.valdat_val, *outvallen); in yp_first_host()
207 (*outval)[*outvallen] = '\0'; in yp_first_host()
[all …]
H A Dyplib_host.h35 const char *inkey, int inkeylen, char **outval, int *outvallen);
37 char **outkey, int *outkeylen, char **outval, int *outvallen);
39 int inkeylen, char **outkey, int *outkeylen, char **outval,
/src/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 …]
/src/include/rpcsvc/
H A Dypclnt.h78 char **outval, int *outvallen);
80 char **outval, int *outvallen);
82 char **outkey, int *outkeylen, char **outval, int *outvallen);
/src/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
[all …]
/src/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()