HomeSort by relevance Sort by last modified time
    Searched refs:FileNotFoundException (Results 1 - 25 of 467) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
FileNotFoundException.java 23 public class FileNotFoundException extends IOException {
28 * Constructs a new {@code FileNotFoundException} with its stack trace
31 public FileNotFoundException() {
35 * Constructs a new {@code FileNotFoundException} with its stack trace and
41 public FileNotFoundException(String detailMessage) {
FileReader.java 38 * @throws FileNotFoundException
41 public FileReader(File file) throws FileNotFoundException {
48 * FileNotFoundException can be thrown.
62 * @throws FileNotFoundException
65 public FileReader(String filename) throws FileNotFoundException {
FileOutputStream.java 70 * @throws FileNotFoundException if file cannot be opened for writing.
72 public FileOutputStream(File file) throws FileNotFoundException {
81 * @throws FileNotFoundException if the file cannot be opened for writing.
83 public FileOutputStream(File file, boolean append) throws FileNotFoundException {
114 * @throws FileNotFoundException if file cannot be opened for writing.
116 public FileOutputStream(String path) throws FileNotFoundException {
125 * @throws FileNotFoundException if the file cannot be opened for writing.
127 public FileOutputStream(String path, boolean append) throws FileNotFoundException {
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
FileNotFoundExceptionTest.java 20 import java.io.FileNotFoundException;
27 * @tests java.io.FileNotFoundException#FileNotFoundException()
30 FileNotFoundException e = new FileNotFoundException();
35 * @tests java.io.FileNotFoundException#FileNotFoundException(java.lang.String)
39 FileNotFoundException e = new FileNotFoundException(message);
  /libcore/luni/src/test/java/libcore/java/io/
OldFileReaderTest.java 21 import java.io.FileNotFoundException;
32 fail("Test 2: FileNotFoundException expected.");
33 } catch (FileNotFoundException e) {
41 fail("Test 2: FileNotFoundException expected.");
42 } catch (FileNotFoundException e) {
FileDescriptorTest.java 20 import java.io.FileNotFoundException;
RandomAccessFileTest.java 20 import java.io.FileNotFoundException;
86 } catch (FileNotFoundException expected) {
91 } catch (FileNotFoundException expected) {
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/build/
StubCtsBuildHelper.java 19 import java.io.FileNotFoundException;
36 public File getTestApp(String appFileName) throws FileNotFoundException {
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
ExceptionUtil.java 19 import java.io.FileNotFoundException;
32 if (th instanceof JSilverTemplateNotFoundException || th instanceof FileNotFoundException) {
  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePartSource.java 36 import java.io.FileNotFoundException;
62 * @throws FileNotFoundException if the file does not exist or
65 public FilePartSource(File file) throws FileNotFoundException {
69 throw new FileNotFoundException("File is not a normal file.");
72 throw new FileNotFoundException("File is not readable.");
84 * @throws FileNotFoundException if the file does not exist or
88 throws FileNotFoundException {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/build/
CtsBuildHelper.java 23 import java.io.FileNotFoundException;
54 * @throws FileNotFoundException
56 public CtsBuildHelper(IFolderBuildInfo build) throws FileNotFoundException {
78 } catch (FileNotFoundException e) {
99 * @throws FileNotFoundException if file does not exist
101 public File getTestApp(String appFileName) throws FileNotFoundException {
104 throw new FileNotFoundException(String.format("CTS test app file %s does not exist",
145 * @throws FileNotFoundException if plans directory does not exist
147 public File getTestPlanFile(String planName) throws FileNotFoundException {
154 * @throws FileNotFoundException if any major directories are missin
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
NoSdCardWritePermissionTest.java 19 import java.io.FileNotFoundException;
36 public void testWriteExternalStorage() throws FileNotFoundException, IOException {
47 } catch (FileNotFoundException e) {
  /frameworks/base/media/java/android/media/videoeditor/
VideoEditorFactory.java 21 import java.io.FileNotFoundException;
52 throw new FileNotFoundException("Cannot create project path: "
60 throw new FileNotFoundException("Cannot create file .nomedia");
  /cts/tests/tests/security/src/android/security/cts/
KernelSettingsTest.java 22 import java.io.FileNotFoundException;
42 } catch (FileNotFoundException e) {
56 } catch (FileNotFoundException e) {
67 } catch (FileNotFoundException e) {
AslrTest.java 23 import java.io.FileNotFoundException;
44 } catch (FileNotFoundException e) {
  /cts/hostsidetests/appsecurity/test-apps/AppAccessData/src/com/android/cts/appaccessdata/
AccessPrivateDataTest.java 20 import java.io.FileNotFoundException;
56 } catch (FileNotFoundException e) {
  /frameworks/base/core/java/com/android/internal/os/
AtomicFile.java 24 import java.io.FileNotFoundException;
71 } catch (FileNotFoundException e) {
82 } catch (FileNotFoundException e2) {
117 } catch (FileNotFoundException e) {
127 } catch (FileNotFoundException e) {
133 public FileInputStream openRead() throws FileNotFoundException {
  /cts/tests/tests/os/src/android/os/cts/
NoExecutePermissionTest.java 20 import java.io.FileNotFoundException;
31 public void testNoExecutePermission() throws FileNotFoundException {
  /cts/tools/device-setup/TestDeviceSetup/src/android/tests/getinfo/
RootProcessScanner.java 20 import java.io.FileNotFoundException;
53 throws FileNotFoundException, MalformedStatMException {
63 throws FileNotFoundException, MalformedStatMException {
66 throw new FileNotFoundException(proc + " is missing (man 5 proc)");
83 * @throws FileNotFoundException
87 throws FileNotFoundException, MalformedStatMException {
98 throws FileNotFoundException, MalformedStatMException {
139 * @throws FileNotFoundException
141 private static boolean isRootProcess(File processDir) throws FileNotFoundException {
211 private static String getProcessName(File processDir) throws FileNotFoundException {
    [all...]
  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/
ActionListModel.java 23 import java.io.FileNotFoundException;
60 * @throws FileNotFoundException if the file can't be created.
62 public void export(File selectedFile) throws FileNotFoundException {
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/io/
IFileOp.java 20 import java.io.FileNotFoundException;
68 * @throws FileNotFoundException if the source file doesn't exist.
78 * @throws FileNotFoundException if the source files don't exist.
112 public abstract OutputStream newFileOutputStream(File file) throws FileNotFoundException;
  /development/samples/ApiDemos/src/com/example/android/apis/content/
FileProvider.java 19 import java.io.FileNotFoundException;
77 public AssetFileDescriptor openAssetFile(Uri uri, String mode) throws FileNotFoundException {
86 FileNotFoundException fnf = new FileNotFoundException("Unable to open " + uri);
  /cts/tests/tests/util/src/android/util/cts/
PrintStreamPrinterTest.java 22 import java.io.FileNotFoundException;
41 public void testConstructor() throws FileNotFoundException {
45 public void testPrintln() throws FileNotFoundException, SecurityException, IOException {
PrintWriterPrinterTest.java 22 import java.io.FileNotFoundException;
49 } catch (FileNotFoundException e) {
61 } catch (FileNotFoundException e) {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/targetprep/
CtsRootDeviceSetup.java 28 import java.io.FileNotFoundException;
71 } catch (FileNotFoundException e) {
77 throws DeviceNotAvailableException, TargetSetupError, FileNotFoundException {

Completed in 6814 milliseconds

1 2 3 4 5 6 7 8 91011>>