OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:proc_maps
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/base/debug/
proc_maps_linux.cc
27
// Scans |
proc_maps
| starting from |pos| returning true if the gate VMA was
29
static bool ContainsGateVMA(std::string*
proc_maps
, size_t pos) {
32
return
proc_maps
->find(" [vectors]\n", pos) != std::string::npos;
35
return
proc_maps
->find(" [vsyscall]\n", pos) != std::string::npos;
43
bool ReadProcMaps(std::string*
proc_maps
) {
54
proc_maps
->clear();
57
// To avoid a copy, resize |
proc_maps
| so read() can write directly into it.
59
size_t pos =
proc_maps
->size();
60
proc_maps
->resize(pos + kReadSize);
61
void* buffer = &(*
proc_maps
)[pos]
[
all
...]
stack_trace_android.cc
77
std::string
proc_maps
;
local
85
if (!ReadProcMaps(&
proc_maps
)) {
88
} else if (!ParseProcMaps(
proc_maps
, ®ions)) {
proc_maps_linux_unittest.cc
184
std::string
proc_maps
;
local
185
ASSERT_TRUE(ReadProcMaps(&
proc_maps
));
188
ASSERT_TRUE(ParseProcMaps(
proc_maps
, ®ions));
192
// mapped into memory. Use the address of |
proc_maps
| as a way of finding the
196
uintptr_t address = reinterpret_cast<uintptr_t>(&
proc_maps
);
236
std::string
proc_maps
(old_string);
237
ASSERT_TRUE(ReadProcMaps(&
proc_maps
));
238
EXPECT_EQ(std::string::npos,
proc_maps
.find(old_string));
proc_maps_linux.h
44
// Reads the data from /proc/self/maps and stores the result in |
proc_maps
|.
80
BASE_EXPORT bool ReadProcMaps(std::string*
proc_maps
);
/external/compiler-rt/lib/sanitizer_common/
sanitizer_posix.cc
147
MemoryMappingLayout
proc_maps
(/*cache_enabled*/true);
149
while (
proc_maps
.Next(&start, &end,
159
MemoryMappingLayout
proc_maps
(/*cache_enabled*/true);
164
while (
proc_maps
.Next(&start, &end, /* file_offset */0,
sanitizer_linux_libcdep.cc
41
MemoryMappingLayout
proc_maps
(/*cache_enabled*/true);
44
while (
proc_maps
.Next(&start, &end, &offset, 0, 0, /* protection */0)) {
sanitizer_stacktrace.cc
68
MemoryMappingLayout
proc_maps
(/*cache_enabled*/true);
116
if (
proc_maps
.GetObjectNameAndOffset(pc, &offset,
/external/compiler-rt/lib/tsan/rtl/
tsan_platform_linux.cc
200
MemoryMappingLayout
proc_maps
(/*cache_enabled*/true);
203
while (
proc_maps
.Next(&start, &end, &offset, name, ARRAY_SIZE(name), &prot)) {
259
MemoryMappingLayout
proc_maps
(true);
261
if (
proc_maps
.Next(&start, &end,
276
MemoryMappingLayout
proc_maps
(true);
280
while (
proc_maps
.Next(&start, &end, &offset, name, ARRAY_SIZE(name),
/external/compiler-rt/lib/msan/
msan.cc
76
MemoryMappingLayout
proc_maps
(/*cache_enabled*/true);
79
while (
proc_maps
.Next(/* start */0, /* end */0, /* file_offset */0,
Completed in 233 milliseconds