Searched refs:Connection (Results 1 - 25 of 229) sorted by relevance

12345678910

/external/clang/test/CodeGen/
H A D2002-03-12-StructInitialize.c8 } Connection; typedef in typeref:struct:Connection_Type
10 Connection link[3]
H A D2002-03-12-StructInitializer.c12 } Connection; typedef in typeref:struct:Connection_Type
14 Connection link[3]
/external/webkit/Source/WebCore/page/
H A DConnection.cpp28 #include "Connection.h"
34 Connection::ConnectionType Connection::type() const
H A DConnection.h34 class Connection : public RefCounted<Connection> { class in namespace:WebCore
44 static PassRefPtr<Connection> create() { return adoptRef(new Connection()); }
49 Connection() { } function in class:WebCore::Connection
H A DConnection.idl28 interface Connection {
/external/webkit/Source/WebKit2/UIProcess/Launcher/gtk/
H A DThreadLauncherGtk.cpp34 CoreIPC::Connection::Identifier ThreadLauncher::createWebThread()
/external/chromium/app/sql/
H A Dtransaction.h13 class Connection;
21 explicit Transaction(Connection* connection);
46 Connection* connection_;
H A Dconnection.cc62 Connection::StatementRef::StatementRef()
67 Connection::StatementRef::StatementRef(Connection* connection,
74 Connection::StatementRef::~StatementRef() {
80 void Connection::StatementRef::Close() {
88 Connection::Connection() function in class:sql::Connection
97 Connection::~Connection() {
101 bool Connection
[all...]
H A Dmeta_table.h15 class Connection;
24 static bool DoesTableExist(Connection* db);
29 bool Init(Connection* db, int version, int compatible_version);
76 Connection* db_;
H A Dconnection.h71 class Connection;
94 virtual int OnError(int error, Connection* connection, Statement* stmt) = 0;
102 class Connection { class in namespace:sql
109 Connection();
110 ~Connection();
294 // The Connection may revoke a StatementRef in some error cases, so callers
300 StatementRef(Connection* connection, sqlite3_stmt* stmt);
307 Connection* connection() const { return connection_; }
322 Connection* connection_;
382 DISALLOW_COPY_AND_ASSIGN(Connection);
[all...]
/external/webkit/Source/WebKit2/PluginProcess/
H A DWebProcessConnection.h31 #include "Connection.h"
42 class WebProcessConnection : public RefCounted<WebProcessConnection>, CoreIPC::Connection::Client {
44 static PassRefPtr<WebProcessConnection> create(CoreIPC::Connection::Identifier);
47 CoreIPC::Connection* connection() const { return m_connection.get(); }
53 WebProcessConnection(CoreIPC::Connection::Identifier);
59 // CoreIPC::Connection::Client
60 virtual void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
61 virtual CoreIPC::SyncReplyMode didReceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::ArgumentEncoder*);
62 virtual void didClose(CoreIPC::Connection*);
63 virtual void didReceiveInvalidMessage(CoreIPC::Connection*, CoreIP
[all...]
H A DPluginProcess.h47 void initialize(CoreIPC::Connection::Identifier, RunLoop*);
70 // CoreIPC::Connection::Client
71 virtual void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
72 virtual void didClose(CoreIPC::Connection*);
73 virtual void didReceiveInvalidMessage(CoreIPC::Connection*, CoreIPC::MessageID);
74 virtual void syncMessageSendTimedOut(CoreIPC::Connection*);
77 void didReceivePluginProcessMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
86 RefPtr<CoreIPC::Connection> m_connection;
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPluginProcessConnection.h31 #include "Connection.h"
44 class PluginProcessConnection : public RefCounted<PluginProcessConnection>, CoreIPC::Connection::Client {
46 static PassRefPtr<PluginProcessConnection> create(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier)
54 CoreIPC::Connection* connection() const { return m_connection.get(); }
62 PluginProcessConnection(PluginProcessConnectionManager* pluginProcessConnectionManager, const String& pluginPath, CoreIPC::Connection::Identifier connectionIdentifier);
64 // CoreIPC::Connection::Client
65 virtual void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
66 virtual CoreIPC::SyncReplyMode didReceiveSyncMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*, CoreIPC::ArgumentEncoder*);
67 virtual void didClose(CoreIPC::Connection*);
68 virtual void didReceiveInvalidMessage(CoreIPC::Connection*, CoreIP
[all...]
/external/chromium/chrome/browser/history/
H A Din_memory_database.h36 virtual sql::Connection& GetDB();
43 sql::Connection db_;
H A Darchived_database.h44 virtual sql::Connection& GetDB();
56 sql::Connection db_;
/external/webkit/Source/WebKit2/Platform/CoreIPC/
H A DConnection.cpp27 #include "Connection.h"
40 class Connection::SyncMessageState : public ThreadSafeRefCounted<Connection::SyncMessageState> {
64 bool processIncomingMessage(Connection*, IncomingMessage&);
95 RefPtr<Connection> connection;
101 PassRefPtr<Connection::SyncMessageState> Connection::SyncMessageState::getOrCreate(RunLoop* runLoop)
117 Connection::SyncMessageState::SyncMessageState(RunLoop* runLoop)
123 Connection::SyncMessageState::~SyncMessageState()
131 bool Connection
195 Connection::Connection(Identifier identifier, bool isServer, Client* client, RunLoop* clientRunLoop) function in class:CoreIPC::Connection
[all...]
/external/webkit/Source/WebKit2/WebProcess/ApplicationCache/
H A DWebApplicationCacheManager.h34 class Connection;
48 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
57 void didReceiveWebApplicationCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
/external/webkit/Source/WebKit2/WebProcess/KeyValueStorage/
H A DWebKeyValueStorageManager.h34 class Connection;
48 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
57 void didReceiveWebKeyValueStorageManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
/external/webkit/Source/WebKit2/WebProcess/MediaCache/
H A DWebMediaCacheManager.h34 class Connection;
46 void didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
55 void didReceiveWebMediaCacheManagerMessage(CoreIPC::Connection*, CoreIPC::MessageID, CoreIPC::ArgumentDecoder*);
/external/chromium/chrome/browser/webdata/
H A Dweb_database_table.h17 explicit WebDatabaseTable(sql::Connection* db, sql::MetaTable* meta_table)
34 sql::Connection* db_;
/external/webkit/Source/WebKit2/UIProcess/Launcher/
H A DThreadLauncher.cpp43 CoreIPC::Connection::Identifier connectionIdentifier = createWebThread();
49 void ThreadLauncher::didFinishLaunchingThread(CoreIPC::Connection::Identifier identifier)
/external/chromium/chrome/browser/importer/
H A Dfirefox3_importer.h26 class Connection;
60 void LoadRootNodeID(sql::Connection* db, int* toolbar_folder_id,
64 void LoadLivemarkIDs(sql::Connection* db, std::set<int>* livemark);
68 void GetTopBookmarkFolder(sql::Connection* db,
73 void GetWholeBookmarkFolder(sql::Connection* db, BookmarkList* list,
78 void LoadFavicons(sql::Connection* db,
/external/chromium/net/server/
H A Dhttp_server.h56 class Connection { class in class:net::HttpServer
61 explicit Connection(HttpServer* server, ListenSocket* sock);
62 ~Connection();
74 DISALLOW_COPY_AND_ASSIGN(Connection);
76 friend class Connection;
87 bool ParseHeaders(Connection* connection,
91 Connection* FindConnection(int connection_id);
92 Connection* FindConnection(ListenSocket* socket);
96 typedef std::map<int, Connection*> IdToConnectionMap;
98 typedef std::map<ListenSocket*, Connection*> SocketToConnectionMa
[all...]
/external/webkit/Source/WebKit2/Shared/Plugins/
H A DNPRemoteObjectMap.h31 #include "Connection.h"
46 static PassRefPtr<NPRemoteObjectMap> create(CoreIPC::Connection*);
63 CoreIPC::Connection* connection() const { return m_connection; }
67 CoreIPC::SyncReplyMode didReceiveSyncMessage(CoreIPC::Connection* connection, CoreIPC::MessageID messageID, CoreIPC::ArgumentDecoder* arguments, CoreIPC::ArgumentEncoder* reply);
70 explicit NPRemoteObjectMap(CoreIPC::Connection*);
71 CoreIPC::Connection* m_connection;
/external/ganymed-ssh2/examples/
H A DPortForwarding.java8 import ch.ethz.ssh2.Connection;
36 Connection conn = new Connection(hostname);

Completed in 433 milliseconds

12345678910