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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/chromium/src/
LocalFileSystemChromium.cpp 69 static void openFileSystemHelper(ScriptExecutionContext* context, AsyncFileSystem::Type type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks, bool synchronous, long long size, CreationFlag create)
80 webWorker->openFileSystemForWorker(static_cast<WebFileSystem::Type>(type), size, create == CreateIfNotPresent, new WebFileSystemCallbacksImpl(callbacks, type, context, synchronous), synchronous); local
84 void LocalFileSystem::readFileSystem(ScriptExecutionContext* context, AsyncFileSystem::Type type, PassOwnPtr<AsyncFileSystemCallbacks> callbacks, bool synchronous)
86 openFileSystemHelper(context, type, callbacks, synchronous, 0, OpenExisting);
89 void LocalFileSystem::requestFileSystem(ScriptExecutionContext* context, AsyncFileSystem::Type type, long long size, PassOwnPtr<AsyncFileSystemCallbacks> callbacks, bool synchronous)
91 openFileSystemHelper(context, type, callbacks, synchronous, size, CreateIfNotPresent);
WorkerAsyncFileSystemChromium.h 55 static PassOwnPtr<AsyncFileSystem> create(ScriptExecutionContext* context, AsyncFileSystem::Type type, const String& rootPath, bool synchronous)
57 return adoptPtr(new WorkerAsyncFileSystemChromium(context, type, rootPath, synchronous));
78 WorkerAsyncFileSystemChromium(ScriptExecutionContext*, AsyncFileSystem::Type, const String& rootPath, bool synchronous);
WebFileSystemCallbacksImpl.cpp 50 WebFileSystemCallbacksImpl::WebFileSystemCallbacksImpl(PassOwnPtr<AsyncFileSystemCallbacks> callbacks, AsyncFileSystem::Type type, WebCore::ScriptExecutionContext* context, bool synchronous)
54 , m_synchronous(synchronous)
WebFileSystemCallbacksImpl.h 54 WebFileSystemCallbacksImpl(PassOwnPtr<WebCore::AsyncFileSystemCallbacks>, WebCore::AsyncFileSystem::Type = WebCore::AsyncFileSystem::Temporary, WebCore::ScriptExecutionContext* = 0, bool synchronous = false);
WebWorkerBase.h 95 void openFileSystemForWorker(WebFileSystem::Type, long long size, bool create, WebFileSystemCallbacks*, bool synchronous);
WorkerAsyncFileSystemChromium.cpp 59 WorkerAsyncFileSystemChromium::WorkerAsyncFileSystemChromium(ScriptExecutionContext* context, AsyncFileSystem::Type type, const String& rootPath, bool synchronous)
64 , m_synchronous(synchronous)
  /external/webkit/Source/WebCore/fileapi/
LocalFileSystem.h 57 void readFileSystem(ScriptExecutionContext*, AsyncFileSystem::Type, PassOwnPtr<AsyncFileSystemCallbacks>, bool synchronous = false);
59 void requestFileSystem(ScriptExecutionContext*, AsyncFileSystem::Type, long long size, PassOwnPtr<AsyncFileSystemCallbacks>, bool synchronous = false);
  /external/chromium/chrome/browser/cocoa/
keystone_glue.h 98 // YES if a synchronous promotion operation is in progress (promotion during
160 // be installed if necessary. If synchronous is NO, the promotion may occur
161 // in the background. synchronous should be YES for promotion during
165 synchronous:(BOOL)synchronous;
  /frameworks/av/include/media/
IStreamSource.h 71 Command cmd, bool synchronous, const sp<AMessage> &msg = NULL) = 0;
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerStreamListener.h 37 Command cmd, bool synchronous, const sp<AMessage> &extra);
NuPlayerStreamListener.cpp 75 Command cmd, bool synchronous, const sp<AMessage> &extra) {
76 CHECK(!synchronous);
  /external/webkit/Source/WebCore/inspector/
InspectorBrowserDebuggerAgent.h 80 void pauseOnNativeEventIfNeeded(const String& categoryType, const String& eventName, bool synchronous);
  /frameworks/av/media/libmedia/
IStreamSource.cpp 136 Command cmd, bool synchronous, const sp<AMessage> &msg) {
140 data.writeInt32(static_cast<int32_t>(synchronous));
173 bool synchronous = static_cast<bool>(data.readInt32()); local
181 issueCommand(cmd, synchronous, msg);
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 102 void closeGlobalTransactionImpl(bool synchronous);
131 static void closeGlobalTransaction(bool synchronous) {
132 Composer::getInstance().closeGlobalTransactionImpl(synchronous);
140 void Composer::closeGlobalTransactionImpl(bool synchronous) {
155 if (synchronous || mForceSynchronous) {
203 // Resizing a surface makes the transaction synchronous.
289 // Changing the orientation makes the transaction synchronous.
408 void SurfaceComposerClient::closeGlobalTransaction(bool synchronous) {
409 Composer::closeGlobalTransaction(synchronous);
  /external/webkit/LayoutTests/dom/html/level2/html/
hasFeature02.js 60 // When every synchronous loaded document has completed,
hasFeature05.js 60 // When every synchronous loaded document has completed,
hasFeature06.js 60 // When every synchronous loaded document has completed,
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
hasFeature02.js 60 // When every synchronous loaded document has completed,
hasFeature05.js 60 // When every synchronous loaded document has completed,
hasFeature06.js 60 // When every synchronous loaded document has completed,
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
hasFeature01.js 61 // When every synchronous loaded document has completed,
hasFeature02.js 60 // When every synchronous loaded document has completed,
hasFeature03.js 60 // When every synchronous loaded document has completed,
hasFeature04.js 61 // When every synchronous loaded document has completed,
  /external/chromium/chrome/browser/sessions/
session_restore.cc 56 // This is not part of SessionRestoreImpl so that synchronous destruction
411 bool synchronous,
417 synchronous_(synchronous),
543 // If we're not synchronous we need to delete ourself.
742 // Whether or not restore is synchronous.
762 // When synchronous we run a nested message loop. To avoid creating windows
780 bool synchronous,
800 new SessionRestoreImpl(profile, browser, synchronous,

Completed in 1450 milliseconds

1 2 3 4 5 6 7 8 91011>>