Searched refs:it (Results 1 - 21 of 21) sorted by relevance

/system/netd/
H A DUidMarkMap.cpp39 android::netd::List<UidMarkEntry*>::iterator it; local
40 for (it = mMap.begin(); it != mMap.end(); it++) {
41 UidMarkEntry *entry = *it;
43 mMap.erase(it);
53 android::netd::List<UidMarkEntry*>::iterator it; local
54 for (it = mMap.begin(); it != mMap.end(); it
67 android::netd::List<UidMarkEntry*>::iterator it; local
[all...]
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 DTetherController.cpp44 InterfaceCollection::iterator it; local
46 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) {
47 free(*it);
118 * the daemon if it exits prematurely
247 InterfaceCollection::iterator it; local
250 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) {
277 InterfaceCollection::iterator it; local
292 InterfaceCollection::iterator it; local
[all...]
H A DBandwidthController.cpp22 * If they ever were to allow it, then netd/ would need some tweaking.
66 * - when an interface is marked as costly it should be INSERTED into the INPUT/OUTPUT chains.
99 * E.g Adding an app, it has to preserve the appened bw_happy_box, so "-I":
410 std::list<int /*uid*/>::iterator it; local
437 for (it = specialAppUids.begin(); it != specialAppUids.end(); it++) {
438 if (*it == uid)
441 bool found = (it != specialAppUids.end());
448 specialAppUids.erase(it);
601 std::list<std::string>::iterator it; local
665 std::list<std::string>::iterator it; local
704 std::list<QuotaInfo>::iterator it; local
795 std::list<QuotaInfo>::iterator it; local
998 std::list<QuotaInfo>::iterator it; local
1018 std::list<QuotaInfo>::iterator it; local
[all...]
H A DNetdConstants.cpp77 std::list<const char*>::iterator it; local
78 for (it = argsList.begin(); it != argsList.end(); it++, i++) {
79 argv[i] = *it;
H A DCommandListener.cpp651 TtyCollection::iterator it; local
653 for (it = tlist->begin(); it != tlist->end(); ++it) {
654 cli->sendMsg(ResponseCode::TtyListResult, *it, false);
725 InterfaceCollection::iterator it; local
726 for (it = ilist->begin(); it != ilist->end(); ++it) {
727 cli->sendMsg(ResponseCode::TetherInterfaceListResult, *it, fals
731 NetAddressCollection::iterator it; local
[all...]
/system/extras/memtrack/
H A Dmemtrack.cpp171 for (processes_t::iterator it = all_.begin(); it != all_.end(); ++it) {
172 it->second.pids.clear();
199 for (cur_processes_t::const_iterator it = cur_.begin();
200 it != cur_.end(); ++it) {
202 if (all_.count(it->first) == 0) {
204 all_[it->first].num_samples = 0;
205 all_[it
[all...]
/system/core/libsysutils/src/
H A DSocketListener.cpp63 SocketClientCollection::iterator it; local
64 for (it = mClients->begin(); it != mClients->end();) {
65 (*it)->decRef();
66 it = mClients->erase(it);
130 SocketClientCollection::iterator it; local
131 for (it = mClients->begin(); it != mClients->end();) {
132 delete (*it);
151 SocketClientCollection::iterator it; local
[all...]
/system/vold/
H A DDirectVolume.cpp62 PathCollection::iterator it; local
64 for (it = mPaths->begin(); it != mPaths->end(); ++it)
65 free(*it);
97 PathCollection::iterator it; local
98 for (it = mPaths->begin(); it != mPaths->end(); ++it) {
99 if (!strncmp(dp, *it, strle
387 PathCollection::iterator it; local
[all...]
H A DVolumeManager.cpp114 VolumeCollection::iterator it; local
115 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
116 (*it)->setDebug(enable);
137 VolumeCollection::iterator it; local
139 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
140 if (!(*it)
863 AsecIdCollection::iterator it; local
[all...]
/system/extras/tests/memtest/
H A Dbandwidth.cpp200 // Throw away the last data point since it's possible not
310 for (std::vector<int>::iterator it = cpu_list.begin();
311 it != cpu_list.end(); ++it, ++i) {
312 args[i].core = *it;
393 for (std::vector<BandwidthBenchmark*>::iterator it = bench_objs.begin();
394 it != bench_objs.end(); ++it) {
395 if (!(*it)->canRun()) {
398 if (!(*it)
[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 Dkeystore.cpp880 for (android::Vector<grant_t*>::iterator it(mGrants.begin());
881 it != mGrants.end(); it++) {
882 delete *it;
883 mGrants.erase(it);
886 for (android::Vector<UserState*>::iterator it(mMasterKeys.begin());
887 it != mMasterKeys.end(); it++) {
888 delete *it;
889 mMasterKeys.erase(it);
[all...]
H A DIKeystoreService.cpp299 for (Vector<sp<KeystoreArg> >::iterator it = args->begin(); it != args->end(); ++it) {
300 sp<KeystoreArg> item = *it;
660 Vector<String16>::const_iterator it = matches.begin(); local
661 for (; it != matches.end(); ++it) {
662 reply->writeString16(*it);
/system/core/rootdir/
H A DAndroid.mk24 # Put it here instead of in init.rc module definition,
/system/media/camera/docs/
H A DCameraCaptureResultTest.mako33 // Add STATISTICS_FACES key separately here because it is not
H A Dmetadata_helpers.py126 True if it finds an Enum node in the subtree, False otherwise
212 Creates a function that given a string will pad it with spaces to make
226 Deprecated. Use pad instead since it works for non-first items in a
257 Create a function that given a string will pad it to the specified column col.
258 If the string overflows the column, put the string on a new line and pad it.
270 This keeps track of the line written by Mako so far, so it will always
349 need the regular type in Java. It's not boxed, so it can't be used as a
422 Makes a special exception for Rational, since it's a primitive in terms of
479 Calculate the value of the enum, even if it does not have one explicitly
539 it
[all...]
H A Dhtml.mako50 /* hide the first thead, we need it there only to enforce column sizes */
74 /* TODO for each x.y.z try to link it to the entry */
82 supposedly there is a bug in chrome that it lays out tables before
83 it knows its being printed, so the page-break-* styles are ignored
H A DCameraCharacteristicsTest.mako22 * This file contains only the auto-generated CameraCharacteristics CTS tests; it does
/system/extras/tests/bionic/libstdc++/
H A DAndroid.mk23 # used to define a simple test program and build it as a standalone
76 # host environments don't provide it unless you use specific
/system/extras/tests/bionic/libc/
H A DAndroid.mk22 # used to define a simple test program and build it as a standalone
173 # on it.
191 # build a shared library, then call it from another

Completed in 1513 milliseconds