Home
last modified time | relevance | path

Searched refs:remote_service (Results 1 – 25 of 37) sorted by relevance

12

/dports/devel/py-RPyC/rpyc-5.0.1/rpyc/utils/
H A Dfactory.py267 def _server(listener, remote_service, remote_config, args=None): argument
271 conn = connect_stream(SocketStream(client), service=remote_service, config=remote_config)
274 … is_newstyle = isinstance(remote_service, type) and not issubclass(remote_service, _oldstyle)
275 … is_newstyle |= not isinstance(remote_service, type) and not isinstance(remote_service, _oldstyle)
276 … is_voidservice = isinstance(remote_service, type) and issubclass(remote_service, VoidService)
277 … is_voidservice |= not isinstance(remote_service, type) and isinstance(remote_service, VoidService)
288 def connect_thread(service=VoidService, config={}, remote_service=VoidService, remote_config={}): argument
300 remote_server = partial(_server, listener, remote_service, remote_config)
306 def connect_multiprocess(service=VoidService, config={}, remote_service=VoidService, remote_config=… argument
325 remote_server = partial(_server, listener, remote_service, remote_config, args)
H A Dclassic.py157 return factory.connect_thread(SlaveService, remote_service=SlaveService)
168 return factory.connect_multiprocess(SlaveService, remote_service=SlaveService, args=args)
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/services/storage/
H A Dstorage_service_impl_unittest.cc25 mojom::StorageService* remote_service() { return remote_service_.get(); } in remote_service() function in storage::StorageServiceImplTest
42 remote_service()->BindPartition( in TEST_F()
50 remote_service()->BindPartition( in TEST_F()
63 remote_service()->BindPartition( in TEST_F()
78 remote_service()->BindPartition(temp_dir.GetPath(), in TEST_F()
85 remote_service()->BindPartition(temp_dir.GetPath(), in TEST_F()
99 remote_service()->BindPartition(temp_dir.GetPath(), in TEST_F()
104 remote_service()->BindPartition(temp_dir.GetPath(), in TEST_F()
121 remote_service()->BindPartition(kTestRelativePath, in TEST_F()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/services/storage/
H A Dstorage_service_impl_unittest.cc25 mojom::StorageService* remote_service() { return remote_service_.get(); } in remote_service() function in storage::StorageServiceImplTest
42 remote_service()->BindPartition( in TEST_F()
50 remote_service()->BindPartition( in TEST_F()
63 remote_service()->BindPartition( in TEST_F()
78 remote_service()->BindPartition(temp_dir.GetPath(), in TEST_F()
85 remote_service()->BindPartition(temp_dir.GetPath(), in TEST_F()
99 remote_service()->BindPartition(temp_dir.GetPath(), in TEST_F()
104 remote_service()->BindPartition(temp_dir.GetPath(), in TEST_F()
121 remote_service()->BindPartition(kTestRelativePath, in TEST_F()
/dports/sysutils/tracker3/tracker-3.1.2/src/tracker/
H A Dtracker-import.c41 static gchar *remote_service; variable
52 { "remote-service", 'r', 0, G_OPTION_ARG_STRING, &remote_service,
65 if (database_path && !dbus_service && !remote_service) { in create_connection()
71 } else if (dbus_service && !database_path && !remote_service) { in create_connection()
79 } else if (remote_service && !database_path && !dbus_service) { in create_connection()
80 return tracker_sparql_connection_remote_new (remote_service); in create_connection()
H A Dtracker-export.c39 static gchar *remote_service; variable
54 { "remote-service", 'r', 0, G_OPTION_ARG_STRING, &remote_service,
79 if (database_path && !dbus_service && !remote_service) { in create_connection()
85 } else if (dbus_service && !database_path && !remote_service) { in create_connection()
93 } else if (remote_service && !database_path && !dbus_service) { in create_connection()
94 return tracker_sparql_connection_remote_new (remote_service); in create_connection()
H A Dtracker-sparql.c106 static gchar *remote_service; variable
117 { "remote-service", 'r', 0, G_OPTION_ARG_STRING, &remote_service,
179 if (database_path && !dbus_service && !remote_service) { in create_connection()
187 } else if (dbus_service && !database_path && !remote_service) { in create_connection()
195 } else if (remote_service && !database_path && !dbus_service) { in create_connection()
196 return tracker_sparql_connection_remote_new (remote_service); in create_connection()
/dports/security/libcryptui/libcryptui-3.12.2/libcryptui/
H A Dcryptui.c33 DBusGProxy *remote_service = NULL; variable
41 if (remote_service) in init_remote_service()
51 remote_service = dbus_g_proxy_new_for_name (bus, "org.gnome.seahorse", in init_remote_service()
54 if (!remote_service) { in init_remote_service()
131 if (!dbus_g_proxy_call (remote_service, "DisplayNotification", &error, in cryptui_display_notification()
H A Dcryptui-keyset.c57 DBusGProxy *remote_service; member
238 keyset->priv->remote_service = dbus_g_proxy_new_for_name (bus, in cryptui_keyset_constructor()
243 if (!keyset->priv->remote_keyset || !keyset->priv->remote_service) { in cryptui_keyset_constructor()
318 g_object_unref (keyset->priv->remote_service); in cryptui_keyset_dispose()
319 keyset->priv->remote_service = NULL; in cryptui_keyset_dispose()
/dports/net/latd/latd-1.31/
H A Dlloginsession.cc61 strcpy(remote_service, service); in new_session()
90 debuglog(("connecting llogin session to '%s'\n", remote_service)); in connect()
103 add_string(buf, &ptr, (unsigned char *)remote_service); in connect()
H A Dreversesession.cc59 strcpy(remote_service, service); in new_session()
H A Dqueuedsession.cc60 strcpy(remote_service, service); in new_session()
H A Dsession.h56 char remote_service[32]; // Service name variable
/dports/www/chromium-legacy/chromium-88.0.4324.182/device/bluetooth/cast/
H A Dbluetooth_remote_gatt_service_cast.cc21 scoped_refptr<chromecast::bluetooth::RemoteService> remote_service) in BluetoothRemoteGattServiceCast() argument
22 : device_(device), remote_service_(std::move(remote_service)) { in BluetoothRemoteGattServiceCast()
H A Dbluetooth_remote_gatt_service_cast.h31 scoped_refptr<chromecast::bluetooth::RemoteService> remote_service);
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/device/bluetooth/cast/
H A Dbluetooth_remote_gatt_service_cast.cc21 scoped_refptr<chromecast::bluetooth::RemoteService> remote_service) in BluetoothRemoteGattServiceCast() argument
22 : device_(device), remote_service_(std::move(remote_service)) { in BluetoothRemoteGattServiceCast()
H A Dbluetooth_remote_gatt_service_cast.h31 scoped_refptr<chromecast::bluetooth::RemoteService> remote_service);
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/sync_file_system/
H A Dsync_file_system_service.cc198 RemoteFileSyncService* remote_service) in RemoteSyncRunner() argument
203 remote_service_(remote_service), in RemoteSyncRunner()
453 std::unique_ptr<RemoteFileSyncService> remote_service) { in Initialize() argument
456 DCHECK(remote_service); in Initialize()
460 remote_service_ = std::move(remote_service); in Initialize()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chromeos/services/secure_channel/
H A Dble_characteristics_finder.cc35 const RemoteAttribute& remote_service, in BluetoothLowEnergyCharacteristicsFinder() argument
44 remote_service_(remote_service), in BluetoothLowEnergyCharacteristicsFinder()
H A Dble_characteristics_finder.h54 const RemoteAttribute& remote_service,
/dports/devel/py-RPyC/rpyc-5.0.1/tests/
H A Dtest_netref_hierachy.py100 conn = rpyc.connect_thread(remote_service=service)
111 conn = rpyc.connect_thread(remote_service=service)
H A Dtest_threads.py31 self.conn = rpyc.connect_thread(remote_service=MyService)
H A Dtest_context_managers.py29 self.conn = rpyc.connect_thread(remote_service=self.service)
/dports/www/firefox-legacy/firefox-52.8.0esr/security/sandbox/chromium/sandbox/win/wow_helper/
H A Dservice64_resolver.cc299 Redirected* remote_service = reinterpret_cast<Redirected*>(target_); in PerformPatch() local
301 &remote_service->pad; in PerformPatch()
/dports/multimedia/kmplayer/kmplayer-0.12.0b/src/
H A Dkmplayerprocess.cpp1914 remote_service, "/plugin", "org.kde.kmplayer.backend", "play"); in deMediafiedPlay()
1942 for (int i = 0; i < 2 && remote_service.isEmpty (); ++i) { in ready()
1951 remote_service = s.mid (p + 13, nl - p - 13); in ready()
1957 if (!remote_service.isEmpty ()) { in ready()
2003 remote_service = srv; in running()
2095 remote_service, objpath, "org.kde.kmplayer.backend", "eof"); in sendFinish()
2118 remote_service, "/plugin", "org.kde.kmplayer.backend", "quit"); in stop()
2129 if (!remote_service.isEmpty ()) in processOutput()
2161 if (!remote_service.isEmpty ()) { in requestGet()
2163 remote_service, "/plugin", "org.kde.kmplayer.backend", "get"); in requestGet()
[all …]

12