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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/com/android/internal/http/multipart/
ByteArrayPartSource.java 47 private String fileName;
55 * @param fileName the name of the file these bytes represent
58 public ByteArrayPartSource(String fileName, byte[] bytes) {
60 this.fileName = fileName;
76 return fileName;
FilePartSource.java 55 private String fileName = null;
74 this.fileName = file.getName();
81 * @param fileName the file name of the FilePart
87 public FilePartSource(String fileName, File file)
90 if (fileName != null) {
91 this.fileName = fileName;
109 * Return the current filename
110 * @return the filename.
114 return (fileName == null) ? "noname" : fileName
    [all...]
  /external/webkit/WebCore/platform/sql/
SQLiteFileSystem.cpp 49 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database)
52 String path = fileName;
73 String fileName;
76 fileName = pathByAppendingComponent(dbDir, String::format("%016llx.db", seq));
77 } while (fileExists(fileName));
82 String SQLiteFileSystem::appendDatabaseFileNameToPath(const String& path, const String& fileName)
84 return pathByAppendingComponent(path, fileName);
94 bool SQLiteFileSystem::ensureDatabaseFileExists(const String& fileName, bool checkPathOnly)
96 if (fileName.isEmpty())
100 String dir = directoryName(fileName);
    [all...]
SQLiteFileSystem.h 52 // fileName - The name of the database file.
55 static int openDatabase(const String& fileName, sqlite3** database);
69 // fileName - The file name.
70 static String appendDatabaseFileNameToPath(const String& path, const String& fileName);
87 // fileName - The file name.
90 static bool ensureDatabaseFileExists(const String& fileName, bool checkPathOnly);
99 // fileName - The file name.
100 static bool deleteDatabaseFile(const String& fileName);
104 // fileName - The file name.
105 static long long getDatabaseFileSize(const String& fileName);
    [all...]
  /external/webkit/WebCore/platform/sql/chromium/
SQLiteFileSystemChromium.cpp 51 int SQLiteFileSystem::openDatabase(const String& fileName, sqlite3** database)
54 String path = fileName;
60 return sqlite3_open_v2(fileName.utf8().data(), database,
72 String SQLiteFileSystem::appendDatabaseFileNameToPath(const String&, const String& fileName)
77 return fileName;
101 bool SQLiteFileSystem::deleteDatabaseFile(const String& fileName)
103 return (ChromiumBridge::databaseDeleteFile(fileName) == SQLITE_OK);
106 long long SQLiteFileSystem::getDatabaseFileSize(const String& fileName)
108 return ChromiumBridge::databaseGetFileSize(fileName);
SQLiteFileSystemChromiumPosix.cpp 46 int chromium_sqlite3_fill_in_unix_sqlite3_file(sqlite3_vfs* vfs, int fd, int dirfd, sqlite3_file* file, const char* fileName, int noLock);
47 int chromium_sqlite3_get_reusable_file_handle(sqlite3_file* file, const char* fileName, int flags, int* fd);
58 // fileName - the name of the file.
62 int chromiumOpen(sqlite3_vfs* vfs, const char* fileName,
68 int result = chromium_sqlite3_get_reusable_file_handle(id, fileName, desiredFlags, &fd);
73 fd = ChromiumBridge::databaseOpenFile(fileName, desiredFlags, &dirfd);
76 fd = ChromiumBridge::databaseOpenFile(fileName, newFlags, &dirfd);
95 result = chromium_sqlite3_fill_in_unix_sqlite3_file(vfs, fd, dirfd, id, fileName, noLock);
104 // fileName - the name of the file.
107 int chromiumDelete(sqlite3_vfs*, const char* fileName, int syncDir
    [all...]
  /external/icu4c/samples/layout/
ucreader.cpp 15 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount)
17 return UnicodeReader::readFile(fileName, (GUISupport *) guiSupport, *charCount);
UnicodeReader.h 28 static const UChar *readFile(const char *fileName, GUISupport *guiSupport, int32_t &charCount);
ucreader.h 15 const UChar *uc_readFile(const char *fileName, gs_guiSupport *guiSupport, int32_t *charCount);
  /dalvik/libdex/
OptInvocation.h 30 char* dexOptGenerateCacheFileName(const char* fileName,
  /external/chromium/third_party/icu/source/tools/toolutil/
flagparser.h 28 parseFlagsFile(const char *fileName, char **flagBuffer, int32_t flagBufferSize, int32_t numOfFlags, UErrorCode *status);
  /external/icu4c/tools/toolutil/
flagparser.h 28 parseFlagsFile(const char *fileName, char **flagBuffer, int32_t flagBufferSize, int32_t numOfFlags, UErrorCode *status);
  /external/webkit/WebCore/dom/
ErrorEvent.cpp 45 ErrorEvent::ErrorEvent(const String& message, const String& fileName, unsigned lineNumber)
48 , m_fileName(fileName)
57 void ErrorEvent::initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber)
65 m_fileName = fileName;
ErrorEvent.h 47 static PassRefPtr<ErrorEvent> create(const String& message, const String& fileName, unsigned lineNumber)
49 return adoptRef(new ErrorEvent(message, fileName, lineNumber));
53 void initErrorEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& message, const String& fileName, unsigned lineNumber);
56 const String& filename() const { return m_fileName; } function in class:WebCore::ErrorEvent
63 ErrorEvent(const String& message, const String& fileName, unsigned lineNumber);
  /external/webkit/WebKit/win/WebKit.vcproj/
FixMIDLHeaders.pl 46 my $fileName = $_;
48 return unless ($fileName =~ /IGEN_DOM(.*)\.h/);
50 open(IN, "<", $fileName);
54 open(OUT, ">", $fileName);
  /external/webkit/WebKit/android/
RenderSkinAndroid.cpp 54 bool RenderSkinAndroid::DecodeBitmap(android::AssetManager* am, const char* fileName, SkBitmap* bitmap)
56 android::Asset* asset = am->open(fileName, android::Asset::ACCESS_BUFFER);
58 asset = am->openNonAsset(fileName, android::Asset::ACCESS_BUFFER);
60 LOGD("RenderSkinAndroid: File \"%s\" not found.\n", fileName);
67 LOGD("RenderSkinAndroid: Failed to decode %s\n", fileName);
  /dalvik/vm/
JarFile.c 35 * Attempt to open a file whose name is similar to <fileName>,
43 static int openAlternateSuffix(const char *fileName, const char *suffix,
47 size_t fileNameLen = strlen(fileName);
58 /* Copy the original filename into the buffer, find
61 memcpy(buf, fileName, fileNameLen + 1);
82 * to the jar file at the absolute path "fileName".
84 DexCacheStatus dvmDexCacheStatus(const char *fileName)
96 if (dvmClassPathContains(gDvm.bootClassPath, fileName)) {
106 if (dexZipOpenArchive(fileName, &archive) != 0) {
117 LOGV("dvmDexCacheStatus: Checking cache for %s\n", fileName);
    [all...]
RawDexFile.c 25 int dvmRawDexFileOpen(const char* fileName, const char* odexOutputName,
JarFile.h 39 int dvmJarFileOpen(const char* fileName, const char* odexOutputName,
67 * to the jar file at the absolute path "fileName".
69 DexCacheStatus dvmDexCacheStatus(const char *fileName);
  /external/webkit/WebCore/platform/haiku/
SharedBufferHaiku.cpp 34 PassRefPtr<SharedBuffer> SharedBuffer::createWithContentsOfFile(const String& fileName)
36 if (fileName.isEmpty())
39 BFile file(BString(fileName).String(), B_READ_ONLY);
  /external/webkit/WebCore/platform/qt/
SharedBufferQt.cpp 33 PassRefPtr<SharedBuffer> SharedBuffer::createWithContentsOfFile(const String& fileName)
35 if (fileName.isEmpty())
38 QFile file(fileName);
  /frameworks/base/libs/utils/
AssetDir.cpp 34 const String8& fileName)
38 tmpInfo.setFileName(fileName);
50 cmp = strcmp(pVector->itemAt(cur).getFileName(), fileName);
  /external/webkit/WebKit/chromium/public/
WebPluginListBuilder.h 43 const WebString& fileName) = 0;
  /system/core/include/cutils/
event_tag_map.h 34 EventTagMap* android_openEventTagMap(const char* fileName);
  /external/webkit/JavaScriptCore/qt/api/
qscriptengine.cpp 65 \a fileName is used for error reporting. For example in error objects
66 the file name is accessible through the "fileName" property if it's
69 QScriptValue QScriptEngine::evaluate(const QString& program, const QString& fileName, int lineNumber)
71 return QScriptValuePrivate::get(d_ptr->evaluate(program, fileName, lineNumber));

Completed in 1253 milliseconds

1 2 3 4 5 6 7 8 91011>>