Searched refs:bridge (Results 1 - 25 of 80) sorted by relevance

1234

/external/webkit/Tools/DumpRenderTree/unix/TestNetscapePlugin/ForwardingHeaders/WebKit/
H A Dnpapi.h1 #include <bridge/npapi.h>
H A Dnpruntime.h1 #include <bridge/npruntime.h>
/external/webkit/Source/WebCore/history/android/
H A DHistoryItemAndroid.cpp33 AndroidWebHistoryBridge* HistoryItem::bridge() const function in class:WebCore::HistoryItem
40 void HistoryItem::setBridge(AndroidWebHistoryBridge* bridge) argument
42 m_bridge = adoptRef(bridge);
/external/webkit/Source/WebKit/chromium/src/
H A DWorkerFileWriterCallbacksBridge.cpp80 void WorkerFileWriterCallbacksBridge::postShutdownToMainThread(PassRefPtr<WorkerFileWriterCallbacksBridge> bridge) argument
84 dispatchTaskToMainThread(createCallbackTask(&shutdownOnMainThread, bridge));
87 void WorkerFileWriterCallbacksBridge::writeOnMainThread(ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge> bridge, long long position, const KURL& data) argument
89 bridge->m_writer->write(position, WebURL(data));
92 void WorkerFileWriterCallbacksBridge::truncateOnMainThread(ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge> bridge, long long length) argument
94 bridge->m_writer->truncate(length);
97 void WorkerFileWriterCallbacksBridge::abortOnMainThread(ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge> bridge) argument
99 bridge->m_writer->cancel();
102 void WorkerFileWriterCallbacksBridge::initOnMainThread(ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge> bridge, const String& path) argument
104 ASSERT(!bridge
108 shutdownOnMainThread(ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge> bridge) argument
157 didWriteOnWorkerThread(ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge> bridge, long long length, bool complete) argument
166 didFailOnWorkerThread(ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge> bridge, WebFileError error) argument
174 didTruncateOnWorkerThread(ScriptExecutionContext*, PassRefPtr<WorkerFileWriterCallbacksBridge> bridge) argument
182 runTaskOnMainThread(ScriptExecutionContext* scriptExecutionContext, PassRefPtr<WorkerFileWriterCallbacksBridge> bridge, PassOwnPtr<ScriptExecutionContext::Task> taskToRun) argument
189 runTaskOnWorkerThread(ScriptExecutionContext* scriptExecutionContext, PassRefPtr<WorkerFileWriterCallbacksBridge> bridge, PassOwnPtr<ScriptExecutionContext::Task> taskToRun) argument
[all...]
H A DWorkerFileSystemCallbacksBridge.cpp90 static MainThreadFileSystemCallbacks* createLeakedPtr(WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
92 OwnPtr<MainThreadFileSystemCallbacks> callbacks = adoptPtr(new MainThreadFileSystemCallbacks(bridge, mode));
131 MainThreadFileSystemCallbacks(WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
132 : m_bridge(bridge)
139 // The bridge pointer is kept by the bridge itself on the WorkerThread.
218 void WorkerFileSystemCallbacksBridge::openFileSystemOnMainThread(ScriptExecutionContext*, WebCommonWorkerClient* commonClient, WebFileSystem::Type type, long long size, bool create, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
221 bridge->didFailOnMainThread(WebFileErrorAbort, mode);
223 commonClient->openFileSystem(type, size, create, MainThreadFileSystemCallbacks::createLeakedPtr(bridge, mode));
227 void WorkerFileSystemCallbacksBridge::moveOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, WorkerFileSystemCallbacksBridge* bridge, cons argument
232 copyOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& sourcePath, const String& destinationPath, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
237 removeOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
242 removeRecursivelyOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
247 readMetadataOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
252 createFileOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
257 createDirectoryOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, bool exclusive, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
262 fileExistsOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
267 directoryExistsOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
272 readDirectoryOnMainThread(WebCore::ScriptExecutionContext*, WebFileSystem* fileSystem, const String& path, WorkerFileSystemCallbacksBridge* bridge, const String& mode) argument
316 didFailOnWorkerThread(ScriptExecutionContext*, WorkerFileSystemCallbacksBridge* bridge, WebFileError error) argument
321 didOpenFileSystemOnWorkerThread(ScriptExecutionContext*, WorkerFileSystemCallbacksBridge* bridge, const String& name, const String& rootPath) argument
326 didSucceedOnWorkerThread(ScriptExecutionContext*, WorkerFileSystemCallbacksBridge* bridge) argument
331 didReadMetadataOnWorkerThread(ScriptExecutionContext*, WorkerFileSystemCallbacksBridge* bridge, const WebFileInfo& info) argument
336 didReadDirectoryOnWorkerThread(ScriptExecutionContext*, WorkerFileSystemCallbacksBridge* bridge, const WebVector<WebFileSystemEntry>& entries, bool hasMore) argument
342 runTaskOnMainThread(WebCore::ScriptExecutionContext* scriptExecutionContext, PassRefPtr<WorkerFileSystemCallbacksBridge> bridge, PassOwnPtr<WebCore::ScriptExecutionContext::Task> taskToRun) argument
352 runTaskOnWorkerThread(WebCore::ScriptExecutionContext* scriptExecutionContext, PassRefPtr<WorkerFileSystemCallbacksBridge> bridge, PassOwnPtr<WebCore::ScriptExecutionContext::Task> taskToRun) argument
376 RefPtr<WorkerFileSystemCallbacksBridge> bridge = adoptRef(this); local
[all...]
H A DWebWorkerBase.cpp103 static void allowDatabaseTask(WebCore::ScriptExecutionContext* context, WebCommonWorkerClient* commonClient, WebFrame* frame, const WTF::String name, const WTF::String displayName, unsigned long estimatedSize, PassRefPtr<AllowDatabaseMainThreadBridge> bridge) argument
106 bridge->signalCompleted(false);
108 bridge->signalCompleted(commonClient->allowDatabase(frame, name, displayName, estimatedSize));
111 static void didComplete(WebCore::ScriptExecutionContext* context, PassRefPtr<AllowDatabaseMainThreadBridge> bridge, bool result) argument
113 bridge->m_result = result;
228 RefPtr<AllowDatabaseMainThreadBridge> bridge = AllowDatabaseMainThreadBridge::create(this, mode, commonClient(), m_webView->mainFrame(), String(name), String(displayName), estimatedSize); local
230 // Either the bridge returns, or the queue gets terminated.
232 bridge->cancel();
236 return bridge->result();
250 RefPtr<WorkerFileSystemCallbacksBridge> bridge local
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_devtools_manager.cc31 // Create a new bridge for this tab if there isn't one already.
32 linked_ptr<ExtensionDevToolsBridge> bridge(
34 if (bridge->RegisterAsDevToolsClientHost()) {
35 tab_id_to_bridge_[tab_id] = bridge;
53 // bridge if there is one.
55 linked_ptr<ExtensionDevToolsBridge> bridge(tab_id_to_bridge_[tab_id]);
56 bridge->UnregisterAsDevToolsClientHost();
66 linked_ptr<ExtensionDevToolsBridge> bridge(tab_id_to_bridge_[tab_id]);
67 bridge->UnregisterAsDevToolsClientHost();
/external/chromium/chrome/browser/ui/cocoa/
H A Dhistory_menu_cocoa_controller.h21 - (id)initWithBridge:(HistoryMenuBridge*)bridge;
H A Dpage_info_bubble_controller.h19 // Thin bridge that pushes model-changed notifications from C++ to Cocoa.
29 // |bridge|. There should be a 1:1 mapping of models to bridges. The
33 modelObserver:(PageInfoModel::PageInfoModelObserver*)bridge
/external/webkit/Source/WebKit/android/jni/
H A DWebHistory.cpp94 // addItem will update the children to match the newly created bridge
170 WebHistoryItem* bridge = new WebHistoryItem(newItem.get()); local
171 newItem->setBridge(bridge);
182 bridge->setActive();
189 bridge->updateHistoryItem(newItem.get());
194 bridge->ref();
195 return reinterpret_cast<jint>(bridge);
291 ALOG_ASSERT(item->bridge(), "Why don't we have a bridge object here?");
385 if (item->bridge())
398 WebHistoryItem* bridge = new WebHistoryItem(item); local
488 AndroidWebHistoryBridge* bridge = item->bridge(); local
533 WebHistoryItem* bridge = new WebHistoryItem(static_cast<WebHistoryItem*>(parent->bridge())); local
540 WebHistoryItem* bridge = static_cast<WebHistoryItem*>(item->bridge()); local
[all...]
/external/chromium/chrome/browser/importer/
H A Dexternal_process_importer_host.cc51 // This is the in-process half of the bridge, which catches data from the IPC
53 // bridge lives in the external process (see ProfileImportThread).
54 // The ExternalProcessImporterClient created in the next line owns the bridge,
56 InProcessImporterBridge* bridge =
59 this, *source_profile_, items_, bridge, import_to_bookmark_bar_);
H A Die_importer.h26 ImporterBridge* bridge) OVERRIDE;
H A Dimporter.h29 ImporterBridge* bridge) = 0;
H A Dfirefox3_importer.h39 ImporterBridge* bridge) OVERRIDE;
H A Dmork_reader.h162 void ImportHistoryFromFirefox2(const FilePath& file, ImporterBridge* bridge);
H A Dsafari_importer.h49 ImporterBridge* bridge) OVERRIDE;
H A Dexternal_process_importer_client.cc21 InProcessImporterBridge* bridge,
32 bridge_(bridge),
17 ExternalProcessImporterClient( ExternalProcessImporterHost* importer_host, const importer::SourceProfile& source_profile, uint16 items, InProcessImporterBridge* bridge, bool import_to_bookmark_bar) argument
H A Dimporter_host.cc123 scoped_refptr<InProcessImporterBridge> bridge(
126 importer_, &Importer::StartImport, source_profile, items, bridge);
/external/webkit/Source/WebCore/
H A DAndroid.v8bindings.mk34 $(LOCAL_PATH)/bridge \
35 $(LOCAL_PATH)/bridge/jni \
36 $(LOCAL_PATH)/bridge/jni/v8 \
37 $(LOCAL_PATH)/bridge/jsc \
200 bridge/jni/JNIUtility.cpp \
201 bridge/jni/JavaMethodJobject.cpp \
202 bridge/jni/JobjectWrapper.cpp \
203 bridge/jni/v8/JNIUtilityPrivate.cpp \
204 bridge/jni/v8/JavaClassJobjectV8.cpp \
205 bridge/jn
[all...]
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_menu_cocoa_controller.h33 - (id)initWithBridge:(BookmarkMenuBridge *)bridge;
/external/jmonkeyengine/engine/src/test/jme3test/bullet/
H A DTestAttachDriver.java64 private RigidBodyControl bridge; field in class:TestAttachDriver
229 bridge=new RigidBodyControl(new BoxCollisionShape(new Vector3f(2.5f,0.2f,0.2f)));
230 bridgeNode.addControl(bridge);
237 getPhysicsSpace().add(bridge);
289 bridge.setPhysicsLocation(new Vector3f(0,1.4f,4));
290 bridge.setPhysicsRotation(Quaternion.DIRECTION_Z.toRotationMatrix());
/external/chromium/chrome/browser/ui/cocoa/download/
H A Ddownload_shelf_controller.h83 - (DownloadShelf*)bridge;
/external/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp145 // Do not migrate to couple of bridge transfer casts which
209 StringRef bridge; local
212 bridge = "__bridge "; break;
214 bridge = "__bridge_transfer "; break;
216 bridge = "__bridge_retained "; break;
224 TA.insertAfterToken(CCE->getLParenLoc(), bridge);
229 newCast += bridge;
/external/wpa_supplicant_8/hostapd/
H A Dmain.c253 params.bridge = os_calloc(hapd->iface->num_bss, sizeof(char *));
254 if (params.bridge == NULL)
258 if (bss->conf->bridge[0])
259 params.bridge[i] = bss->conf->bridge;
265 os_free(params.bridge);
/external/chromium/chrome/browser/sync/glue/
H A Dhttp_bridge_unittest.cc48 HttpBridge* bridge = new HttpBridge( local
51 return bridge;
54 static void Abort(HttpBridge* bridge) { argument
55 bridge->Abort();
74 // Note this is lazy created, so don't call this before your bridge.

Completed in 603 milliseconds

1234