OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:mapsfile
(Results
1 - 2
of
2
) sorted by null
/external/oprofile/daemon/liblegacy/
opd_parse_proc.c
95
char
mapsfile
[20] = "/proc/";
local
101
snprintf(
mapsfile
+ 6, 6, "%hu", proc->tid);
103
strcpy(exe_name,
mapsfile
);
105
strcat(
mapsfile
, "/maps");
107
fp = op_try_open_file(
mapsfile
, "r");
/external/chromium_org/tools/cygprofile/
cygprofile.cc
183
std::ifstream
mapsfile
("/proc/self/maps");
184
CHECK(
mapsfile
.good());
189
while (
mapsfile
.getline(line, kMaxLineSize)) {
210
mapsfile
.close();
Completed in 84 milliseconds