Lines Matching defs:dat
65 if (_mwrite(md, p->dat->buf, p->dat->len) != 0)
70 Free(p->dat->buf);
71 Free(p->dat);
127 || (p->dat = (struct strbuf *)Malloc(sizeof(struct strbuf))) == NULL
128 || (p->dat->buf = (char *)Malloc(size)) == NULL)
133 (void) memcpy(p->dat->buf, msgbuf, size);
134 p->dat->len = size;
146 if (_mwrite(md, p->dat->buf, p->dat->len) != 0) {
152 Free(p->dat->buf);
153 Free(p->dat);
167 struct strbuf dat;
182 dat.buf = msgbuf;
183 dat.maxlen = dat.len = size;
187 if (Putmsg(md, &ctl, &dat, flag) == 0)