Home | History | Annotate | Download | only in mac

Lines Matching defs:attachments

139     Vector<Attachment> attachments = arguments->releaseAttachments();
143 for (size_t i = 0; i < attachments.size(); ++i) {
144 Attachment::Type type = attachments[i].type();
158 attachments.append(Attachment(arguments->buffer(), arguments->bufferSize(), MACH_MSG_VIRTUAL_COPY, false));
181 for (size_t i = 0; i < attachments.size(); ++i) {
182 Attachment attachment = attachments[i];
248 Deque<Attachment> attachments;
261 attachments.append(Attachment(descriptor->port.name, descriptor->port.disposition));
265 attachments.append(Attachment(descriptor->out_of_line.address, descriptor->out_of_line.size,
285 if (attachments.isEmpty())
288 argumentDecoder = new ArgumentDecoder(messageBody, messageBodySize, attachments);
298 return adoptPtr(new ArgumentDecoder(messageBody, messageBodySize, attachments));