Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1076)

Unified Diff: runtime/bin/sync_socket_fuchsia.cc

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/bin/sync_socket_android.cc ('k') | runtime/bin/sync_socket_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/sync_socket_fuchsia.cc
diff --git a/runtime/bin/sync_socket_fuchsia.cc b/runtime/bin/sync_socket_fuchsia.cc
index eef77595290b95e8a662d9a293c1ae45cbfec25e..8148b8a7e6f4de8dbfd9556dc150d9b25aa09cbf 100644
--- a/runtime/bin/sync_socket_fuchsia.cc
+++ b/runtime/bin/sync_socket_fuchsia.cc
@@ -23,7 +23,6 @@ bool SynchronousSocket::Initialize() {
return true;
}
-
static intptr_t Create(const RawAddr& addr) {
intptr_t fd;
intptr_t type = SOCK_STREAM | SOCK_CLOEXEC;
@@ -34,7 +33,6 @@ static intptr_t Create(const RawAddr& addr) {
return fd;
}
-
static intptr_t Connect(intptr_t fd, const RawAddr& addr) {
intptr_t result = TEMP_FAILURE_RETRY(
connect(fd, &addr.addr, SocketAddress::GetAddrLength(addr)));
@@ -46,7 +44,6 @@ static intptr_t Connect(intptr_t fd, const RawAddr& addr) {
return -1;
}
-
intptr_t SynchronousSocket::CreateConnect(const RawAddr& addr) {
intptr_t fd = Create(addr);
if (fd < 0) {
@@ -55,46 +52,38 @@ intptr_t SynchronousSocket::CreateConnect(const RawAddr& addr) {
return Connect(fd, addr);
}
-
intptr_t SynchronousSocket::Available(intptr_t fd) {
return SocketBase::Available(fd);
}
-
intptr_t SynchronousSocket::GetPort(intptr_t fd) {
return SocketBase::GetPort(fd);
}
-
SocketAddress* SynchronousSocket::GetRemotePeer(intptr_t fd, intptr_t* port) {
return SocketBase::GetRemotePeer(fd, port);
}
-
intptr_t SynchronousSocket::Read(intptr_t fd,
void* buffer,
intptr_t num_bytes) {
return SocketBase::Read(fd, buffer, num_bytes, SocketBase::kSync);
}
-
intptr_t SynchronousSocket::Write(intptr_t fd,
const void* buffer,
intptr_t num_bytes) {
return SocketBase::Write(fd, buffer, num_bytes, SocketBase::kSync);
}
-
void SynchronousSocket::ShutdownRead(intptr_t fd) {
VOID_NO_RETRY_EXPECTED(shutdown(fd, SHUT_RD));
}
-
void SynchronousSocket::ShutdownWrite(intptr_t fd) {
VOID_NO_RETRY_EXPECTED(shutdown(fd, SHUT_WR));
}
-
void SynchronousSocket::Close(intptr_t fd) {
return SocketBase::Close(fd);
}
« no previous file with comments | « runtime/bin/sync_socket_android.cc ('k') | runtime/bin/sync_socket_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698