Searched refs:tempFile (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/printing/
H A DPrintingControllerTest.java104 final File tempFile = File.createTempFile(TEMP_FILE_NAME, TEMP_FILE_EXTENSION, cacheDir);
106 ParcelFileDescriptor.open(tempFile, (ParcelFileDescriptor.MODE_CREATE |
140 assertTrue(tempFile.length() > 0);
141 in = new FileInputStream(tempFile);
151 TestFileUtil.deleteFile(tempFile.getAbsolutePath());
/external/svox/pico/src/com/svox/pico/
H A DCheckVoiceData.java114 File tempFile = new File(PICO_LINGWARE_PATH + filename);
116 if ((!tempFile.exists()) && (!tempFileSys.exists())) {
/external/chromium_org/third_party/sqlite/src/src/
H A Dpager.c620 u8 tempFile; /* zFilename is a temporary file */ member in struct:Pager
830 assert( p->tempFile==0 || p->eLock==EXCLUSIVE_LOCK );
831 assert( p->tempFile==0 || pPager->changeCountDone );
866 assert( sqlite3PcacheRefCount(pPager->pPCache)==0 || pPager->tempFile );
960 "Backing store: tempFile=%d memDb=%d useJournal=%d\n"
984 , (int)p->tempFile, (int)p->memDb, (int)p->useJournal
1124 if( !pPager->tempFile ){
1798 pPager->changeCountDone = pPager->tempFile;
1950 if( !pPager->tempFile ){
2529 assert( isOpen(pPager->fd) || pPager->tempFile );
4302 int tempFile = 0; /* True for temp files (incl. in-memory files) */ local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DCPUProfileView.js999 function didCreateTempFile(tempFile)
1001 this._writeToTempFile(tempFile, serializedData);
1007 * @param {?WebInspector.TempFile} tempFile
1010 _writeToTempFile: function(tempFile, serializedData)
1012 this._tempFile = tempFile;
1013 if (tempFile)
1014 tempFile.write(serializedData);
/external/lzma/CPP/Windows/
H A DFileDir.cpp841 CTempFile tempFile; local
842 if (!tempFile.Create(prefix, dirName))
844 if (!tempFile.Remove())
880 CTempFileW tempFile; local
881 if (!tempFile.Create(prefix, dirName))
883 if (!tempFile.Remove())
/external/apache-harmony/beans/src/test/java/org/apache/harmony/beans/tests/java/beans/
H A DPropertyChangeSupportTest.java47 private File tempFile; field in class:PropertyChangeSupportTest
51 tempFile = File.createTempFile("beans", ".ser");
56 tempFile.delete();
57 tempFile = null;
1467 oos = new ObjectOutputStream(new FileOutputStream(tempFile));
1495 ois = new ObjectInputStream(new FileInputStream(tempFile));
/external/chromium_org/third_party/WebKit/Source/testing/plugin/
H A DPluginObject.cpp802 FILE* tempFile = fopen(path, "w"); local
803 if (!tempFile)
806 size_t written = fwrite(contentsString.UTF8Characters, contentsString.UTF8Length, 1, tempFile);
807 fclose(tempFile);
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_mdls.c814 EAS_FILE_HANDLE tempFile; local
836 if ((result = EAS_HWDupHandle(pDLSData->hwInstData, pDLSData->fileHandle, &tempFile)) != EAS_SUCCESS)
844 if ((result = EAS_HWGetDWord(pDLSData->hwInstData, tempFile, &temp, EAS_FALSE)) != EAS_SUCCESS)
849 EAS_HWCloseFile(pDLSData->hwInstData, tempFile);
859 EAS_HWCloseFile(pDLSData->hwInstData, tempFile);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.jarprocessor_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.repository_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/sqlite/dist/orig/
H A Dsqlite3.c39046 u8 tempFile; /* zFilename is a temporary file */ member in struct:Pager
42739 int tempFile = 0; /* True for temp files (incl. in-memory files) */ local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c39074 u8 tempFile; /* zFilename is a temporary file */ member in struct:Pager
42767 int tempFile = 0; /* True for temp files (incl. in-memory files) */ local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c37063 u8 tempFile; /* zFilename is a temporary file */ member in struct:Pager
40745 int tempFile = 0; /* True for temp files (incl. in-memory files) */ local
[all...]
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...
/external/robolectric/lib/test/
H A Dmockito-core-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 1116 milliseconds