Searched refs:inpPath (Results 1 – 4 of 4) sorted by relevance
142 protected void setUpSource(String inpPath) throws IOException { in setUpSource() argument143 Preconditions.assertTestFileExists(inpPath); in setUpSource()144 mFileInp = new RandomAccessFile(inpPath, "r"); in setUpSource()
348 protected void setUpSource(String inpPath) throws IOException { in setUpSource() argument349 Preconditions.assertTestFileExists(inpPath); in setUpSource()350 try (FileInputStream fInp = new FileInputStream(inpPath)) { in setUpSource()351 int size = (int) new File(inpPath).length(); in setUpSource()
773 String inpPath = mInpPrefix + srcFile; in setUpSource() local774 try (FileInputStream fInp = new FileInputStream(inpPath)) { in setUpSource()775 int size = (int) new File(inpPath).length(); in setUpSource()
88 static TestMediaDataSource fromString(String inpPath, boolean failSize, boolean failRead) in fromString() argument90 try (FileInputStream fInp = new FileInputStream(inpPath)) { in fromString()91 int size = (int) new File(inpPath).length(); in fromString()