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

/system/core/libsysutils/src/
H A DSocketListener.cpp56 SocketClientCollection::iterator it; local
57 for (it = mClients->begin(); it != mClients->end();) {
58 (*it)->decRef();
59 it = mClients->erase(it);
122 SocketClientCollection::iterator it; local
123 for (it = mClients->begin(); it != mClients->end();) {
124 delete (*it);
143 SocketClientCollection::iterator it; local
[all...]
/system/core/nexus/
H A DCommandListener.cpp99 ScanResultCollection::iterator it; local
102 for(it = src->begin(); it != src->end(); ++it) {
104 (*it)->getBssid(), (*it)->getFreq(), (*it)->getLevel(),
105 (*it)->getFlags(), (*it)->getSsid());
107 delete (*it);
126 WifiNetworkCollection::iterator it; local
208 android::List<char *>::iterator it; local
[all...]
H A DProperty.cpp196 PropertyCollection::iterator it; local
197 for (it = mProperties->begin(); it != mProperties->end();) {
198 delete (*it);
199 it = mProperties->erase(it);
H A DPropertyManager.cpp34 PropertyNamespaceCollection::iterator it; local
36 for (it = mNamespaces->begin(); it != mNamespaces->end();) {
37 delete (*it);
38 it = mNamespaces->erase(it);
55 PropertyCollection::iterator it; local
57 for (it = ns->getProperties()->begin();
58 it != ns->getProperties()->end(); ++it) {
101 PropertyCollection::iterator it; local
[all...]
H A DNetworkManager.cpp65 ControllerBindingCollection::iterator it; local
67 for (it = mControllerBindings->begin(); it != mControllerBindings->end(); ++it) {
68 int irc = (*it)->getController()->start();
77 ControllerBindingCollection::iterator it; local
79 for (it = mControllerBindings->begin(); it != mControllerBindings->end(); ++it) {
80 int irc = (*it)
88 ControllerBindingCollection::iterator it; local
99 ControllerBindingCollection::iterator it; local
[all...]
H A DSupplicant.cpp406 WifiNetworkCollection::iterator it; local
407 for (it = mNetworks->begin(); it != mNetworks->end(); ++it) {
408 if ((*it) == wn) {
409 mNetworks->erase(it);
425 WifiNetworkCollection::iterator it; local
426 for (it = mNetworks->begin(); it != mNetworks->end(); ++it) {
[all...]
/system/media/mca/filterfw/native/base/
H A Dutilities.h44 // For hash_[multi]set, it is important that this deletes behind the iterator
45 // because the hash_set may call the hash function on the iterator when it is
60 // in the case it's given a NULL pointer.
77 typename Collection::const_iterator it = collection.find(key); local
78 if (it == collection.end()) {
81 return &it->second;
131 typename Collection::const_iterator it = collection.find(key); local
132 if (it == collection.end()) {
135 return it->second;
/system/media/mca/filterpacks/base/native/
H A Dutilities.h44 // For hash_[multi]set, it is important that this deletes behind the iterator
45 // because the hash_set may call the hash function on the iterator when it is
60 // in the case it's given a NULL pointer.
77 typename Collection::const_iterator it = collection.find(key); local
78 if (it == collection.end()) {
81 return &it->second;
131 typename Collection::const_iterator it = collection.find(key); local
132 if (it == collection.end()) {
135 return it->second;
/system/netd/
H A DPppController.cpp45 TtyCollection::iterator it; local
47 for (it = mTtys->begin(); it != mTtys->end(); ++it) {
48 free(*it);
64 TtyCollection::iterator it; local
65 for (it = mTtys->begin(); it != mTtys->end(); ++it) {
66 if (!strcmp(tty, *it)) {
128 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
243 InterfaceCollection::iterator it; local
245 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) {
[all...]
H A DCommandListener.cpp451 TtyCollection::iterator it; local
453 for (it = tlist->begin(); it != tlist->end(); ++it) {
454 cli->sendMsg(ResponseCode::TtyListResult, *it, false);
557 InterfaceCollection::iterator it; local
559 for (it = ilist->begin(); it != ilist->end(); ++it) {
560 cli->sendMsg(ResponseCode::TetherInterfaceListResult, *it, fals
572 NetAddressCollection::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.
371 /* The "-N costly" is created upfront, no need to handle it here. */
427 /* The "-N costly_shared" is created upfront, no need to handle it here. */
445 std::list<std::string>::iterator it; local
448 /* Don't talk about -1, deprecate it. */
463 for (it = sharedQuotaIfaces.begin(); it != sharedQuotaIfaces.end(); it++) {
464 if (*it
509 std::list<std::string>::iterator it; local
548 std::list<QuotaInfo>::iterator it; local
633 std::list<QuotaInfo>::iterator it; local
835 std::list<QuotaInfo>::iterator it; local
855 std::list<QuotaInfo>::iterator it; local
[all...]
/system/vold/
H A DDirectVolume.cpp53 PathCollection::iterator it; local
55 for (it = mPaths->begin(); it != mPaths->end(); ++it)
56 free(*it);
92 PathCollection::iterator it; local
93 for (it = mPaths->begin(); it != mPaths->end(); ++it) {
94 if (!strncmp(dp, *it, strle
373 PathCollection::iterator it; local
[all...]
H A DVolumeManager.cpp107 VolumeCollection::iterator it; local
108 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
109 (*it)->setDebug(enable);
130 VolumeCollection::iterator it; local
132 for (it = mVolumes->begin(); it != mVolumes->end(); ++it) {
133 if (!(*it)
563 AsecIdCollection::iterator it; local
1161 AsecIdCollection::iterator it = mActiveContainers->begin(); local
[all...]

Completed in 2741 milliseconds