HomeSort by relevance Sort by last modified time
    Searched refs:fileName (Results 76 - 100 of 458) sorted by null

1 2 34 5 6 7 8 91011>>

  /system/core/libacc/tests/
accarm 48 fileName = ""
53 fileName = arg
55 remoteFileName = setupArm(fileName)
  /system/core/toolbox/
mv.c 43 const char *fileName = strrchr(source, '/');
47 strcat(fullDest, fileName ? fileName + 1 : source);
  /dalvik/vm/hprof/
Hprof.c 79 hprofContextInit(headCtx, strdup(tailCtx->fileName), tailCtx->fd, true,
82 LOGI("hprof: dumping heap strings to \"%s\".\n", tailCtx->fileName);
134 outFd = open(tailCtx->fileName, O_WRONLY|O_CREAT, 0644);
136 LOGE("can't open %s: %s\n", headCtx->fileName, strerror(errno));
182 free(ctx->fileName);
  /development/simulator/app/
PhoneCollection.cpp 65 wxString fileName;
73 fileName = dirName;
74 fileName += '/';
75 fileName += kLayoutFile;
77 if (access(fileName, R_OK) == 0) {
79 //printf("--- examining '%s'\n", (const char*) fileName);
LocalBiChannel.cpp 73 char* fileName;
77 fileName = new char[strlen(kBasePath) + strlen(name) + 1];
78 strcpy(fileName, kBasePath);
79 strcat(fileName, name);
81 return fileName;
130 mFileName, // filename
266 char* fileName;
270 fileName = new char[strlen(kBasePath) + strlen(name) + 1];
271 strcpy(fileName, kBasePath);
272 strcat(fileName, name)
    [all...]
  /frameworks/base/libs/utils/
misc.cpp 119 FileType getFileType(const char* fileName)
123 if (stat(fileName, &sb) < 0) {
128 errno, fileName);
156 time_t getFileModDate(const char* fileName)
160 if (stat(fileName, &sb) < 0)
  /external/proguard/src/proguard/ant/
ProGuardTask.java 297 String fileName = file.getName();
300 fileName.equalsIgnoreCase("false") ||
301 fileName.equalsIgnoreCase("no") ||
302 fileName.equalsIgnoreCase("off") ? null :
303 fileName.equalsIgnoreCase("true") ||
304 fileName.equalsIgnoreCase("yes") ||
305 fileName.equalsIgnoreCase("on") ? new File("") :
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppSendFileInfo.java 77 public BluetoothOppSendFileInfo(String fileName, String type, long length,
79 mFileName = fileName;
105 String fileName = null;
119 fileName = metadataCursor.getString(0);
121 if (D) Log.d(TAG, "fileName = " + fileName + " length = " + length);
128 fileName = u.getLastPathSegment();
158 return new BluetoothOppSendFileInfo(fileName, contentType, length, is, 0, dest);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
AndroidPreferencePage.java 121 String fileName = getTextControl().getText();
122 fileName = fileName.trim();
124 if (fileName.indexOf(',') >= 0 || fileName.indexOf(';') >= 0) {
129 File file = new File(fileName);
136 boolean ok = AdtPlugin.getDefault().checkSdkLocationAndId(fileName,
BuildPreferencePage.java 120 String fileName = getTextControl().getText();
121 fileName = fileName.trim();
124 if (fileName.length() > 0) {
125 File file = new File(fileName);
129 DebugKeyProvider provider = new DebugKeyProvider(fileName,
  /libcore/luni/src/test/java/tests/api/java/io/
RandomAccessFileTest.java 39 public String fileName;
66 File tmpFile = new File(fileName);
126 File tmpFile = new File(fileName);
129 raf = new java.io.RandomAccessFile(fileName, "r");
140 raf = new java.io.RandomAccessFile(fileName, "rwd");
146 raf = new java.io.RandomAccessFile(fileName, "rws");
152 raf = new java.io.RandomAccessFile(fileName, "rw");
160 raf = new java.io.RandomAccessFile(fileName, "i");
167 raf = new java.io.RandomAccessFile(fileName, "r");
195 RandomAccessFile raf = new java.io.RandomAccessFile(fileName, "rw")
    [all...]
FilterInputStreamTest.java 41 private String fileName;
166 new java.io.FileInputStream(fileName), 100));
196 new java.io.FileInputStream(fileName), 100));
367 new java.io.FileInputStream(fileName), 100));
424 fileName = System.getProperty("java.io.tmpdir");
426 if (fileName.charAt(fileName.length() - 1) == separator.charAt(0))
427 fileName = Support_PlatformFile.getNewPlatformFile(fileName,
430 fileName = Support_PlatformFile.getNewPlatformFile(fileNam
    [all...]
  /dalvik/vm/native/
dalvik_system_DexFile.c 28 char* fileName;
42 LOGV("Freeing DexOrJar '%s'\n", pDexOrJar->fileName);
48 free(pDexOrJar->fileName);
78 u4 hash = dvmComputeUtf8Hash(pDexOrJar->fileName);
147 * class path. The easiest way to do this is by filename, which works
182 pDexOrJar->fileName = sourceName;
217 LOGV("Closing DEX file %p (%s)\n", pDexOrJar, pDexOrJar->fileName);
231 u4 hash = dvmComputeUtf8Hash(pDexOrJar->fileName);
235 pDexOrJar->fileName);
238 LOGV("+++ freeing DexFile '%s' resources\n", pDexOrJar->fileName);
    [all...]
java_lang_Runtime.c 64 * static String nativeLoad(String filename, ClassLoader loader)
75 char* fileName = NULL;
81 fileName = dvmCreateCstrFromString(fileNameObj);
83 success = dvmLoadNativeCode(fileName, classLoader, &reason);
91 free(fileName);
  /libcore/luni/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...]
  /packages/apps/Email/src/org/apache/commons/io/output/
LockableFileWriter.java 66 * @param fileName the file to write to, not null
70 public LockableFileWriter(String fileName) throws IOException {
71 this(fileName, false, null);
77 * @param fileName file to write to, not null
82 public LockableFileWriter(String fileName, boolean append) throws IOException {
83 this(fileName, append, null);
89 * @param fileName the file to write to, not null
95 public LockableFileWriter(String fileName, boolean append, String lockDir) throws IOException {
96 this(new File(fileName), append, lockDir);
  /bootable/recovery/minzip/
Zip.h 21 * filename. We can change the accessors to retrieve the various pieces
27 const char* fileName; // not null-terminated
64 int mzOpenZipArchive(const char* fileName, ZipArchive* pArchive);
113 ret.str = pEntry->fileName;
  /external/chromium/third_party/icu/source/tools/toolutil/
ucbuf.h 47 * @param fileName Name of the file to open.
60 ucbuf_open(const char* fileName,const char** codepage,UBool showWarning, UBool buffered, UErrorCode* err);
155 * @param fileName The file name to be opened and encoding autodected
164 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv,
193 ucbuf_resolveFileName(const char* inputDir, const char* fileName, char* target, int32_t* len, UErrorCode* status);
  /external/icu4c/tools/toolutil/
ucbuf.h 47 * @param fileName Name of the file to open.
60 ucbuf_open(const char* fileName,const char** codepage,UBool showWarning, UBool buffered, UErrorCode* err);
155 * @param fileName The file name to be opened and encoding autodected
164 ucbuf_autodetect(const char* fileName, const char** cp,UConverter** conv,
193 ucbuf_resolveFileName(const char* inputDir, const char* fileName, char* target, int32_t* len, UErrorCode* status);
  /libcore/luni/src/main/java/java/lang/
StackTraceElement.java 41 String fileName;
69 fileName = file;
156 return fileName;
  /external/chromium/third_party/icu/source/test/letest/
cfonts.h 13 le_font *le_portableFontOpen(const char *fileName,
  /external/icu4c/samples/layout/
gdiglue.h 30 fm_fontMap *fm_gdiFontMapOpen(rs_surface *surface, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status);
gnomeglue.h 31 fm_fontMap *fm_gnomeFontMapOpen(FT_Library engine, const char *fileName, le_int16 pointSize, gs_guiSupport *guiSupport, LEErrorCode *status);
pflow.h 31 pf_flow *pf_factory(const char *fileName, const le_font *font, gs_guiSupport *guiSupport);
  /external/icu4c/test/intltest/
dcfmtest.h 36 virtual UChar *ReadAndConvertFile(const char *fileName, int32_t &len, UErrorCode &status);
37 virtual const char *getPath(char buffer[2048], const char *filename);

Completed in 499 milliseconds

1 2 34 5 6 7 8 91011>>