Home
last modified time | relevance | path

Searched refs:RemoteClient (Results 1 – 25 of 197) sorted by relevance

12345678

/dports/graphics/fyre/fyre-1.0.1/src/
H A Dremote-client.h49 typedef struct _RemoteClient RemoteClient; typedef
54 typedef void (*RemoteCallback) (RemoteClient* self,
58 typedef void (*RemoteStatusCallback) (RemoteClient* self,
62 typedef void (*RemoteSpeedCallback) (RemoteClient* self,
129 void remote_client_set_status_cb (RemoteClient* self,
132 void remote_client_set_speed_cb (RemoteClient* self,
136 void remote_client_connect (RemoteClient* self);
141 void remote_client_command (RemoteClient* self,
149 void remote_client_send_param (RemoteClient* self,
152 void remote_client_send_all_params (RemoteClient* self,
[all …]
H A Dremote-client.c42 static void remote_client_recv_binary (RemoteClient* self,
77 sizeof(RemoteClient), in remote_client_get_type()
98 RemoteClient *self = REMOTE_CLIENT(gobject); in remote_client_dispose()
128 void remote_client_empty_queue (RemoteClient* self) in remote_client_empty_queue()
136 static void remote_client_init(RemoteClient *self) in remote_client_init()
206 void remote_client_start_retry (RemoteClient* self) in remote_client_start_retry()
216 void remote_client_stop_retry (RemoteClient* self) in remote_client_stop_retry()
227 RemoteClient* self = REMOTE_CLIENT(user_data); in remote_client_retry_callback()
234 gboolean remote_client_is_ready (RemoteClient* self) in remote_client_is_ready()
263 void remote_client_command (RemoteClient* self, in remote_client_command()
[all …]
H A Dcluster-model.c62 RemoteClient *client,
65 RemoteClient *client,
74 RemoteClient *client,
240 RemoteClient* iter_client; in cluster_model_find_client()
297 RemoteClient *client; in cluster_model_enable_node()
520 RemoteClient* client; in cluster_foreach_node()
538 RemoteClient *client, in cluster_node_update_param()
546 RemoteClient *client, in cluster_node_start()
553 RemoteClient *client, in cluster_node_stop()
560 RemoteClient *client, in cluster_node_merge_results()
[all …]
/dports/games/cockatrice/Cockatrice-2021-01-26-Release-2.8.0/cockatrice/src/
H A Dremoteclient.cpp27 RemoteClient::RemoteClient(QObject *parent) in RemoteClient() function in RemoteClient
69 RemoteClient::~RemoteClient() in ~RemoteClient()
92 void RemoteClient::slotConnected() in slotConnected()
181 void RemoteClient::doLogin() in doLogin()
205 void RemoteClient::loginResponse(const Response &response) in loginResponse()
279 void RemoteClient::readData() in readData()
426 void RemoteClient::doDisconnectFromServer() in doDisconnectFromServer()
451 void RemoteClient::ping() in ping()
494 void RemoteClient::activateToServer(const QString &_token) in activateToServer()
499 void RemoteClient::disconnectFromServer() in disconnectFromServer()
[all …]
/dports/devel/cxxtools/cxxtools-2.2.1/demo/
H A Drpcasyncaddclient.cpp58 cxxtools::Arg<std::size_t> timeout(argc, argv, 't', cxxtools::RemoteClient::WaitInfinite); in main()
89 cxxtools::RemoteClient& client1( in main()
90 binary ? static_cast<cxxtools::RemoteClient&>(binaryClient1) : in main()
91 json ? static_cast<cxxtools::RemoteClient&>(jsonClient1) : in main()
92 jsonhttp ? static_cast<cxxtools::RemoteClient&>(httpJsonClient1) : in main()
93 static_cast<cxxtools::RemoteClient&>(xmlrpcClient1)); in main()
95 cxxtools::RemoteClient& client2( in main()
96 binary ? static_cast<cxxtools::RemoteClient&>(binaryClient2) : in main()
97 json ? static_cast<cxxtools::RemoteClient&>(jsonClient2) : in main()
98 jsonhttp ? static_cast<cxxtools::RemoteClient&>(httpJsonClient2) : in main()
[all …]
H A Drpcaddclient.cpp68 cxxtools::RemoteClient& theClient = in main()
69 binary ? static_cast<cxxtools::RemoteClient&>(binaryClient) : in main()
70 json ? static_cast<cxxtools::RemoteClient&>(jsonClient) : in main()
71 jsonhttp ? static_cast<cxxtools::RemoteClient&>(httpJsonClient) : in main()
72 static_cast<cxxtools::RemoteClient&>(xmlrpcClient); in main()
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/db/
H A DRemoteClient.java17 public class RemoteClient implements Parcelable { class
24 public RemoteClient(String guid, String name, long lastModified, String deviceType) { in RemoteClient() method in RemoteClient
46 public static final Creator<RemoteClient> CREATOR = new Creator<RemoteClient>() {
48 public RemoteClient createFromParcel(final Parcel source) {
54 final RemoteClient client = new RemoteClient(guid, name, lastModified, deviceType);
61 public RemoteClient[] newArray(final int size) {
62 return new RemoteClient[size];
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/db/
H A DRemoteClient.java17 public class RemoteClient implements Parcelable { class
24 public RemoteClient(String guid, String name, long lastModified, String deviceType) { in RemoteClient() method in RemoteClient
46 public static final Creator<RemoteClient> CREATOR = new Creator<RemoteClient>() {
48 public RemoteClient createFromParcel(final Parcel source) {
54 final RemoteClient client = new RemoteClient(guid, name, lastModified, deviceType);
61 public RemoteClient[] newArray(final int size) {
62 return new RemoteClient[size];
/dports/audio/clementine-player/Clementine-1.4.0rc1/src/networkremote/
H A Dremoteclient.cpp26 RemoteClient::RemoteClient(Application* app, QTcpSocket* client) in RemoteClient() function in RemoteClient
53 RemoteClient::~RemoteClient() { in ~RemoteClient()
62 void RemoteClient::setDownloader(bool downloader) { downloader_ = downloader; } in setDownloader()
64 void RemoteClient::IncomingData() { in IncomingData()
104 void RemoteClient::ParseMessage(const QByteArray& data) { in ParseMessage()
147 void RemoteClient::DisconnectClient(pb::remote::ReasonDisconnect reason) { in DisconnectClient()
160 void RemoteClient::SendDataToClient(pb::remote::Message* msg) { in SendDataToClient()
187 void RemoteClient::SendData(pb::remote::Message* msg) { in SendData()
194 QAbstractSocket::SocketState RemoteClient::State() { return client_->state(); } in State()
H A Doutgoingdatacreator.h36 RemoteClient* client_;
39 GlobalSearchRequest(int i, const QString& q, RemoteClient* c) in GlobalSearchRequest()
51 void SetClients(QList<RemoteClient*>* clients);
80 void SendLibrary(RemoteClient* client);
84 void DoGlobalSearch(const QString& query, RemoteClient* client);
90 QList<RemoteClient*>* clients_;
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/src/remote_device/
H A DRemoteClient.cpp11 RemoteClient::~RemoteClient() in ~RemoteClient()
16 QVector<QSharedPointer<RemoteDeviceListEntry> > RemoteClient::getAnnouncingRemoteDevices() const in getAnnouncingRemoteDevices()
22 void RemoteClient::requestRemoteDevices() in requestRemoteDevices()
28 QStringList RemoteClient::getConnectedDeviceIDs() const in getConnectedDeviceIDs()
34 bool RemoteClient::hasAnnouncingRemoteDevices() const in hasAnnouncingRemoteDevices()
/dports/sysutils/terraform/terraform-1.0.11/internal/backend/remote-state/inmem/
H A Dclient.go11 type RemoteClient struct { struct
17 func (c *RemoteClient) Get() (*remote.Payload, error) { argument
28 func (c *RemoteClient) Put(data []byte) error { argument
36 func (c *RemoteClient) Delete() error { argument
42 func (c *RemoteClient) Lock(info *statemgr.LockInfo) (string, error) { argument
45 func (c *RemoteClient) Unlock(id string) error { argument
/dports/sysutils/terraform/terraform-1.0.11/internal/backend/remote-state/swift/
H A Dclient.go44 type RemoteClient struct { struct
98 func (c *RemoteClient) Get() (*remote.Payload, error) { argument
113 func (c *RemoteClient) Put(data []byte) error { argument
123 func (c *RemoteClient) Delete() error { argument
165 func (c *RemoteClient) Unlock(id string) error { argument
306 func (c *RemoteClient) deleteContainer() error { argument
354 func (c *RemoteClient) cleanObjects() error { argument
377 func (c *RemoteClient) delete(object string) error { argument
419 func (c *RemoteClient) lockInfo() (*statemgr.LockInfo, error) { argument
492 func (c *RemoteClient) lockFilePath() string { argument
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/
H A DRemoteClientsDialogFragment.java11 import org.mozilla.gecko.db.RemoteClient;
40 public void onClients(List<RemoteClient> clients); in onClients()
48 …(String title, String positiveButtonText, ChoiceMode choiceMode, ArrayList<RemoteClient> clients) { in newInstance()
70 protected void notifyListener(List<RemoteClient> clients) { in notifyListener()
90 final ArrayList<RemoteClient> clients = getArguments().getParcelableArrayList(KEY_CLIENTS); in onCreateDialog()
111 final ArrayList<RemoteClient> checked = new ArrayList<RemoteClient>(); in onCreateDialog()
124 final ArrayList<RemoteClient> checked = new ArrayList<RemoteClient>(); in onCreateDialog()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/
H A DRemoteClientsDialogFragment.java11 import org.mozilla.gecko.db.RemoteClient;
40 public void onClients(List<RemoteClient> clients); in onClients()
48 …(String title, String positiveButtonText, ChoiceMode choiceMode, ArrayList<RemoteClient> clients) { in newInstance()
70 protected void notifyListener(List<RemoteClient> clients) { in notifyListener()
90 final ArrayList<RemoteClient> clients = getArguments().getParcelableArrayList(KEY_CLIENTS); in onCreateDialog()
111 final ArrayList<RemoteClient> checked = new ArrayList<RemoteClient>(); in onCreateDialog()
124 final ArrayList<RemoteClient> checked = new ArrayList<RemoteClient>(); in onCreateDialog()
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/src/ui/qml/
H A DRemoteServiceModel.cpp51 const auto* const remoteClient = Env::getSingleton<RemoteClient>(); in RemoteServiceModel()
52 …connect(remoteClient, &RemoteClient::fireDetectionChanged, this, &RemoteServiceModel::fireDetectio… in RemoteServiceModel()
53 …connect(remoteClient, &RemoteClient::fireNewRemoteDispatcher, this, &RemoteServiceModel::onConnect… in RemoteServiceModel()
54 …connect(remoteClient, &RemoteClient::fireDispatcherDestroyed, this, &RemoteServiceModel::onConnect… in RemoteServiceModel()
55 …connect(remoteClient, &RemoteClient::fireDeviceAppeared, this, &RemoteServiceModel::fireRemoteRead… in RemoteServiceModel()
172 if (pNewStatus == Env::getSingleton<RemoteClient>()->isDetecting()) in setDetectRemoteDevices()
192 return Env::getSingleton<RemoteClient>()->isDetecting(); in detectRemoteDevices()
200 auto* const remoteClient = Env::getSingleton<RemoteClient>(); in connectToRememberedServer()
218 const auto* const remoteClient = Env::getSingleton<RemoteClient>(); in onEstablishConnectionDone()
371 return Env::getSingleton<RemoteClient>()->hasAnnouncingRemoteDevices(); in getRemoteReaderVisible()
[all …]
/dports/sysutils/terraform/terraform-1.0.11/internal/backend/remote-state/etcdv3/
H A Dclient.go24 type RemoteClient struct { struct
36 func (c *RemoteClient) Get() (*remote.Payload, error) { argument
62 func (c *RemoteClient) Put(data []byte) error { argument
87 func (c *RemoteClient) Delete() error { argument
95 func (c *RemoteClient) Lock(info *statemgr.LockInfo) (string, error) { argument
110 func (c *RemoteClient) Unlock(id string) error { argument
121 func (c *RemoteClient) deleteLockInfo(info *statemgr.LockInfo) error { argument
132 func (c *RemoteClient) getLockInfo() (*statemgr.LockInfo, error) { argument
150 func (c *RemoteClient) putLockInfo(info *statemgr.LockInfo) error { argument
158 func (c *RemoteClient) lock() (string, error) { argument
[all …]
/dports/deskutils/ausweisapp2/AusweisApp2-1.22.2/src/remote_device/plugin/
H A DRemoteReaderManagerPlugIn.cpp70 const auto remoteClient = Env::getSingleton<RemoteClient>(); in connectToPairedReaders()
71 …connect(remoteClient, &RemoteClient::fireRemoteDevicesInfo, this, &RemoteReaderManagerPlugIn::cont… in connectToPairedReaders()
72 QMetaObject::invokeMethod(remoteClient, &RemoteClient::requestRemoteDevices, Qt::QueuedConnection); in connectToPairedReaders()
131 const auto remoteClient = Env::getSingleton<RemoteClient>(); in continueConnectToPairedReaders()
264 const auto remoteClient = Env::getSingleton<RemoteClient>(); in init()
265 …connect(remoteClient, &RemoteClient::fireNewRemoteDispatcher, this, &RemoteReaderManagerPlugIn::ad… in init()
292 const auto remoteClient = Env::getSingleton<RemoteClient>(); in startScan()
296 QMetaObject::invokeMethod(remoteClient, &RemoteClient::startDetection, Qt::QueuedConnection); in startScan()
304 const auto remoteClient = Env::getSingleton<RemoteClient>(); in stopScan()
305 …disconnect(remoteClient, &RemoteClient::fireDeviceAppeared, this, &RemoteReaderManagerPlugIn::conn… in stopScan()
[all …]
/dports/sysutils/terraform/terraform-1.0.11/internal/backend/remote-state/kubernetes/
H A Dclient.go34 type RemoteClient struct { struct
43 func (c *RemoteClient) Get() (payload *remote.Payload, err error) { argument
79 func (c *RemoteClient) Put(data []byte) error { argument
119 func (c *RemoteClient) Delete() error { argument
146 func (c *RemoteClient) Lock(info *statemgr.LockInfo) (string, error) { argument
207 func (c *RemoteClient) Unlock(id string) error { argument
260 func (c *RemoteClient) getLabels() map[string]string { argument
285 func (c *RemoteClient) deleteSecret(name string) error { argument
302 func (c *RemoteClient) deleteLease(name string) error { argument
319 func (c *RemoteClient) createSecretName() (string, error) { argument
[all …]
/dports/security/keybase/client-v5.7.1/go/chat/
H A Dremoteclient.go13 type RemoteClient struct { struct
19 func NewRemoteClient(g *globals.Context, cli rpc.GenericClient) *RemoteClient {
20 return &RemoteClient{
26 func (c *RemoteClient) Call(ctx context.Context, method string, arg interface{}, argument
38 func (c *RemoteClient) CallCompressed(ctx context.Context, method string, arg interface{}, argument
50 func (c *RemoteClient) Notify(ctx context.Context, method string, arg interface{}, timeout time.Dur… argument
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/overlays/ui/
H A DSendTabDeviceListArrayAdapter.java11 import org.mozilla.gecko.db.RemoteClient;
22 public class SendTabDeviceListArrayAdapter extends ArrayAdapter<RemoteClient> {
34 private Collection<RemoteClient> records;
53 public RemoteClient[] toArray() { in toArray()
54 return records.toArray(new RemoteClient[records.size()]); in toArray()
57 public void setRemoteClientsList(Collection<RemoteClient> remoteClientsList) { in setRemoteClientsList()
116 final RemoteClient remoteClient = getItem(position); in getView()
142 private static int getImage(RemoteClient record) { in getImage()
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/overlays/ui/
H A DSendTabDeviceListArrayAdapter.java11 import org.mozilla.gecko.db.RemoteClient;
22 public class SendTabDeviceListArrayAdapter extends ArrayAdapter<RemoteClient> {
34 private Collection<RemoteClient> records;
53 public RemoteClient[] toArray() { in toArray()
54 return records.toArray(new RemoteClient[records.size()]); in toArray()
57 public void setRemoteClientsList(Collection<RemoteClient> remoteClientsList) { in setRemoteClientsList()
116 final RemoteClient remoteClient = getItem(position); in getView()
142 private static int getImage(RemoteClient record) { in getImage()
/dports/games/freeminer/freeminer-0.4.10.4/src/
H A Dclientiface.h195 class RemoteClient
213 RemoteClient(ServerEnvironment *env): in RemoteClient() function
234 ~RemoteClient() in ~RemoteClient()
401 std::shared_ptr<RemoteClient> getClient(u16 peer_id, ClientState state_min=CS_Active);
404 RemoteClient* getClientNoEx(u16 peer_id, ClientState state_min=CS_Active);
407 RemoteClient* lockedGetClientNoEx(u16 peer_id, ClientState state_min=CS_Active);
431 std::vector<std::shared_ptr<RemoteClient>> getClientList() { in getClientList()
432 std::vector<std::shared_ptr<RemoteClient>> clients; in getClientList()
449 shared_map<u16, std::shared_ptr<RemoteClient>> m_clients;
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/base/java/org/mozilla/gecko/home/
H A DClientsAdapter.java19 import org.mozilla.gecko.db.RemoteClient;
50 protected final List<RemoteClient> hiddenClients = new ArrayList<>();
51 private Map<String, RemoteClient> visibleClients = new HashMap<>();
108 final RemoteClient client = visibleClients.get(clientGuid); in onBindViewHolder()
199 public void setClients(List<RemoteClient> clients) { in setClients()
206 for (RemoteClient client : clients) { in setClients()
236 public List<RemoteClient> getHiddenClients() { in getHiddenClients()
247 final RemoteClient client = visibleClients.get(clientGuid); in toggleClient()
270 public void unhideClients(List<RemoteClient> selectedClients) { in unhideClients()
279 for (RemoteClient client : selectedClients) { in unhideClients()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/base/java/org/mozilla/gecko/home/
H A DClientsAdapter.java19 import org.mozilla.gecko.db.RemoteClient;
50 protected final List<RemoteClient> hiddenClients = new ArrayList<>();
51 private Map<String, RemoteClient> visibleClients = new HashMap<>();
108 final RemoteClient client = visibleClients.get(clientGuid); in onBindViewHolder()
199 public void setClients(List<RemoteClient> clients) { in setClients()
206 for (RemoteClient client : clients) { in setClients()
236 public List<RemoteClient> getHiddenClients() { in getHiddenClients()
247 final RemoteClient client = visibleClients.get(clientGuid); in toggleClient()
270 public void unhideClients(List<RemoteClient> selectedClients) { in unhideClients()
279 for (RemoteClient client : selectedClients) { in unhideClients()
[all …]

12345678