Home
last modified time | relevance | path

Searched refs:itr (Results 1 – 7 of 7) sorted by relevance

/system/tools/sysprop/
DTypeChecker.cpp108 auto itr = types.find(prop_name); in CheckPropertyTypes() local
109 if (itr == types.end()) continue; in CheckPropertyTypes()
111 if (!IsCompatible(prop, itr->second)) { in CheckPropertyTypes()
116 err += "In property_contexts: " + itr->second + " (should be '" + in CheckPropertyTypes()
DApiChecker.cpp54 auto itr = props.find(latest_prop.api_name()); in CompareProps() local
56 if (itr != props.end()) { in CompareProps()
57 current_prop = itr->second; in CompareProps()
/system/core/libsync/
Dsync.c53 struct sync_pt_info* sync_pt_info(struct sync_fence_info_data* info, struct sync_pt_info* itr);
388 struct sync_pt_info *itr) in sync_pt_info() argument
390 if (itr == NULL) in sync_pt_info()
391 itr = (struct sync_pt_info *) info->pt_info; in sync_pt_info()
393 itr = (struct sync_pt_info *) ((__u8 *)itr + itr->len); in sync_pt_info()
395 if ((__u8 *)itr - (__u8 *)info >= (int)info->len) in sync_pt_info()
398 return itr; in sync_pt_info()
/system/core/libsync/tests/
Dsync_test.cpp42 struct sync_pt_info* sync_pt_info(struct sync_fence_info_data* info, struct sync_pt_info* itr);
180 for (auto itr = ++begin(sources); itr != end(sources); ++itr) { in SyncFence() local
181 temp = SyncFence(*itr, temp); in SyncFence()
652 auto itr = fenceMap.find(timelineOffset); in TEST_P() local
653 if (itr == end(fenceMap)) { in TEST_P()
657 int oldSyncPoint = itr->second; in TEST_P()
658 fenceMap.erase(itr); in TEST_P()
/system/connectivity/wificond/net/
Dnetlink_manager.cpp137 auto itr = message_handlers_.find(sequence_number); in ReceivePacketAndRunHandler() local
139 if (itr == message_handlers_.end()) { in ReceivePacketAndRunHandler()
149 message_handlers_.erase(itr); in ReceivePacketAndRunHandler()
154 message_handlers_.erase(itr); in ReceivePacketAndRunHandler()
168 itr->second(std::move(packet)); in ReceivePacketAndRunHandler()
171 message_handlers_.erase(itr); in ReceivePacketAndRunHandler()
/system/core/fs_mgr/libsnapshot/libsnapshot_cow/
Dcow_reader.cpp510 auto itr = GetMergeOpIter(true); in VerifyMergeOps() local
512 while (!itr->Done()) { in VerifyMergeOps()
513 CowOperation op = itr->Get(); in VerifyMergeOps()
523 itr->Next(); in VerifyMergeOps()
542 itr->Next(); in VerifyMergeOps()
Dcow_api_test.cpp1321 auto itr = reader->GetRevMergeOpIter(); in TEST_F() local
1322 ASSERT_TRUE(itr->Done()); in TEST_F()