• Home
  • Raw
  • Download

Lines Matching refs:system

62 send()/write() system call family. The result of the cipher operation is
63 obtained with the read()/recv() system call family.
77 3. Invoke accept with the socket descriptor. The accept system call
80 system calls to send data to the kernel or obtain data from the
88 the input buffer used for the send/write system call and the output
89 buffer used by the read/recv system call may be one and the same. This
120 Using the send() system call, the application provides the data that
121 should be processed with the message digest. The send system call allows
124 - MSG_MORE: If this flag is set, the send system call acts like a
126 calculated. If the flag is not set, the send system call calculates
129 With the recv() system call, the application can read the message digest
154 Before data can be sent to the kernel using the write/send system call
158 Using the sendmsg() system call, the application provides the data that
160 specified with the data structure provided by the sendmsg() system call.
162 The sendmsg system call parameter of struct msghdr is embedded into the
165 send/recv system call family. That cmsghdr data structure holds the
176 The send system call family allows the following flag to be specified:
178 - MSG_MORE: If this flag is set, the send system call acts like a
180 subsequent invocation of the send system call.
186 With the recv() system call, the application can read the result of the
208 Before data can be sent to the kernel using the write/send system call
213 system call family, the consumer must set the authentication tag size.
217 Using the sendmsg() system call, the application provides the data that
219 specified with the data structure provided by the sendmsg() system call.
221 The sendmsg system call parameter of struct msghdr is embedded into the
224 send/recv system call family. That cmsghdr data structure holds the
239 The send system call family allows the following flag to be specified:
241 - MSG_MORE: If this flag is set, the send system call acts like a
243 subsequent invocation of the send system call.
249 With the recv() system call, the application can read the result of the
310 Using the read()/recvmsg() system calls, random numbers can be obtained.
315 system call multiple times. In this case, the returned file descriptors
325 - *Additional Data* can be provided using the send()/sendmsg() system calls,
331 In addition to the send/write/read/recv system call family, the AF_ALG
341 The system-inherent limit for the size of one zero-copy operation is 16
355 /* opfd is the file descriptor returned from accept() system call */
363 In addition to the read/recv and send/write system call handling to send
366 additional information is set using the setsockopt system call that must
368 descriptor returned by the accept system call).