HomeSort by relevance Sort by last modified time
    Searched defs:readFromFile (Results 1 - 8 of 8) sorted by null

  /external/webkit/Source/WebCore/platform/chromium/
FileSystemChromium.cpp 105 int readFromFile(PlatformFileHandle handle, char* data, int length)
107 return PlatformBridge::readFromFile(handle, data, length);
  /external/chromium/webkit/glue/
webfileutilities_impl.cc 142 int WebFileUtilitiesImpl::readFromFile(base::PlatformFile handle,
  /external/webkit/Source/WebCore/platform/qt/
FileSystemQt.cpp 150 int readFromFile(PlatformFileHandle handle, char* data, int length)
  /external/webkit/Source/WebKit/chromium/public/
WebFileUtilities.h 68 virtual int readFromFile(FileHandle, char* data, int length) { return 0; }
  /external/webkit/Source/WebCore/platform/gtk/
FileSystemGtk.cpp 303 int readFromFile(PlatformFileHandle handle, char* data, int length)
  /external/webkit/Source/WebCore/platform/posix/
FileSystemPOSIX.cpp 130 int readFromFile(PlatformFileHandle handle, char* data, int length)
  /frameworks/base/services/jni/
com_android_server_BatteryService.cpp 134 static int readFromFile(const char* path, char* buf, size_t size)
163 if (readFromFile(path, buf, SIZE) > 0) {
177 if (readFromFile(path, buf, SIZE) > 0) {
189 if (readFromFile(path, buf, SIZE) > 0) {
210 if (readFromFile(gPaths.batteryStatusPath, buf, SIZE) > 0)
216 if (readFromFile(gPaths.batteryHealthPath, buf, SIZE) > 0)
219 if (readFromFile(gPaths.batteryTechnologyPath, buf, SIZE) > 0)
248 int length = readFromFile(path, buf, sizeof(buf));
  /external/webkit/Source/WebKit/chromium/src/
PlatformBridge.cpp 418 int PlatformBridge::readFromFile(PlatformFileHandle handle, char* data, int length)
420 return webKitClient()->fileUtilities()->readFromFile(handle, data, length);
    [all...]

Completed in 184 milliseconds