Home
last modified time | relevance | path

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

/art/runtime/base/
Dmem_map_arena_pool.cc63 int retry_cnt = 0; in Allocate() local
67 if (retry_cnt > 0) { in Allocate()
68 LOG(WARNING) << "Succeed with retry(cnt=" << retry_cnt << ")"; in Allocate()
72 if (retry_cnt == MAX_RETRY_CNT) { in Allocate()
73 CHECK(map.IsValid()) << error_msg << "(retried " << retry_cnt << " times)"; in Allocate()
76 retry_cnt++; in Allocate()
77 LOG(ERROR) << error_msg << " but retry(cnt=" << retry_cnt << ")"; in Allocate()