Searched refs:newmsg (Results 1 - 7 of 7) sorted by relevance

/opensolaris-onvv-gate/usr/src/lib/libresolv2/common/resolv/
H A Dres_sendsigned.c35 u_char *newmsg; local
53 newmsg = (u_char *) malloc(bufsize);
54 if (newmsg == NULL) {
59 memcpy(newmsg, msg, msglen);
72 free(newmsg);
78 ret = ns_sign(newmsg, &newmsglen, bufsize, NOERROR, dstkey, NULL, 0,
82 free (newmsg);
105 len = res_nsend(nstatp, newmsg, newmsglen, answer, anslen);
108 free (newmsg);
137 free (newmsg);
[all...]
/opensolaris-onvv-gate/usr/src/lib/libsip/common/
H A Dsip_reass.c191 char *newmsg; local
194 newmsg = malloc(newlen + 1);
195 if (newmsg == NULL) {
202 (void) strncpy(newmsg, reass->sip_reass_msg,
204 newmsg[reass->sip_reass_msglen] = '\0';
205 (void) strncat(newmsg, msg, *msglen);
206 newmsg[newlen] = '\0';
207 assert(strlen(newmsg) == newlen);
211 reass->sip_reass_msg = newmsg;
/opensolaris-onvv-gate/usr/src/cmd/cmd-inet/usr.lib/pppoe/
H A Dpppoec.c798 poemsg_t *newmsg; local
801 newmsg = (poemsg_t *)malloc(sizeof (*pmsg) + pmsg->poemsg_len +
803 if (newmsg != NULL) {
804 newmsg->poemsg_next = NULL;
805 newmsg->poemsg_data = (const poep_t *)(newmsg + 1);
806 (void) memcpy(newmsg + 1, pmsg->poemsg_data, pmsg->poemsg_len);
807 newmsg->poemsg_len = pmsg->poemsg_len;
808 cp = (char *)newmsg->poemsg_data + pmsg->poemsg_len;
809 newmsg
[all...]
/opensolaris-onvv-gate/usr/src/uts/common/inet/ipf/netinet/
H A Dip_ftp_pxy.c637 int ippr_ftp_pasvreply(fin, ip, nat, f, port, newmsg, s, data_ip, ifsftp)
643 char *newmsg;
668 nlen = strlen(newmsg);
678 bcopy(newmsg, MTOD(m, char *) + off, nlen);
693 COPYBACK(m, off, nlen, newmsg);
/opensolaris-onvv-gate/usr/src/lib/cfgadm_plugins/sbd/common/
H A Dap_rcm.c1346 char *newmsg; local
1402 newmsg = realloc(*msg, strlen(*msg) + msg_size);
1403 if (newmsg == NULL)
1406 *msg = newmsg;
/opensolaris-onvv-gate/usr/src/uts/common/io/
H A Dldterm.c444 static mblk_t *newmsg(ldtermstd_state_t *);
1649 if ((bpt = newmsg(tp)) != NULL) {
1871 bpt = newmsg(tp);
1918 bpt = newmsg(tp);
2004 if ((bpt = newmsg(tp)) == NULL)
2831 return (newmsg(tp));
2951 newmsg(ldtermstd_state_t *tp) function
2961 "ldterm: (ldtermrsrv/newmsg) out of blocks");
3097 if (newmsg(tp) != NULL) {
H A Dcryptmod.c3183 mblk_t *newmsg = NULL; local
3196 newmsg = encrypt_msgb(q, tmi, mp);
3197 if (newmsg != NULL)
3198 putnext(q, newmsg);

Completed in 138 milliseconds