mirror of
https://github.com/github/codeql.git
synced 2025-12-20 18:56:32 +01:00
* Account for changed dataflow graph shape using external flow * Account for BaseBundle only existing as of Android 5 * Properly implement Parcelable, which we previously got away with due to a partial stub * Restore an Android 11 function that had been added to the Android 9 Context class (I won't get into enforcing the difference in this PR)
27 lines
1.1 KiB
Java
Generated
27 lines
1.1 KiB
Java
Generated
// Generated automatically from android.content.res.AssetManager for testing purposes
|
|
|
|
package android.content.res;
|
|
|
|
import android.content.res.AssetFileDescriptor;
|
|
import android.content.res.XmlResourceParser;
|
|
import java.io.InputStream;
|
|
|
|
public class AssetManager implements AutoCloseable
|
|
{
|
|
protected void finalize(){}
|
|
public AssetFileDescriptor openFd(String p0){ return null; }
|
|
public AssetFileDescriptor openNonAssetFd(String p0){ return null; }
|
|
public AssetFileDescriptor openNonAssetFd(int p0, String p1){ return null; }
|
|
public InputStream open(String p0){ return null; }
|
|
public InputStream open(String p0, int p1){ return null; }
|
|
public String[] getLocales(){ return null; }
|
|
public String[] list(String p0){ return null; }
|
|
public XmlResourceParser openXmlResourceParser(String p0){ return null; }
|
|
public XmlResourceParser openXmlResourceParser(int p0, String p1){ return null; }
|
|
public static int ACCESS_BUFFER = 0;
|
|
public static int ACCESS_RANDOM = 0;
|
|
public static int ACCESS_STREAMING = 0;
|
|
public static int ACCESS_UNKNOWN = 0;
|
|
public void close(){}
|
|
}
|