OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPersistedRequests
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/cmds/incidentd/src/
Reporter.cpp
177
map<ComponentName, sp<ReportRequest>>::iterator found =
mPersistedRequests
.find(component);
178
if (found ==
mPersistedRequests
.end()) {
180
mPersistedRequests
[component] = new ReportRequest(args, nullptr, -1);
194
return
mPersistedRequests
.size() == 0 && mStreamingRequests.size() == 0;
198
map<ComponentName, sp<ReportRequest>>::iterator it =
mPersistedRequests
.find(component);
199
if (it !=
mPersistedRequests
.find(component)) {
207
for (map<ComponentName, sp<ReportRequest>>::iterator it =
mPersistedRequests
.begin();
208
it !=
mPersistedRequests
.end(); it++) {
222
for (map<ComponentName, sp<ReportRequest>>::iterator it =
mPersistedRequests
.begin();
223
it !=
mPersistedRequests
.end(); it++)
[
all
...]
Reporter.h
107
bool hasPersistedReports() const { return
mPersistedRequests
.size() > 0; }
180
map<ComponentName, sp<ReportRequest>>
mPersistedRequests
;
Completed in 2425 milliseconds