OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:connectionIndex
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/core/jni/
android_view_InputQueue.cpp
192
ssize_t
connectionIndex
= getConnectionIndex(inputChannel);
193
if (
connectionIndex
< 0) {
199
sp<Connection> connection = mConnectionsByReceiveFd.valueAt(
connectionIndex
);
200
mConnectionsByReceiveFd.removeItemsAt(
connectionIndex
);
223
ssize_t
connectionIndex
= mConnectionsByReceiveFd.indexOfKey(inputChannel->getReceivePipeFd());
224
if (
connectionIndex
>= 0) {
225
sp<Connection> connection = mConnectionsByReceiveFd.valueAt(
connectionIndex
);
227
return
connectionIndex
;
244
ssize_t
connectionIndex
= mConnectionsByReceiveFd.indexOfKey(receiveFd);
245
if (
connectionIndex
< 0)
[
all
...]
/frameworks/base/services/input/
InputDispatcher.cpp
[
all
...]
Completed in 1943 milliseconds