OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:maps_path
(Results
1 - 5
of
5
) sorted by null
/external/google-breakpad/src/client/linux/minidump_writer/
linux_core_dumper_unittest.cc
47
char
maps_path
[NAME_MAX] = "";
local
51
EXPECT_TRUE(dumper.BuildProcPath(
maps_path
, pid, "maps"));
52
EXPECT_STREQ(maps_path_expected,
maps_path
);
55
EXPECT_FALSE(dumper.BuildProcPath(
maps_path
, pid, ""));
56
EXPECT_FALSE(dumper.BuildProcPath(
maps_path
, pid, NULL));
62
EXPECT_FALSE(dumper.BuildProcPath(
maps_path
, pid, long_node));
linux_ptrace_dumper_unittest.cc
250
char
maps_path
[NAME_MAX] = "";
local
254
EXPECT_TRUE(dumper.BuildProcPath(
maps_path
, pid, "maps"));
255
EXPECT_STREQ(maps_path_expected,
maps_path
);
258
EXPECT_FALSE(dumper.BuildProcPath(
maps_path
, 0, "maps"));
259
EXPECT_FALSE(dumper.BuildProcPath(
maps_path
, pid, ""));
260
EXPECT_FALSE(dumper.BuildProcPath(
maps_path
, pid, NULL));
266
EXPECT_FALSE(dumper.BuildProcPath(
maps_path
, 123, long_node));
linux_dumper.cc
284
char
maps_path
[NAME_MAX];
local
285
if (!BuildProcPath(
maps_path
, pid_, "maps"))
302
const int fd = sys_open(
maps_path
, O_RDONLY, 0);
/external/autotest/client/site_tests/security_RuntimeExecStack/
security_RuntimeExecStack.py
65
maps_path
= '/proc/%s/maps' % (pid)
67
if not os.path.exists(
maps_path
):
76
maps = open(
maps_path
)
81
if os.path.exists(
maps_path
):
/external/google-breakpad/src/client/solaris/handler/
solaris_lwp.cc
302
const char *
maps_path
= "/proc/self/map";
local
309
if ((fd = open(
maps_path
, O_RDONLY)) == -1) {
310
print_message2(2, "failed to open %s in ListModules\n",
maps_path
);
Completed in 216 milliseconds