Lines Matching defs:fdCount
271 int fdCount = (cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int);
273 APPSPAWN_CHECK(fdCount <= APP_MAX_FD_COUNT,
274 return -1, "failed to recv fd %d %d", connection->receiverCtx.fdCount, fdCount);
275 APPSPAWN_CHECK(memcpy_s(connection->receiverCtx.fds, fdCount * sizeof(int), fd,
276 fdCount * sizeof(int)) == 0, return -1, "memcpy_s fd failed");
277 connection->receiverCtx.fdCount = fdCount;
329 int fdCount = spawnConnection->receiverCtx.fdCount;
330 for (int i = 0; i < fdCount; i++) {