39 lines
859 B
Java
39 lines
859 B
Java
package com.getkeepsafe.relinker.elf;
|
|
|
|
import java.io.IOException;
|
|
|
|
/* loaded from: classes.dex */
|
|
public interface Elf {
|
|
|
|
public static abstract class DynamicStructure {
|
|
public long a;
|
|
public long b;
|
|
}
|
|
|
|
public static abstract class Header {
|
|
public boolean a;
|
|
public long b;
|
|
public long c;
|
|
public int d;
|
|
public int e;
|
|
public int f;
|
|
|
|
public abstract DynamicStructure a(long j, int i) throws IOException;
|
|
|
|
public abstract ProgramHeader a(long j) throws IOException;
|
|
|
|
public abstract SectionHeader a(int i) throws IOException;
|
|
}
|
|
|
|
public static abstract class ProgramHeader {
|
|
public long a;
|
|
public long b;
|
|
public long c;
|
|
public long d;
|
|
}
|
|
|
|
public static abstract class SectionHeader {
|
|
public long a;
|
|
}
|
|
}
|