OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ReadElf
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/os/src/android/os/cts/
AbiTest.java
19
import android.os.cts.
ReadElf
;
52
ReadElf
elf = null;
54
elf =
ReadElf
.read(f);
/cts/tests/tests/security/src/android/security/cts/
AslrTest.java
27
import android.os.cts.
ReadElf
;
35
assertTrue(
ReadElf
.read(new File("/system/bin/cat")).isPIE());
/cts/tests/src/android/os/cts/
ReadElf.java
26
* A poor man's implementation of the
readelf
command. This program is
29
public class
ReadElf
implements AutoCloseable {
235
public static
ReadElf
read(File file) throws IOException {
236
return new
ReadElf
(file);
251
private
ReadElf
(File file) throws IOException {
Completed in 104 milliseconds