Searched refs:sockflag (Results 1 – 1 of 1) sorted by relevance
/system/core/libappfuse/ |
D | FuseBuffer.cc | 51 ResultOrAgain ReadInternal(FuseMessage<T>* self, int fd, int sockflag) { in ReadInternal() argument 53 const ssize_t result = sockflag ? TEMP_FAILURE_RETRY(recv(fd, buf, sizeof(T), sockflag)) in ReadInternal() 87 ResultOrAgain WriteInternal(const FuseMessage<T>* self, int fd, int sockflag, const void* data, in WriteInternal() argument 98 if (sockflag) { in WriteInternal() 100 result = TEMP_FAILURE_RETRY(send(fd, buf, header.len, sockflag)); in WriteInternal() 120 << "sockflag=" << sockflag << " " in WriteInternal()
|