OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:communicationSocket
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Nfc/src/com/android/nfc/ndefpush/
NdefPushServer.java
137
LlcpSocket
communicationSocket
= mServerSocket.accept();
138
if (DBG) Log.d(TAG, "accept returned " +
communicationSocket
);
139
if (
communicationSocket
!= null) {
140
new ConnectionThread(
communicationSocket
).start();
/packages/apps/Nfc/src/com/android/nfc/snep/
SnepServer.java
193
LlcpSocket
communicationSocket
= serverSocket.accept();
194
if (DBG) Log.d(TAG, "accept returned " +
communicationSocket
);
195
if (
communicationSocket
!= null) {
196
int miu =
communicationSocket
.getRemoteMiu();
199
new ConnectionThread(
communicationSocket
, fragmentLength).start();
Completed in 32 milliseconds