Searched refs:mapped (Results 1 - 4 of 4) sorted by relevance

/system/vold/
H A Dsecdiscard.cpp141 auto mapped = fiemap->fm_mapped_extents; local
142 if (mapped < 1 || mapped > extent_count) {
143 LOG(ERROR) << "Extent count not in bounds 1 <= " << mapped << " <= " << extent_count
152 auto mapped = fiemap.fm_mapped_extents; local
153 if (!(fiemap.fm_extents[mapped - 1].fe_flags & FIEMAP_EXTENT_LAST)) {
154 LOG(ERROR) << "Extent " << mapped -1 << " was not the last in " << path;
157 for (uint32_t i = 0; i < mapped; i++) {
/system/netd/server/
H A DSockDiag.cpp136 in6_addr mapped = { .s6_addr32 = { 0, 0, htonl(0xffff), 0 } }; local
156 mapped.s6_addr32[3] = ina.s_addr;
157 addr = &mapped;
158 addrlen = sizeof(mapped);
/system/core/adf/libadf/tests/
H A Dadf_test.cpp326 void *mapped = mmap(NULL, pitch * h, PROT_WRITE, MAP_SHARED, buf_fd,
328 ASSERT_NE(mapped, MAP_FAILED) << "mapping " << w << "x" << h << " " <<
330 drawCheckerboard(mapped, w, h, pitch);
331 munmap(mapped, pitch * h);
/system/extras/perfprofd/quipper/
H A Dperf_parser.cc76 // Some MMAP/MMAP2 events' mapped regions will not have any samples. These
231 << stats_.num_sample_events_mapped << " of these were mapped";
325 // The sample address has already been mapped so no need to map it.
338 // Not all the entries were mapped. Trim |parsed_event->callchain| to
420 bool mapped = mapper->GetMappedAddress(ip, &mapped_addr); local
421 if (!mapped) {
423 mapped = mapper->GetMappedAddress(ip, &mapped_addr);
427 if (mapped) {
456 return mapped;
494 // For non-sudo mode, the kernel will be mapped fro
[all...]

Completed in 157 milliseconds