OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:POSIXSocket
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/
platform-posix.cc
357
class
POSIXSocket
: public Socket {
359
explicit
POSIXSocket
() {
371
explicit
POSIXSocket
(int socket): socket_(socket) { }
372
virtual ~
POSIXSocket
() { Shutdown(); }
398
bool
POSIXSocket
::Bind(const int port) {
415
bool
POSIXSocket
::Listen(int backlog) const {
425
Socket*
POSIXSocket
::Accept() const {
434
return new
POSIXSocket
(socket);
439
bool
POSIXSocket
::Connect(const char* host, const char* port) {
463
bool
POSIXSocket
::Shutdown()
[
all
...]
/external/chromium_org/v8/src/
platform-posix.cc
805
class
POSIXSocket
: public Socket {
807
explicit
POSIXSocket
() {
819
explicit
POSIXSocket
(int socket): socket_(socket) { }
820
virtual ~
POSIXSocket
() { Shutdown(); }
846
bool
POSIXSocket
::Bind(const int port) {
863
bool
POSIXSocket
::Listen(int backlog) const {
873
Socket*
POSIXSocket
::Accept() const {
886
return new
POSIXSocket
(socket);
891
bool
POSIXSocket
::Connect(const char* host, const char* port) {
917
bool
POSIXSocket
::Shutdown()
[
all
...]
Completed in 331 milliseconds