OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:connFd
(Results
1 - 2
of
2
) sorted by null
/hardware/libhardware/modules/sensors/dynamic_sensor/
ConnectionDetector.cpp
74
void SocketConnectionDetector::waitForDisconnection(int
connFd
) {
76
while (::read(
connFd
, buffer, sizeof(buffer)) > 0) {
78
::write(
connFd
, ".", 1);
81
::close(
connFd
);
87
int
connFd
= waitForConnection();
89
if (
connFd
< 0) {
96
waitForDisconnection(
connFd
);
ConnectionDetector.h
52
static void waitForDisconnection(int
connFd
);
Completed in 142 milliseconds