Searched refs:m_connection (Results 1 - 25 of 55) sorted by relevance

123

/macosx-10.10.1/WebKit2-7600.1.25/DatabaseProcess/IndexedDB/
H A DIDBIdentifier.h41 : m_connection(nullptr)
47 : m_connection(&connection)
59 return !m_connection && !m_identifier;
64 uint64_t hashCodes[2] = { reinterpret_cast<uint64_t>(m_connection), static_cast<uint64_t>(m_identifier) };
70 return m_connection == other.m_connection && m_identifier == other.m_identifier;
74 : m_connection(nullptr)
81 return !m_connection && m_identifier == -1;
86 ASSERT(m_connection);
87 return *m_connection;
94 DatabaseProcessIDBConnection* m_connection; member in class:WebKit::IDBIdentifier
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Authentication/
H A DAuthenticationChallengeProxy.cpp43 , m_connection(connection)
54 m_connection->send(Messages::AuthenticationManager::CancelChallenge(m_challengeID), 0);
69 m_connection->send(Messages::AuthenticationManager::ContinueWithoutCredentialForChallenge(challengeID), 0);
77 m_connection->send(Messages::AuthenticationManager::UseCredentialForChallenge(challengeID, credential->credential(), certificateInfo), 0);
85 m_connection->send(Messages::AuthenticationManager::CancelChallenge(m_challengeID), 0);
95 m_connection->send(Messages::AuthenticationManager::PerformDefaultHandling(m_challengeID), 0);
105 m_connection->send(Messages::AuthenticationManager::RejectProtectionSpaceAndContinue(m_challengeID), 0);
/macosx-10.10.1/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/
H A DLDAPRequest.cpp21 m_connection = req.m_connection;
30 m_connection=con;
57 res=ldap_result(this->m_connection->getSessionHandle(),
64 throw LDAPException(this->m_connection);
88 return m_connection;
119 (this->m_connection->getHost() == req->m_connection->getHost()) &&
120 (this->m_connection->getPort() == req->m_connection
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/
H A DChildProcessProxy.cpp39 if (m_connection)
40 m_connection->invalidate();
69 if (m_connection && m_connection->kill())
83 if (!m_connection)
134 ASSERT(!m_connection);
136 m_connection = IPC::Connection::createServerConnection(connectionIdentifier, this, RunLoop::main());
138 m_connection->setShouldCloseConnectionOnMachExceptions();
141 connectionWillOpen(m_connection.get());
142 m_connection
[all...]
H A DConnectionStack.h51 , m_connection(connection)
59 ASSERT(m_connectionStack.current() == m_connection);
66 IPC::Connection* m_connection; member in class:WebKit::ConnectionStack::CurrentConnectionPusher
H A DChildProcess.cpp70 m_connection = IPC::Connection::createClientConnection(parameters.connectionIdentifier, this, RunLoop::main());
71 m_connection->setDidCloseOnConnectionWorkQueueCallback(didCloseOnConnectionWorkQueue);
72 initializeConnection(m_connection.get());
73 m_connection->open();
135 return m_connection.get();
158 m_connection->invalidate();
H A DChildProcessProxy.h55 ASSERT(m_connection);
56 return m_connection.get();
92 RefPtr<IPC::Connection> m_connection; member in class:WebKit::ChildProcessProxy
112 if (!m_connection)
/macosx-10.10.1/JavaScriptCore-7600.1.17/inspector/remote/
H A DRemoteInspectorXPCConnection.mm50 : m_connection(connection)
57 xpc_retain(m_connection);
58 xpc_connection_set_target_queue(m_connection, m_queue);
59 xpc_connection_set_event_handler(m_connection, ^(xpc_object_t object) {
66 xpc_connection_resume(m_connection);
72 ASSERT(!m_connection);
96 if (m_connection) {
97 xpc_connection_cancel(m_connection);
98 xpc_release(m_connection);
99 m_connection
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Plugins/
H A DPluginProxy.cpp88 ASSERT(!m_connection);
89 m_connection = WebProcess::shared().pluginProcessConnectionManager().getPluginProcessConnection(m_pluginProcessToken);
91 if (!m_connection)
96 m_connection->addPluginProxy(this);
116 m_connection->connection()->send(Messages::WebProcessConnection::CreatePluginAsynchronously(creationParameters), m_pluginInstanceID);
122 return controller()->asynchronousPluginInitializationEnabled() && (m_connection->supportsAsynchronousPluginInitialization() || controller()->asynchronousPluginInitializationEnabledForAllPlugins());
136 if (!m_connection->connection()->sendSync(Messages::WebProcessConnection::CreatePlugin(parameters), Messages::WebProcessConnection::CreatePlugin::Reply(result, wantsWheelEvents, remoteLayerClientID), 0) || !result)
182 m_connection->removePluginProxy(this);
195 if (!m_connection)
198 m_connection
[all...]
H A DPluginProcessConnection.cpp51 m_connection = IPC::Connection::createClientConnection(connectionIdentifier, this, RunLoop::main());
53 m_npRemoteObjectMap = NPRemoteObjectMap::create(m_connection.get());
55 m_connection->open();
60 ASSERT(!m_connection);
84 ASSERT(m_connection);
85 m_connection->invalidate();
86 m_connection = nullptr;
/macosx-10.10.1/WebKit2-7600.1.25/PluginProcess/
H A DPluginControllerProxy.cpp58 : m_connection(connection)
110 m_connection->removePluginControllerProxy(this, 0);
115 m_windowNPObject = m_connection->npRemoteObjectMap()->createNPObjectProxy(creationParameters.windowNPObjectID, m_plugin.get());
127 m_connection->removePluginControllerProxy(this, plugin);
142 if (m_pluginDestructionProtectCount || m_connection->connection()->inSendSync()) {
159 m_connection->removePluginControllerProxy(this, plugin);
194 m_connection->connection()->send(Messages::PluginProxy::Update(dirtyRect), m_pluginInstanceID);
243 m_connection->connection()->send(Messages::PluginProxy::LoadURL(requestID, method, urlString, target, headerFields, httpBody, allowPopups), m_pluginInstanceID);
248 m_connection->connection()->send(Messages::PluginProxy::CancelStreamLoad(streamID), m_pluginInstanceID);
255 m_connection
[all...]
H A DWebProcessConnection.cpp59 ASSERT(!m_connection);
64 m_connection = IPC::Connection::createServerConnection(connectionIdentifier, this, RunLoop::main());
65 m_npRemoteObjectMap = NPRemoteObjectMap::create(m_connection.get());
67 m_connection->setOnlySendMessagesAsDispatchWhenWaitingForSyncReplyWhenProcessingSuchAMessage(true);
68 m_connection->open();
108 m_connection->invalidate();
109 m_connection = nullptr;
296 m_connection->incrementDispatchMessageMarkedDispatchWhenWaitingForSyncReplyCount();
303 if (!m_connection) {
308 m_connection
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/Shared/EntryPointUtilities/mac/XPCService/
H A DXPCServiceEntryPoint.mm58 auto value = IPC::adoptXPC(xpc_connection_copy_entitlement_value(m_connection.get(), "keychain-access-groups"));
75 identifier = IPC::Connection::Identifier(xpc_dictionary_copy_mach_send(m_initializerMessage, "server-port"), m_connection);
102 auto value = IPC::adoptXPC(xpc_connection_copy_entitlement_value(m_connection.get(), entitlement));
111 return processIsSandboxed(xpc_connection_get_pid(m_connection.get()));
H A DXPCServiceEntryPoint.h46 : m_connection(WTF::move(connection))
64 IPC::XPCPtr<xpc_connection_t> m_connection; member in class:WebKit::XPCServiceInitializerDelegate
/macosx-10.10.1/WebKit2-7600.1.25/DatabaseProcess/
H A DDatabaseToWebProcessConnection.h44 IPC::Connection* connection() const { return m_connection.get(); }
57 virtual IPC::Connection* messageSenderConnection() override { return m_connection.get(); }
69 RefPtr<IPC::Connection> m_connection; member in class:WebKit::DatabaseToWebProcessConnection
H A DDatabaseToWebProcessConnection.cpp45 m_connection = IPC::Connection::createServerConnection(connectionIdentifier, this, RunLoop::main());
46 m_connection->setOnlySendMessagesAsDispatchWhenWaitingForSyncReplyWhenProcessingSuchAMessage(true);
47 m_connection->open();
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/Plugins/
H A DPluginProcessProxy.cpp98 m_connection->send(Messages::PluginProcess::CreateWebProcessConnection(), 0, IPC::DispatchMessageEvenWhenWaitingForSyncReply);
112 m_connection->send(Messages::PluginProcess::GetSitesWithData(callbackID), 0);
131 m_connection->send(Messages::PluginProcess::ClearSiteData(sites, flags, maxAgeInSeconds, callbackID), 0);
183 ASSERT(!m_connection);
190 m_connection = IPC::Connection::createServerConnection(connectionIdentifier, this, RunLoop::main());
192 m_connection->setShouldCloseConnectionOnMachExceptions();
195 m_connection->open();
209 m_connection->send(Messages::PluginProcess::InitializePluginProcess(parameters), 0);
212 m_connection->send(Messages::PluginProcess::SetQOS(pluginProcessLatencyQOS(), pluginProcessThroughputQOS()), 0);
217 m_connection
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Databases/
H A DWebToDatabaseProcessConnection.h49 IPC::Connection* connection() const { return m_connection.get(); }
63 virtual IPC::Connection* messageSenderConnection() override { return m_connection.get(); }
66 RefPtr<IPC::Connection> m_connection; member in class:WebKit::WebToDatabaseProcessConnection
H A DWebToDatabaseProcessConnection.cpp44 m_connection = IPC::Connection::createClientConnection(connectionIdentifier, this, RunLoop::main());
45 m_connection->open();
/macosx-10.10.1/WebKit2-7600.1.25/PluginProcess/mac/
H A DPluginControllerProxyMac.mm45 m_connection->connection()->send(Messages::PluginProxy::PluginFocusOrWindowFocusChanged(pluginHasFocusAndWindowHasFocus), m_pluginInstanceID);
50 m_connection->connection()->send(Messages::PluginProxy::SetComplexTextInputState(pluginComplexTextInputState), m_pluginInstanceID, IPC::DispatchMessageEvenWhenWaitingForSyncReply);
111 m_connection->pluginDidBecomeVisible(m_pluginInstanceID);
113 m_connection->pluginDidBecomeHidden(m_pluginInstanceID);
129 m_connection->connection()->send(Messages::PluginProxy::SetLayerHostingContextID(m_layerHostingContext->contextID()), m_pluginInstanceID);
/macosx-10.10.1/WebKit2-7600.1.25/Scripts/webkit2/
H A DLegacyMessageReceiver-expected.cpp63 : m_connection(connection)
70 ASSERT(!m_connection);
77 bool _result = m_connection->sendSyncReply(WTF::move(m_encoder));
78 m_connection = nullptr;
83 : m_connection(connection)
90 ASSERT(!m_connection);
96 bool _result = m_connection->sendSyncReply(WTF::move(m_encoder));
97 m_connection = nullptr;
H A DMessageReceiver-expected.cpp63 : m_connection(connection)
70 ASSERT(!m_connection);
77 bool _result = m_connection->sendSyncReply(WTF::move(m_encoder));
78 m_connection = nullptr;
83 : m_connection(connection)
90 ASSERT(!m_connection);
96 bool _result = m_connection->sendSyncReply(WTF::move(m_encoder));
97 m_connection = nullptr;
/macosx-10.10.1/WebKit2-7600.1.25/Shared/Plugins/
H A DNPRemoteObjectMap.h60 IPC::Connection* connection() const { return m_connection; }
68 IPC::Connection* m_connection; member in class:WebKit::NPRemoteObjectMap
/macosx-10.10.1/WebKit2-7600.1.25/WebProcess/Network/
H A DNetworkProcessConnection.cpp49 m_connection = IPC::Connection::createClientConnection(connectionIdentifier, this, RunLoop::main());
50 m_connection->open();
H A DNetworkProcessConnection.h59 IPC::Connection* connection() const { return m_connection.get(); }
78 RefPtr<IPC::Connection> m_connection; member in class:WebKit::NetworkProcessConnection

Completed in 324 milliseconds

123