Searched defs:it (Results 1 - 18 of 18) sorted by relevance

/system/core/logd/
H A DFlushCommand.cpp53 LastLogTimes::iterator it = times.begin(); local
54 while(it != times.end()) {
55 entry = (*it);
65 it++;
68 if (it == times.end()) {
H A DLogTimes.cpp88 LastLogTimes::iterator it = times.begin(); local
89 while(it != times.end()) {
90 if (*it == me) {
91 times.erase(it);
95 it++;
H A DLogWhiteBlackList.cpp56 PruneCollection::iterator it; local
57 for (it = mNice.begin(); it != mNice.end();) {
58 delete (*it);
59 it = mNice.erase(it);
61 for (it = mNaughty.begin(); it != mNaughty.end();) {
62 delete (*it);
63 it
69 PruneCollection::iterator it; local
141 PruneCollection::iterator it = list->begin(); local
190 PruneCollection::iterator it; local
222 PruneCollection::iterator it; local
232 PruneCollection::iterator it; local
[all...]
H A DLogReader.cpp167 LastLogTimes::iterator it = times.begin(); local
168 while(it != times.end()) {
169 LogTimeEntry *entry = (*it);
171 times.erase(it);
175 it++;
H A DLogBuffer.cpp148 LogBufferElementCollection::iterator it = mLogElements.end(); local
149 LogBufferElementCollection::iterator last = it;
150 while (--it != mLogElements.begin()) {
151 if ((*it)->getRealTime() <= realtime) {
154 LogBufferElementCollection::iterator ib = it;
171 last = it;
251 LogBufferElementCollection::iterator it; local
254 for(it = mLogElements.begin(); it != mLogElements.end();) {
255 LogBufferElement *e = *it;
442 LogBufferElementCollection::iterator it; local
485 LogBufferElementCollection::iterator it; local
[all...]
H A DLogStatistics.cpp127 PidStatisticsCollection::iterator it; local
128 for (it = begin(); it != end();) {
129 delete (*it);
130 it = erase(it);
140 PidStatisticsCollection::iterator it; local
141 for (last = it = begin(); it != end(); last = it,
163 PidStatisticsCollection::iterator it; local
194 PidStatisticsCollection::iterator it = begin(); local
219 PidStatisticsCollection::iterator it; local
234 PidStatisticsCollection::iterator it; local
246 PidStatisticsCollection::iterator it; local
258 PidStatisticsCollection::iterator it; local
273 UidStatisticsCollection::iterator it; local
282 UidStatisticsCollection::iterator it; local
314 UidStatisticsCollection::iterator it; local
327 UidStatisticsCollection::iterator it = begin(); local
349 UidStatisticsCollection::iterator it; local
361 UidStatisticsCollection::iterator it; local
373 UidStatisticsCollection::iterator it; local
385 UidStatisticsCollection::iterator it; local
[all...]
/system/netd/server/
H A DClatdController.cpp47 auto it = mClatdPids.find(interface); local
48 return (it == mClatdPids.end() ? 0 : it->second);
143 mClatdPids.erase(interface); // child exited, don't call waitpid on it again
H A DPppController.cpp43 TtyCollection::iterator it; local
45 for (it = mTtys->begin(); it != mTtys->end(); ++it) {
46 free(*it);
62 TtyCollection::iterator it; local
63 for (it = mTtys->begin(); it != mTtys->end(); ++it) {
64 if (!strcmp(tty, *it)) {
126 TtyCollection::iterator it; local
[all...]
H A DNatController.cpp65 * and it works because the argv[] contains a NULL after the last
120 * - internally it will be memcopied to an array and terminated with a NULL.
216 std::list<std::string>::iterator it; local
218 for (it = ifacePairList.begin(); it != ifacePairList.end(); it++) {
219 if (*it == pair_name) {
H A DNetdConstants.cpp82 std::list<const char*>::iterator it; local
83 for (it = argsList.begin(); it != argsList.end(); it++, i++) {
84 argv[i] = *it;
H A DTetherController.cpp48 InterfaceCollection::iterator it; local
50 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) {
51 free(*it);
124 * the daemon if it exits prematurely
264 InterfaceCollection::iterator it; local
267 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) {
298 InterfaceCollection::iterator it; local
313 InterfaceCollection::iterator it; local
[all...]
H A DBandwidthController.cpp22 * If they ever were to allow it, then netd/ would need some tweaking.
70 * - when an interface is marked as costly it should be INSERTED into the INPUT/OUTPUT chains.
103 * E.g Adding an app, it has to preserve the appened bw_happy_box, so "-I":
413 std::list<int /*uid*/>::iterator it; local
440 for (it = specialAppUids.begin(); it != specialAppUids.end(); it++) {
441 if (*it == uid)
444 bool found = (it != specialAppUids.end());
451 specialAppUids.erase(it);
603 std::list<std::string>::iterator it; local
669 std::list<std::string>::iterator it; local
710 std::list<QuotaInfo>::iterator it; local
807 std::list<QuotaInfo>::iterator it; local
1017 std::list<QuotaInfo>::iterator it; local
1042 std::list<QuotaInfo>::iterator it; local
[all...]
H A DCommandListener.cpp491 TtyCollection::iterator it; local
493 for (it = tlist->begin(); it != tlist->end(); ++it) {
494 cli->sendMsg(ResponseCode::TtyListResult, *it, false);
565 InterfaceCollection::iterator it; local
566 for (it = ilist->begin(); it != ilist->end(); ++it) {
567 cli->sendMsg(ResponseCode::TetherInterfaceListResult, *it, fals
575 NetAddressCollection::iterator it; local
[all...]
/system/security/keystore/
H A Dkeystore_cli.cpp158 Vector<String16>::const_iterator it = matches.begin(); local
159 for (; it != matches.end(); ++it) {
160 printf("%s\n", String8(*it).string());
H A DIKeystoreService.cpp299 for (Vector<sp<KeystoreArg> >::iterator it = args->begin(); it != args->end(); ++it) {
300 sp<KeystoreArg> item = *it;
719 Vector<String16>::const_iterator it = matches.begin(); local
720 for (; it != matches.end(); ++it) {
721 reply->writeString16(*it);
/system/core/libsysutils/src/
H A DSocketListener.cpp64 SocketClientCollection::iterator it; local
65 for (it = mClients->begin(); it != mClients->end();) {
66 (*it)->decRef();
67 it = mClients->erase(it);
135 SocketClientCollection::iterator it; local
136 for (it = mClients->begin(); it != mClients->end();) {
137 delete (*it);
156 SocketClientCollection::iterator it; local
257 SocketClientCollection::iterator it; local
[all...]
/system/vold/
H A DDirectVolume.cpp100 PathCollection::iterator it; local
102 for (it = mPaths->begin(); it != mPaths->end(); ++it)
103 delete *it;
135 PathCollection::iterator it; local
136 for (it = mPaths->begin(); it != mPaths->end(); ++it) {
137 if ((*it)
424 PathCollection::iterator it; local
[all...]
H A DVolumeManager.cpp149 * Wait for the device mapper node to be created. Sometimes it takes a
221 VolumeCollection::iterator it; local
222 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
223 (*it)->setDebug(enable);
244 VolumeCollection::iterator it; local
246 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
1110 AsecIdCollection::iterator it; local
[all...]

Completed in 9242 milliseconds