Searched refs:connection (Results 1 - 25 of 488) sorted by relevance

1234567891011>>

/macosx-10.10/ppp-786.1.1/Helpers/snhelper/
H A Dflow_divert.h9 void handle_flow_divert_uuid_add(xpc_connection_t connection, xpc_object_t message);
10 void handle_flow_divert_uuid_remove(xpc_connection_t connection, xpc_object_t message);
11 void handle_flow_divert_uuid_clear(xpc_connection_t connection, xpc_object_t message);
H A Dlaunch_services.h9 void handle_get_uuid_for_app(xpc_connection_t connection, xpc_object_t message);
H A Dsnhelper.c20 has_entitlement(xpc_connection_t connection) argument
23 xpc_object_t entitlement = xpc_connection_copy_entitlement_value(connection, "com.apple.private.snhelper");
32 handle_message(xpc_connection_t connection, xpc_object_t message) argument
42 xpc_retain(connection);
49 handle_flow_divert_uuid_add(connection, message);
52 handle_flow_divert_uuid_remove(connection, message);
55 handle_flow_divert_uuid_clear(connection, message);
59 handle_get_uuid_for_app(connection, message);
63 send_reply(connection, message, EINVAL, NULL);
67 xpc_release(connection);
122 send_reply(xpc_connection_t connection, xpc_object_t request, int64_t result, xpc_object_t result_data) argument
[all...]
H A Dflow_divert.c19 handle_flow_divert_uuid_add(xpc_connection_t connection, xpc_object_t message) argument
30 send_reply(connection, message, result, NULL);
34 handle_flow_divert_uuid_remove(xpc_connection_t connection, xpc_object_t message) argument
45 send_reply(connection, message, result, NULL);
49 handle_flow_divert_uuid_clear(xpc_connection_t connection, xpc_object_t message) argument
51 send_reply(connection, message, VPNAppLayerUUIDPolicyClear(), NULL);
H A Dsnhelper.h9 void send_reply(xpc_connection_t connection, xpc_object_t request, int64_t result, xpc_object_t result_data);
/macosx-10.10/WebKit2-7600.1.25/DatabaseProcess/EntryPoint/mac/XPCService/
H A DDatabaseServiceEntryPoint.mm35 extern "C" WK_EXPORT void DatabaseServiceInitializer(xpc_connection_t connection, xpc_object_t initializerMessage);
37 void DatabaseServiceInitializer(xpc_connection_t connection, xpc_object_t initializerMessage)
39 XPCServiceInitializer<DatabaseProcess, XPCServiceInitializerDelegate>(IPC::adoptXPC(connection), initializerMessage);
/macosx-10.10/DiskArbitration-268/diskarbitrationd/
H A DDADialog.c39 xpc_connection_t connection; local
41 connection = xpc_connection_create_mach_service( _kDAAgentName, NULL, 0 );
43 if ( connection )
53 xpc_connection_set_event_handler( connection, ^( xpc_object_t object ) { } );
55 xpc_connection_set_target_uid( connection, gDAConsoleUserUID );
57 xpc_connection_resume( connection );
59 xpc_connection_send_message( connection, message );
61 xpc_release( connection );
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebContextConnectionClient.cpp33 void WebContextConnectionClient::didCreateConnection(WebContext* context, WebConnection* connection) argument
38 m_client.didCreateConnection(toAPI(context), toAPI(connection), m_client.base.clientInfo);
/macosx-10.10/WebKit2-7600.1.25/Shared/
H A DWebConnectionClient.cpp35 void WebConnectionClient::didReceiveMessage(WebConnection* connection, const String& messageName, API::Object* messageBody) argument
40 m_client.didReceiveMessage(toAPI(connection), toAPI(messageName.impl()), toAPI(messageBody), m_client.base.clientInfo);
43 void WebConnectionClient::didClose(WebConnection* connection) argument
48 m_client.didClose(toAPI(connection), m_client.base.clientInfo);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKConnectionInternal.h35 inline WKConnection *wrapper(WebConnection& connection) argument
37 ASSERT([connection.wrapper() isKindOfClass:[WKConnection class]]);
38 return (WKConnection *)connection.wrapper();
H A DWKConnection.h36 - (void)connection:(WKConnection *)connection didReceiveMessageWithName:(NSString *)messageName body:(id)messageBody;
37 - (void)connectionDidClose:(WKConnection *)connection;
/macosx-10.10/KerberosHelper-151/CFNetwork/
H A DNSURLConnection.m50 - (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace;
51 - (void)connection:(NSURLConnection *)connection didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge;
52 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge;
53 - (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection *)connection;
55 - (NSCachedURLResponse *)connection:(NSURLConnection *)connection willCacheResponse:(NSCachedURLResponse *)cachedResponse;
56 - (void)connection
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Databases/
H A DWebToDatabaseProcessConnection.cpp52 void WebToDatabaseProcessConnection::didReceiveMessage(IPC::Connection* connection, IPC::MessageDecoder& decoder) argument
57 connectionIterator->value->didReceiveWebIDBServerConnectionMessage(connection, decoder);
64 void WebToDatabaseProcessConnection::didClose(IPC::Connection* connection) argument
73 void WebToDatabaseProcessConnection::registerWebIDBServerConnection(WebIDBServerConnection& connection) argument
75 ASSERT(!m_webIDBServerConnections.contains(connection.messageSenderDestinationID()));
76 m_webIDBServerConnections.set(connection.messageSenderDestinationID(), &connection);
80 void WebToDatabaseProcessConnection::removeWebIDBServerConnection(WebIDBServerConnection& connection) argument
82 ASSERT(m_webIDBServerConnections.contains(connection.messageSenderDestinationID()));
84 send(Messages::DatabaseToWebProcessConnection::RemoveDatabaseProcessIDBConnection(connection
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/InspectorServer/
H A DWebInspectorServer.cpp71 WebSocketServerConnection* connection = it->value; local
72 WebInspectorProxy* client = m_clientMap.get(connection->identifier());
73 closeConnection(client, connection);
93 WebSocketServerConnection* connection = m_connectionMap.get(pageId); local
94 if (connection)
95 closeConnection(0, connection);
105 WebSocketServerConnection* connection = m_connectionMap.get(pageIdForConnection); local
106 if (connection)
107 connection->sendWebSocketMessage(message);
110 void WebInspectorServer::didReceiveUnrecognizedHTTPRequest(WebSocketServerConnection* connection, PassRefPt argument
163 didEstablishWebSocketConnection(WebSocketServerConnection* connection, PassRefPtr<HTTPRequest> request) argument
184 didReceiveWebSocketMessage(WebSocketServerConnection* connection, const String& message) argument
193 didCloseWebSocketConnection(WebSocketServerConnection* connection) argument
205 closeConnection(WebInspectorProxy* client, WebSocketServerConnection* connection) argument
[all...]
/macosx-10.10/WebKit2-7600.1.25/NetworkProcess/EntryPoint/mac/XPCService/
H A DNetworkServiceEntryPoint.mm37 NetworkServiceInitializerDelegate(IPC::XPCPtr<xpc_connection_t> connection, xpc_object_t initializerMessage)
38 : XPCServiceInitializerDelegate(WTF::move(connection), initializerMessage)
47 extern "C" WK_EXPORT void NetworkServiceInitializer(xpc_connection_t connection, xpc_object_t initializerMessage);
49 void NetworkServiceInitializer(xpc_connection_t connection, xpc_object_t initializerMessage)
56 XPCServiceInitializer<NetworkProcess, NetworkServiceInitializerDelegate>(IPC::adoptXPC(connection), initializerMessage);
/macosx-10.10/ruby-106/ruby/test/net/smtp/
H A Dtest_ssl_socket.rb50 connection = MySMTP.new('localhost', 25)
51 connection.enable_starttls_auto
52 connection.fake_tcp = tcp_socket
53 connection.fake_ssl = ssl_socket
56 connection.start
66 connection = MySMTP.new('localhost', 25)
67 connection.enable_starttls_auto
68 connection.fake_tcp = tcp_socket
69 connection.fake_ssl = ssl_socket
71 connection
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/network/mac/
H A DWebCoreResourceHandleAsDelegate.mm63 - (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSURLRequest *)newRequest redirectResponse:(NSURLResponse *)redirectResponse
65 UNUSED_PARAM(connection);
70 redirectResponse = synthesizeRedirectResponseIfNecessary(connection, newRequest, redirectResponse);
78 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:%d, Location:<%@>", m_handle, connection, [newRequest description], static_cast<int>([(id)redirectResponse statusCode]), [[(id)redirectResponse allHeaderFields] objectForKey:@"Location"]);
80 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:non-HTTP", m_handle, connection, [newRequest description]);
90 - (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection *)connection
92 UNUSED_PARAM(connection);
[all...]
H A DWebCoreResourceHandleAsOperationQueueDelegate.mm101 - (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSURLRequest *)newRequest redirectResponse:(NSURLResponse *)redirectResponse
104 UNUSED_PARAM(connection);
106 redirectResponse = synthesizeRedirectResponseIfNecessary(connection, newRequest, redirectResponse);
114 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:%d, Location:<%@>", m_handle, connection, [newRequest description], static_cast<int>([(id)redirectResponse statusCode]), [[(id)redirectResponse allHeaderFields] objectForKey:@"Location"]);
116 LOG(Network, "Handle %p delegate connection:%p willSendRequest:%@ redirectResponse:non-HTTP", m_handle, connection, [newRequest description]);
137 - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChalleng
[all...]
/macosx-10.10/WebKit2-7600.1.25/NetworkProcess/FileAPI/
H A DNetworkBlobRegistry.cpp53 void NetworkBlobRegistry::registerFileBlobURL(NetworkConnectionToWebProcess* connection, const URL& url, const String& path, PassRefPtr<SandboxExtension> sandboxExtension, const String& contentType) argument
57 ASSERT(!m_blobsForConnection.get(connection).contains(url));
58 BlobForConnectionMap::iterator mapIterator = m_blobsForConnection.find(connection);
60 mapIterator = m_blobsForConnection.add(connection, HashSet<URL>()).iterator;
64 void NetworkBlobRegistry::registerBlobURL(NetworkConnectionToWebProcess* connection, const URL& url, Vector<WebCore::BlobPart> blobParts, const String& contentType) argument
68 ASSERT(!m_blobsForConnection.get(connection).contains(url));
69 BlobForConnectionMap::iterator mapIterator = m_blobsForConnection.find(connection);
71 mapIterator = m_blobsForConnection.add(connection, HashSet<URL>()).iterator;
75 void NetworkBlobRegistry::registerBlobURL(NetworkConnectionToWebProcess* connection, const WebCore::URL& url, const WebCore::URL& srcURL) argument
77 // The connection ma
88 registerBlobURLForSlice(NetworkConnectionToWebProcess* connection, const WebCore::URL& url, const WebCore::URL& srcURL, int64_t start, int64_t end) argument
101 unregisterBlobURL(NetworkConnectionToWebProcess* connection, const WebCore::URL& url) argument
114 blobSize(NetworkConnectionToWebProcess* connection, const WebCore::URL& url) argument
122 connectionToWebProcessDidClose(NetworkConnectionToWebProcess* connection) argument
134 filesInBlob(NetworkConnectionToWebProcess* connection, const WebCore::URL& url) argument
[all...]
/macosx-10.10/dtrace-147/
H A Ddtrace_dyld.cpp45 if (CSCppDyldSharedMemoryPage* connection = (CSCppDyldSharedMemoryPage*)aii->coreSymbolicationShmPage) {
52 CSCppTimeoutLock lock(connection->lock_addr(), connection->timeout());
54 connection->increment_data_generation();
55 uint64_t* data = (uint64_t*)connection->data();
66 connection->send_notice(CORESYMBOLICATION_DYLD_PING_MSGH_ID, sent, recv);
/macosx-10.10/libutil-38/
H A Dtzlink.c35 xpc_connection_t connection; local
43 connection = xpc_connection_create_mach_service(TZLINK_SERVICE_NAME, NULL, XPC_CONNECTION_MACH_SERVICE_PRIVILEGED);
44 xpc_connection_set_event_handler(connection, ^(__unused xpc_object_t event) {
46 xpc_connection_resume(connection);
51 reply = xpc_connection_send_message_with_reply_sync(connection, request);
60 xpc_release(connection);
/macosx-10.10/configd-699.1.5/SystemConfiguration.fproj/
H A DSCNetworkConnectionInternal.h34 CFDictionaryRef __SCNetworkConnectionCopyTokenParameters(SCNetworkConnectionRef connection);
/macosx-10.10/WebKit2-7600.1.25/Scripts/webkit2/
H A DMessageReceiverSuperclass-expected.cpp37 void WebPage::didReceiveMessage(IPC::Connection* connection, IPC::MessageDecoder& decoder) argument
43 WebPageBase::didReceiveMessage(connection, decoder);
/macosx-10.10/WebKit2-7600.1.25/PluginProcess/EntryPoint/mac/XPCService/
H A DPluginServiceEntryPoint.mm40 PluginServiceInitializerDelegate(IPC::XPCPtr<xpc_connection_t> connection, xpc_object_t initializerMessage)
41 : XPCServiceInitializerDelegate(WTF::move(connection), initializerMessage)
68 extern "C" WK_EXPORT void PluginServiceInitializer(xpc_connection_t connection, xpc_object_t initializerMessage);
70 void PluginServiceInitializer(xpc_connection_t connection, xpc_object_t initializerMessage)
79 XPCServiceInitializer<PluginProcess, PluginServiceInitializerDelegate>(IPC::adoptXPC(connection), initializerMessage);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Network/CustomProtocols/mac/
H A DCustomProtocolManagerProxyMac.mm53 - (id)initWithCustomProtocolManagerProxy:(CustomProtocolManagerProxy*)customProtocolManagerProxy customProtocolID:(uint64_t)customProtocolID request:(NSURLRequest *)request connection:(Connection *)connection;
58 - (id)initWithCustomProtocolManagerProxy:(CustomProtocolManagerProxy*)customProtocolManagerProxy customProtocolID:(uint64_t)customProtocolID request:(NSURLRequest *)request connection:(Connection *)connection
66 ASSERT(connection);
69 _connection = connection;
84 - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
91 - (NSCachedURLResponse *)connection:(NSURLConnection *)connection willCacheRespons
[all...]

Completed in 317 milliseconds

1234567891011>>