OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:hostUid
(Results
1 - 3
of
3
) sorted by null
/frameworks/base/cmds/statsd/src/external/
puller_util.cpp
144
const int
hostUid
= uidMap->getHostUidOrSelf(uid);
146
if (
hostUid
!= uid) {
147
(*valueList)[0].mValue.setInt(
hostUid
);
149
if (hostPosition.find(
hostUid
) == hostPosition.end()) {
150
hostPosition[
hostUid
].push_back(i);
152
if (tryMerge(data, i, hostPosition[
hostUid
], nonAdditiveFields, additiveFields)) {
155
hostPosition[
hostUid
].push_back(i);
/frameworks/base/cmds/statsd/tests/external/
puller_util_test.cpp
43
int
hostUid
= 20;
72
event->write(
hostUid
);
80
.WillRepeatedly(Return(
hostUid
));
104
event->write(
hostUid
);
112
event->write(
hostUid
);
120
.WillRepeatedly(Return(
hostUid
));
138
event->write(
hostUid
);
146
event->write(
hostUid
);
154
.WillRepeatedly(Return(
hostUid
));
174
event->write(
hostUid
);
[
all
...]
/frameworks/base/cmds/statsd/src/
StatsLogProcessor.cpp
110
void updateUid(Value* value, int
hostUid
) {
112
if (uid !=
hostUid
) {
113
value->setInt(
hostUid
);
125
const int
hostUid
= mUidMap->getHostUidOrSelf(value.mValue.int_value);
126
updateUid(&value.mValue,
hostUid
);
137
const int
hostUid
= mUidMap->getHostUidOrSelf(value.int_value);
138
updateUid(&value,
hostUid
);
Completed in 489 milliseconds