Symbol: fServerConnection
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
19
fServerConnection(NULL),
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
30
if (fServerConnection) {
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
31
fServerConnection->Close();
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
32
fServerConnection->ReleaseReference();
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
54
if (!fServerConnection) {
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
55
fServerConnection = new(std::nothrow) ServerConnection(fVolumeManager,
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
57
if (!fServerConnection)
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
59
status_t error = fServerConnection->Init(fConnectionBrokenTarget);
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
64
if (!fServerConnection->IsConnected())
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
67
fServerConnection->AcquireReference();
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
68
*serverConnection = fServerConnection;
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
79
if (!fServerConnection || !fServerConnection->IsConnected())
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
82
fServerConnection->AcquireReference();
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
83
return fServerConnection;
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
91
if (fServerConnection)
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.cpp
92
fServerConnection->Close();
src/add-ons/kernel/file_systems/netfs/client/ServerConnectionProvider.h
36
ServerConnection* fServerConnection;
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
163
fServerConnection(NULL),
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
220
if (fServerConnection)
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
221
fServerConnection->ReleaseReference();
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
3045
if (!fServerConnection) {
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
3047
&fServerConnection);
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
3050
fConnection = fServerConnection->GetRequestConnection();
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
3115
error = fServerConnection->AddVolume(this);
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
405
if (fServerConnection)
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.cpp
406
fServerConnection->RemoveVolume(this);
src/add-ons/kernel/file_systems/netfs/client/ShareVolume.h
241
ServerConnection* fServerConnection;
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
110
fServerConnection->Disconnect();
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
118
if (fServerConnection == NULL)
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
123
fServerConnection->Disconnect();
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
124
delete fServerConnection;
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
125
fServerConnection = NULL;
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
332
delete fServerConnection;
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
333
fServerConnection = NULL;
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
337
fServerConnection = new(std::nothrow) BSecureSocket(address);
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
339
fServerConnection = new(std::nothrow) BSocket(address);
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
342
if (fServerConnection != NULL)
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
343
status = fServerConnection->InitCheck();
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
353
fServerConnection->Disconnect();
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
367
fServerConnection->Disconnect();
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
601
status_t result = fServerConnection->WaitForReadable(
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
611
amountReceived = fServerConnection->Read(buf + amountInBuffer,
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
730
status_t result = fServerConnection->WaitForReadable(
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
740
bytesReceived = fServerConnection->Read((char*)&c, 1);
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
770
while (fServerConnection->WaitForReadable(1000) == B_OK) {
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
772
ssize_t amountReceived = fServerConnection->Read(buffer,
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.cpp
782
if (fServerConnection->Write(cmd, ::strlen(cmd)) < 0) {
src/add-ons/mail_daemon/inbound_protocols/pop3/POP3.h
86
BSocket* fServerConnection;