OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPollSize
(Results
1 - 2
of
2
) sorted by null
/system/netd/
MDnsSdListener.cpp
545
mPollSize
= 10;
547
mPollFds = (struct pollfd *)calloc(sizeof(struct pollfd),
mPollSize
);
548
mPollRefs = (DNSServiceRef **)calloc(sizeof(DNSServiceRef *),
mPollSize
);
596
ALOGD("MDnsSdListener::Monitor poll rescanning - size=%d, live=%d",
mPollSize
, mLiveCount);
602
if (
mPollSize
<= mLiveCount) {
603
mPollSize
= mLiveCount + 5;
606
mPollFds = (struct pollfd *)calloc(sizeof(struct pollfd),
mPollSize
);
607
mPollRefs = (DNSServiceRef **)calloc(sizeof(DNSServiceRef *),
mPollSize
);
609
memset(mPollFds, sizeof(struct pollfd) *
mPollSize
, 0);
610
memset(mPollRefs, sizeof(DNSServiceRef *) *
mPollSize
, 0)
[
all
...]
MDnsSdListener.h
97
int
mPollSize
;
Completed in 3491 milliseconds