Home
last modified time | relevance | path

Searched refs:GetErrno (Results 1 – 13 of 13) sorted by relevance

/device/google/cuttlefish/common/libs/fs/
Dshared_fd.cpp176 return !GetErrno() && !in.GetErrno(); in CopyAllFrom()
234 if (GetErrno() != EAGAIN && GetErrno() != EINPROGRESS) { in ConnectWithTimeout()
432 return ErrorFD(memfd->GetErrno()); in MemfdCreateWithData()
435 return ErrorFD(memfd->GetErrno()); in MemfdCreateWithData()
548 return SharedFD::ErrorFD(rval->GetErrno()); in SocketLocalClient()
563 return SharedFD::ErrorFD(rval->GetErrno()); in SocketLocalClient()
581 return SharedFD::ErrorFD(rval->GetErrno()); in SocketClient()
603 return SharedFD::ErrorFD(rval->GetErrno()); in Socket6Client()
608 return SharedFD::ErrorFD(rval->GetErrno()); in Socket6Client()
618 return SharedFD::ErrorFD(rval->GetErrno()); in Socket6Client()
[all …]
Dshared_buf.cc40 errno = fd->GetErrno(); in WriteAll()
57 errno = fd->GetErrno(); in ReadExact()
76 errno = fd->GetErrno(); in ReadAll()
Dshared_fd.h322 int GetErrno() const { return errno_; } in GetErrno() function
/device/google/cuttlefish/common/frontend/socket_vsock_proxy/
Dclient.cpp74 if (last_failure_reason_ != client->GetErrno()) { in Start()
75 last_failure_reason_ = client->GetErrno(); in Start()
99 if (last_failure_reason_ != vsock_socket->GetErrno()) { in Start()
100 last_failure_reason_ = vsock_socket->GetErrno(); in Start()
Dserver.cpp54 last_error = server->GetErrno(); in Start()
78 if (!server->IsOpen() && !socketErrorIsRecoverable(server->GetErrno())) { in Start()
/device/google/cuttlefish/host/commands/casimir_control_server/
Dcasimir_controller.cpp116 << sock_->GetErrno()); in Write()
122 << sock_->GetErrno()); in Write()
148 "Failed to read from casimir socket, errno=" << sock_->GetErrno()); in ReadExact()
/device/google/cuttlefish/host/commands/gnss_grpc_proxy/
Dgnss_grpc_proxy.cpp327 if (source_out->GetErrno() == EAGAIN || in SendCommand()
328 source_out->GetErrno() == EWOULDBLOCK) { in SendCommand()
332 << " Error code: " << source_out->GetErrno() in SendCommand()
/device/google/cuttlefish/common/libs/utils/
Dsocket2socket_proxy.cpp92 if (from->GetErrno()) { in Forward()
95 if (to->GetErrno()) { in Forward()
Dfiles.cpp498 if (fd->GetErrno() == ENXIO) { in SparseFileSizes()
514 if (fd->GetErrno() == ENXIO) { in SparseFileSizes()
/device/google/cuttlefish/host/frontend/webrtc/
Dadb_handler.cpp89 LOG(ERROR) << "Error on reading from ADB socket: " << strerror(adb_socket_->GetErrno()); in ReadLoop()
/device/google/cuttlefish/host/commands/kernel_log_monitor/
Dmain.cc104 if (subscriber_fd->GetErrno() != EPIPE) { in main()
/device/google/cuttlefish/host/commands/console_forwarder/
Dmain.cpp129 if(fd->GetErrno() != EAGAIN) { in WriteLoop()
/device/google/cuttlefish/host/commands/start/
Dmain.cc154 LOG(FATAL) << "Could not write file report (" << strerror(out->GetErrno()) in WriteFiles()