Home | History | Annotate | Download | only in socket

Lines Matching defs:SocketLibevent

56 SocketLibevent::SocketLibevent()
63 SocketLibevent::~SocketLibevent() {
67 int SocketLibevent::Open(int address_family) {
92 int SocketLibevent::AdoptConnectedSocket(SocketDescriptor socket,
109 SocketDescriptor SocketLibevent::ReleaseConnectedSocket() {
116 int SocketLibevent::Bind(const SockaddrStorage& address) {
129 int SocketLibevent::Listen(int backlog) {
143 int SocketLibevent::Accept(scoped_ptr<SocketLibevent>* socket,
167 int SocketLibevent::Connect(const SockaddrStorage& address,
192 bool SocketLibevent::IsConnected() const {
209 bool SocketLibevent::IsConnectedAndIdle() const {
227 int SocketLibevent::Read(IOBuffer* buf,
255 int SocketLibevent::Write(IOBuffer* buf,
272 int SocketLibevent::WaitForWrite(IOBuffer* buf,
295 int SocketLibevent::GetLocalAddress(SockaddrStorage* address) const {
304 int SocketLibevent::GetPeerAddress(SockaddrStorage* address) const {
315 void SocketLibevent::SetPeerAddress(const SockaddrStorage& address) {
328 bool SocketLibevent::HasPeerAddress() const {
333 void SocketLibevent::Close() {
345 void SocketLibevent::OnFileCanReadWithoutBlocking(int fd) {
354 void SocketLibevent::OnFileCanWriteWithoutBlocking(int fd) {
363 int SocketLibevent::DoAccept(scoped_ptr<SocketLibevent>* socket) {
371 scoped_ptr<SocketLibevent> accepted_socket(new SocketLibevent);
380 void SocketLibevent::AcceptCompleted() {
392 int SocketLibevent::DoConnect() {
400 void SocketLibevent::ConnectCompleted() {
419 int SocketLibevent::DoRead(IOBuffer* buf, int buf_len) {
424 void SocketLibevent::ReadCompleted() {
436 int SocketLibevent::DoWrite(IOBuffer* buf, int buf_len) {
441 void SocketLibevent::WriteCompleted() {
453 void SocketLibevent::StopWatchingAndCleanUp() {