| 131 | const char* file() { return _file; } |
| 132 | bool isReadable() { return _perm[0] == 'r'; } |
| 133 | bool isExecutable() { return _perm[2] == 'x'; } |
| 134 | const char* addr() { return (const char*)strtoul(_addr, NULL, 16); } |
| 135 | const char* end() { return (const char*)strtoul(_end, NULL, 16); } |
| 136 | unsigned long offs() { return strtoul(_offs, NULL, 16); } |
no outgoing calls
no test coverage detected