filter functions
| 233 | // filter functions |
| 234 | // |
| 235 | STATIC |
| 236 | BOOLEAN |
| 237 | IsTextShdr ( |
| 238 | Elf_Shdr *Shdr |
| 239 | ) |
| 240 | { |
| 241 | return (BOOLEAN) ((Shdr->sh_flags & (SHF_WRITE | SHF_ALLOC)) == SHF_ALLOC); |
| 242 | } |
| 243 | |
| 244 | STATIC |
| 245 | BOOLEAN |
no outgoing calls
no test coverage detected