OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:FileNotFoundException
(Results
51 - 75
of
975
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/frameworks/base/services/core/java/com/android/server/am/
DumpHeapProvider.java
27
import java.io.
FileNotFoundException
;
77
public ParcelFileDescriptor openFile(Uri uri, String mode) throws
FileNotFoundException
{
85
throw new
FileNotFoundException
("Invalid path for " + uri);
/dalvik/dx/src/com/android/multidex/
Path.java
24
import java.io.
FileNotFoundException
;
45
throw new
FileNotFoundException
("File \"" + file.getPath() + "\" not found");
96
synchronized DirectClassFile getClass(String path) throws
FileNotFoundException
{
115
throw new
FileNotFoundException
("File \"" + path + "\" not found");
/development/tools/idegen/src/
Main.java
22
import java.io.
FileNotFoundException
;
/external/apache-xml/src/main/java/org/apache/xalan/xslt/
SecuritySupport12.java
26
import java.io.
FileNotFoundException
;
97
throws
FileNotFoundException
102
public Object run() throws
FileNotFoundException
{
107
throw (
FileNotFoundException
)e.getException();
/external/apache-xml/src/main/java/org/apache/xml/dtm/
SecuritySupport12.java
26
import java.io.
FileNotFoundException
;
97
throws
FileNotFoundException
102
public Object run() throws
FileNotFoundException
{
107
throw (
FileNotFoundException
)e.getException();
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
SecuritySupport12.java
26
import java.io.
FileNotFoundException
;
97
throws
FileNotFoundException
102
public Object run() throws
FileNotFoundException
{
107
throw (
FileNotFoundException
)e.getException();
/external/apache-xml/src/main/java/org/apache/xml/serializer/
SecuritySupport12.java
26
import java.io.
FileNotFoundException
;
94
throws
FileNotFoundException
99
public Object run() throws
FileNotFoundException
{
104
throw (
FileNotFoundException
)e.getException();
/external/apache-xml/src/main/java/org/apache/xml/utils/
SecuritySupport12.java
26
import java.io.
FileNotFoundException
;
97
throws
FileNotFoundException
102
public Object run() throws
FileNotFoundException
{
107
throw (
FileNotFoundException
)e.getException();
/external/apache-xml/src/main/java/org/apache/xpath/functions/
SecuritySupport12.java
26
import java.io.
FileNotFoundException
;
97
throws
FileNotFoundException
102
public Object run() throws
FileNotFoundException
{
107
throw (
FileNotFoundException
)e.getException();
/external/jetty/src/java/org/eclipse/jetty/io/nio/
RandomAccessFileBuffer.java
22
import java.io.
FileNotFoundException
;
38
throws
FileNotFoundException
50
throws
FileNotFoundException
63
throws
FileNotFoundException
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
FileDataStore.java
12
public FileDataStore(@Nonnull File file) throws
FileNotFoundException
, IOException {
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
DocumentStack.java
26
import java.io.
FileNotFoundException
;
56
public void updateRoot(Collection<RootInfo> matchingRoots) throws
FileNotFoundException
{
63
throw new
FileNotFoundException
("Failed to find matching root for " + root);
70
public void updateDocuments(ContentResolver resolver) throws
FileNotFoundException
{
DocumentInfo.java
38
import java.io.
FileNotFoundException
;
175
throws
FileNotFoundException
{
185
public void updateSelf(ContentResolver resolver) throws
FileNotFoundException
{
189
public void updateFromUri(ContentResolver resolver, Uri uri) throws
FileNotFoundException
{
197
throw new
FileNotFoundException
("Missing details for " + uri);
269
public static
FileNotFoundException
asFileNotFoundException(Throwable t)
270
throws
FileNotFoundException
{
271
if (t instanceof
FileNotFoundException
) {
272
throw (
FileNotFoundException
) t;
274
final
FileNotFoundException
fnfe = new FileNotFoundException(t.getMessage())
[
all
...]
/frameworks/support/v4/java/android/support/v4/util/
AtomicFile.java
23
import java.io.
FileNotFoundException
;
101
} catch (
FileNotFoundException
e) {
108
} catch (
FileNotFoundException
e2) {
163
public FileInputStream openRead() throws
FileNotFoundException
{
/platform_testing/libraries/power-helper/src/com/android/helper/
PowerTestHelper.java
21
import java.io.
FileNotFoundException
;
75
* @throws
FileNotFoundException
79
throws
FileNotFoundException
, IOException {
98
* @throws
FileNotFoundException
102
throws
FileNotFoundException
, IOException {
110
throws
FileNotFoundException
, IOException {
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
FileDisk.java
24
import java.io.
FileNotFoundException
;
54
* @throws
FileNotFoundException
if the specified file does not exist
57
public FileDisk(File file, boolean readOnly) throws
FileNotFoundException
{
58
if (!file.exists()) throw new
FileNotFoundException
();
97
} catch (
FileNotFoundException
ex) {
/cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
AmbiguousContentProvider.java
26
import java.io.
FileNotFoundException
;
67
public ParcelFileDescriptor openFile(Uri uri, String mode) throws
FileNotFoundException
{
PermissionContentProvider.java
26
import java.io.
FileNotFoundException
;
67
public ParcelFileDescriptor openFile(Uri uri, String mode) throws
FileNotFoundException
{
PermissionContentProviderGranting.java
26
import java.io.
FileNotFoundException
;
67
public ParcelFileDescriptor openFile(Uri uri, String mode) throws
FileNotFoundException
{
PermissionContentProviderPath.java
10
import java.io.
FileNotFoundException
;
51
public ParcelFileDescriptor openFile(Uri uri, String mode) throws
FileNotFoundException
{
PermissionContentProviderPathRestricting.java
26
import java.io.
FileNotFoundException
;
67
public ParcelFileDescriptor openFile(Uri uri, String mode) throws
FileNotFoundException
{
PrivateContentProvider.java
26
import java.io.
FileNotFoundException
;
67
public ParcelFileDescriptor openFile(Uri uri, String mode) throws
FileNotFoundException
{
PrivateContentProviderGranting.java
26
import java.io.
FileNotFoundException
;
67
public ParcelFileDescriptor openFile(Uri uri, String mode) throws
FileNotFoundException
{
/cts/hostsidetests/appsecurity/test-apps/PermissionDeclareAppCompat/src/com/android/cts/permissiondeclareappcompat/
AmbiguousContentProvider.java
26
import java.io.
FileNotFoundException
;
67
public ParcelFileDescriptor openFile(Uri uri, String mode) throws
FileNotFoundException
{
/cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/
BasicContentProvider.java
26
import java.io.
FileNotFoundException
;
67
public ParcelFileDescriptor openFile(Uri uri, String mode) throws
FileNotFoundException
{
Completed in 1617 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>