/frameworks/base/core/java/android/ddm/ |
DdmHandleHeap.java | 159 /* get the filename for the output file */ 161 String fileName = getString(in, len); 163 Log.d("ddm-heap", "Heap dump: file='" + fileName + "'"); 166 Debug.dumpHprofData(fileName); 193 /* get the filename for the output file */
|
DdmHandleProfiling.java | 100 String fileName = getString(in, len); 102 Log.v("ddm-heap", "Method profiling start: filename='" + fileName 106 Debug.startMethodTracing(fileName, bufferSize, flags);
|
/hardware/libhardware_legacy/audio/ |
AudioDumpInterface.h | 157 String8 fileName() const { return mFileName; }
|
/libcore/luni/src/main/java/java/util/zip/ |
ZipFile.java | 67 * the filename and comment fields for this file 82 private final String fileName; 119 fileName = file.getPath(); 130 mRaf = new RandomAccessFile(fileName, "r"); 283 return fileName;
|
/libcore/luni/src/test/java/libcore/java/util/jar/ |
DalvikExecTest.java | 240 String fileName; 242 fileName = args[0]; 243 System.out.format("for argument '%s'.\n", fileName); 246 fileName = "myResource"; 249 InputStream is = ResourceDumper.class.getResourceAsStream(fileName);
|
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/ |
BluetoothOppSendFileInfo.java | 76 public BluetoothOppSendFileInfo(String fileName, String type, long length, 78 mFileName = fileName; 104 String fileName = null; 118 fileName = metadataCursor.getString(0); 120 if (D) Log.d(TAG, "fileName = " + fileName + " length = " + length); 127 fileName = u.getLastPathSegment(); 157 return new BluetoothOppSendFileInfo(fileName, contentType, length, is, 0, dest);
|
/packages/apps/Mms/src/com/android/mms/ |
TempFileProvider.java | 82 String fileName = getScrapPath(); 86 File file = new File(fileName); 100 Log.e(TAG, "getTempStoreFd: error creating pfd for " + fileName, ex); 139 public static String getScrapPath(String fileName) { 140 return MmsApp.getApplication().getExternalCacheDir().getAbsolutePath() + "/" + fileName; 158 // the scrap file to a new scrap file with the slide number as part of the filename. 160 // Replace the filename ".temp.jpg" with ".temp#.[jpg | 3gp]" where # is the unique
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/ |
BuildPreferencePage.java | 124 String fileName = getTextControl().getText(); 125 fileName = fileName.trim(); 128 if (fileName.length() > 0) { 129 File file = new File(fileName); 133 DebugKeyProvider provider = new DebugKeyProvider(fileName,
|
/frameworks/base/core/tests/coretests/src/android/app/ |
DownloadManagerFunctionalTest.java | 140 String fileName = cursor.getString(colIndex); 141 assertTrue(fileName.startsWith(CACHE_DIR));
|
/cts/tests/tests/media/src/android/media/cts/ |
MediaScannerConnectionTest.java | 55 String fileName = "test" + System.currentTimeMillis(); 57 fOut = getContext().openFileOutput(fileName, Context.MODE_WORLD_READABLE); 75 mMediaFile = new File(dir, fileName);
|
/dalvik/dx/src/junit/runner/ |
TestCaseClassLoader.java | 115 String fileName= className.replace('.', '/')+".class"; 117 data= loadJarData(path, fileName); 119 data= loadFileData(path, fileName); 133 private byte[] loadFileData(String path, String fileName) { 134 File file= new File(path, fileName); 158 private byte[] loadJarData(String path, String fileName) { 169 ZipEntry entry= zipFile.getEntry(fileName);
|
/dalvik/vm/ |
AllocTracker.cpp | 305 const char* fileName = dvmGetMethodSourceFile(method); 306 if (fileName == NULL) 307 fileName = ""; 308 return fileName;
|
/dalvik/vm/native/ |
dalvik_system_DexFile.cpp | 38 char* fileName; 53 LOGV("Freeing DexOrJar '%s'", pDexOrJar->fileName); 59 free(pDexOrJar->fileName); 189 * class path. The easiest way to do this is by filename, which works 229 pDexOrJar->fileName = sourceName; 285 pDexOrJar->fileName = strdup("<memory>"); // Needs to be free()able. 307 LOGV("Closing DEX file %p (%s)", pDexOrJar, pDexOrJar->fileName); 322 pDexOrJar->fileName); 325 LOGV("+++ freeing DexFile '%s' resources", pDexOrJar->fileName); 328 LOGV("+++ NOT freeing DexFile '%s' resources", pDexOrJar->fileName); [all...] |
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/ |
TestUtils.java | 153 String fileName = keyStoreFileName + testKeyStoreType; 154 ks.load(Support_Resources.getResourceStream(fileName),
|
/external/apache-harmony/support/src/test/java/tests/support/resource/ |
Support_Resources.java | 44 String fileName = name; 58 url = new URL("file:/" + resPath + "/" + fileName);
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
OutputPropertiesFactory.java | 254 String fileName = null; 264 fileName = PROP_FILE_XML; 265 m_xml_properties = loadPropertiesFile(fileName, null); 277 fileName = PROP_FILE_HTML; 279 loadPropertiesFile(fileName, m_xml_properties); 288 fileName = PROP_FILE_TEXT; 290 loadPropertiesFile(fileName, m_xml_properties); 307 fileName = PROP_FILE_UNKNOWN; 309 loadPropertiesFile(fileName, m_xml_properties); 325 new Object[] { fileName, method }) [all...] |
/external/emma/core/java12/com/vladium/emma/ |
EMMAProperties.java | 142 final String fileName = Property.getSystemProperty (appName + ".properties"); 143 final File file = fileName != null 144 ? new File (fileName)
|
/external/emma/core/java12/com/vladium/util/ |
Property.java | 108 final String fileName = Property.getSystemProperty (namespace + ".properties"); 109 final File file = fileName != null 110 ? new File (fileName)
|
/external/icu4c/samples/layout/ |
cgnomelayout.c | 37 GtkWidget *newSample(const gchar *fileName); 81 gchar *fileName = g_strdup(gtk_file_selection_get_filename(fileselection)); 86 newPara = pf_factory(fileName, font, guiSupport); 89 gchar *title = prettyTitle(fileName); 106 g_free(fileName); 224 GtkWidget *newSample(const gchar *fileName) 235 context->paragraph = pf_factory(fileName, font, guiSupport); 237 title = prettyTitle(fileName);
|
gnomelayout.cpp | 47 GtkWidget *newSample(const gchar *fileName); 89 gchar *fileName = g_strdup(gtk_file_selection_get_filename(fileselection)); 94 newPara = Paragraph::paragraphFactory(fileName, font, guiSupport); 97 gchar *title = prettyTitle(fileName); 114 g_free(fileName); 230 GtkWidget *newSample(const gchar *fileName) 236 context->paragraph = Paragraph::paragraphFactory(fileName, font, guiSupport); 238 gchar *title = prettyTitle(fileName);
|
/external/icu4c/test/cintltst/ |
spooftest.c | 131 char *fileName; 142 fileName = malloc(strlen(dataSrcDir) + 100); 143 strcpy(fileName, dataSrcDir); 144 strcat(fileName, U_FILE_SEP_STRING "unidata" U_FILE_SEP_STRING "confusables.txt"); 145 f = fopen(fileName, "r"); 152 strcpy(fileName, dataSrcDir); 153 strcat(fileName, U_FILE_SEP_STRING "unidata" U_FILE_SEP_STRING "confusablesWholeScript.txt"); 154 f = fopen(fileName, "r"); 167 free(fileName);
|
/external/icu4c/test/thaitest/ |
thaitest.cpp | 108 // fileName - the path name of the file 111 static const UChar *readFile(char *fileName, int32_t &charCount); 305 const UChar *ThaiWordbreakTest::readFile(char *fileName, int32_t &charCount) 313 f = fopen(fileName, "rb"); 316 fprintf(stderr,"Couldn't open %s reason: %s \n", fileName, strerror(errno)); 327 fprintf(stderr,"Couldn't get memory for reading %s reason: %s \n", fileName, strerror(errno)); 334 fprintf(stderr,"Couldn't read %s reason: %s \n", fileName, strerror(errno)); 348 fprintf(stderr,"Couldn't get memory for reading %s reason: %s \n", fileName, strerror(errno)); 440 char *fileName = "space.txt"; 456 fileName = argv[arg++] [all...] |
/external/icu4c/tools/gensprep/ |
store.c | 588 char* fileName = (char*) uprv_malloc(uprv_strlen(bundleName) +100); 618 fileName[0]=0; 619 uprv_strcat(fileName,bundleName); 621 pData=udata_create(dataDir, DATA_TYPE, fileName, &dataInfo,
|
/external/junit/src/junit/runner/ |
TestCaseClassLoader.java | 123 String fileName= className.replace('.', '/')+".class"; 125 data= loadJarData(path, fileName); 127 data= loadFileData(path, fileName); 139 private byte[] loadFileData(String path, String fileName) { 140 File file= new File(path, fileName); 172 private byte[] loadJarData(String path, String fileName) { 183 ZipEntry entry= zipFile.getEntry(fileName);
|
/external/proguard/src/proguard/ |
ConfigurationWriter.java | 593 String fileName = file.getAbsolutePath(); 599 if (fileName.startsWith(baseDirName)) 601 fileName = fileName.substring(baseDirName.length()); 605 return quotedString(fileName);
|