OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:EntriesCallbacks
(Results
1 - 2
of
2
) sorted by null
/external/webkit/Source/WebCore/fileapi/
FileSystemCallbacks.cpp
139
//
EntriesCallbacks
-----------------------------------------------------------
141
PassOwnPtr<
EntriesCallbacks
>
EntriesCallbacks
::create(PassRefPtr<EntriesCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryReaderBase> directoryReader, const String& basePath)
143
return adoptPtr(new
EntriesCallbacks
(successCallback, errorCallback, directoryReader, basePath));
146
EntriesCallbacks
::
EntriesCallbacks
(PassRefPtr<EntriesCallback> successCallback, PassRefPtr<ErrorCallback> errorCallback, PassRefPtr<DirectoryReaderBase> directoryReader, const String& basePath)
156
void
EntriesCallbacks
::didReadDirectoryEntry(const String& name, bool isDirectory)
164
void
EntriesCallbacks
::didReadDirectoryEntries(bool hasMore)
FileSystemCallbacks.h
71
// For
EntriesCallbacks
. didReadDirectoryEntry is called each time the API reads an entry, and didReadDirectoryDone is called when a chunk of entries have been read (i.e. good time to call back to the application). If hasMore is true there can be more chunks.
101
class
EntriesCallbacks
: public FileSystemCallbacksBase {
103
static PassOwnPtr<
EntriesCallbacks
> create(PassRefPtr<EntriesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath);
108
EntriesCallbacks
(PassRefPtr<EntriesCallback>, PassRefPtr<ErrorCallback>, PassRefPtr<DirectoryReaderBase>, const String& basePath);
Completed in 189 milliseconds