Searched refs:mch (Results 1 – 1 of 1) sorted by relevance
/hardware/google/graphics/common/libmemtrack/ |
D | dmabuf.cpp | 50 smatch mch; in build_dmabuf_footprint() local 53 if (regex_match(line, mch, rex)) in build_dmabuf_footprint() 54 buffers.emplace_back(stoul(mch[1], 0, 10), stoul(mch[2], 0, 10), stoul(mch[3], 0, 10)); in build_dmabuf_footprint() 69 smatch mch; in complete_dmabuf_footprint() local 72 if (regex_match(line, mch, rexion)) { in complete_dmabuf_footprint() 73 unsigned int id = stoul(mch[1], 0, 10); in complete_dmabuf_footprint() 74 unsigned int flags = stoul(mch[3], 0, 16); in complete_dmabuf_footprint() 75 size_t len = stoul(mch[4], 0, 10) * 1024; in complete_dmabuf_footprint() 82 elem->setPoolType(mch[2]); in complete_dmabuf_footprint()
|