Searched refs:inFile (Results 1 - 6 of 6) sorted by relevance

/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp40 const char* inFile = NULL; variable
73 inFile = argv[optind];
111 if (!inFile) {
117 if (stat(inFile, &statInFile) < 0) {
127 FILE *in = fopen(inFile, "r");
129 fprintf(stderr, "Could not open input file %s\n", inFile);
139 fprintf(stderr, "Could not read all of file %s\n", inFile);
/frameworks/compile/libbcc/tests/
H A Dmain.cpp116 const char* inFile = NULL; variable
159 inFile = argv[optind];
164 if (!inFile) {
170 if (stat(inFile, &statInFile) < 0) {
180 FILE *in = fopen(inFile, "r");
182 fprintf(stderr, "Could not open input file %s\n", inFile);
192 fprintf(stderr, "Could not read all of file %s\n", inFile);
/frameworks/base/core/tests/coretests/src/android/os/storage/
H A DStorageManagerBaseTest.java281 File inFile = new File(path, fileName);
284 inStream = new DataInputStream(new FileInputStream(inFile));
466 File inFile = new File(path, filename);
470 inStream = new DataInputStream(new FileInputStream(inFile));
482 fail("File " + inFile + " not found: " + e.toString());
484 fail("IOError with file " + inFile + ":" + e.toString());
496 File inFile = new File(path, filename);
501 fileReader = new BufferedReader(new FileReader(inFile));
515 fail("IOError with file " + inFile + ":" + e.toString());
532 File inFile
[all...]
/frameworks/base/media/libstagefright/codecs/amrwbenc/SampleCode/
H A DAMRWB_E_SAMPLE.c64 int GetNextBuf(FILE* inFile,unsigned char* dst,int size) argument
66 int size2 = (int)fread(dst, sizeof(signed char), size,inFile);
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/
H A DDownloadManagerTestApp.java185 FileInputStream inFile = mContext.openFileInput(DOWNLOAD_STARTED_FLAG);
186 dataInputFile = new DataInputStream(inFile);
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerBaseTest.java396 DataInputStream inFile = new DataInputStream(new FileInputStream(file));
401 ((expectedRead = inFile.read(expected)) != -1)) {

Completed in 192 milliseconds