Home
last modified time | relevance | path

Searched refs:handlerList (Results 1 – 25 of 125) sorted by relevance

12345

/dports/astro/stellarium/stellarium-0.21.3/plugins/RemoteSync/src/
H A DSyncClient.cpp42 handlerList.resize(MSGTYPE_SIZE); in SyncClient()
43 handlerList[ERROR] = new ClientErrorHandler(this); in SyncClient()
46 handlerList[ALIVE] = new ClientAliveHandler(); in SyncClient()
50 handlerList[TIME] = new ClientTimeHandler(); in SyncClient()
52 handlerList[LOCATION] = new ClientLocationHandler(); in SyncClient()
54 handlerList[SELECTION] = new ClientSelectionHandler(); in SyncClient()
58 handlerList[VIEW] = new ClientViewHandler(); in SyncClient()
60 handlerList[FOV] = new ClientFovHandler(); in SyncClient()
65 if(!handlerList[t]) handlerList[t] = new DummyMessageHandler(); in SyncClient()
75 for (auto* h : handlerList) in ~SyncClient()
[all …]
H A DSyncServer.cpp42 handlerList.resize(MSGTYPE_SIZE); in SyncServer()
43 handlerList[ERROR] = new ServerErrorHandler(); in SyncServer()
44 handlerList[CLIENT_CHALLENGE_RESPONSE] = new ServerAuthHandler(this, allowVersionMismatch); in SyncServer()
45 handlerList[ALIVE] = new ServerAliveHandler(); in SyncServer()
53 for (auto* h : handlerList) in ~SyncServer()
58 handlerList.clear(); in ~SyncServer()
197 SyncRemotePeer* newClient = new SyncRemotePeer(newConn,false,handlerList); in handleNewConnection()
H A DSyncProtocol.cpp104 …emotePeer(QAbstractSocket *socket, bool isServer, const QVector<SyncMessageHandler *> &handlerList) in SyncRemotePeer() argument
106 handlerList(handlerList) in SyncRemotePeer()
248 SyncMessageHandler* handler = handlerList[msgHeader.msgType]; in receiveMessage()
255 if(!handlerList[msgHeader.msgType]->handleMessage(stream, msgHeader.dataSize, *this)) in receiveMessage()
/dports/devel/aws-sdk-php/aws-sdk-php74-3.185.15/Aws/
H A DCommand.php15 private $handlerList; variable in Aws\\Command
30 $this->handlerList = $list ?: new HandlerList();
42 $this->handlerList = clone $this->handlerList;
57 return $this->handlerList;
H A DAwsClient.php43 private $handlerList; variable in Aws\\AwsClient
197 $this->handlerList = new HandlerList();
199 $config = $resolver->resolve($args, $this->handlerList);
221 return $this->handlerList;
368 $this->handlerList->appendSign(
377 $this->handlerList->prependSign(Middleware::invocationId(), 'invocation-id');
401 $this->handlerList->prependSign(
H A DMultiRegionClient.php22 private $handlerList; variable in Aws\\MultiRegionClient
109 $this->handlerList = new HandlerList(function (
120 $args = $resolver->resolve($args, $this->handlerList);
181 return $this->handlerList;
/dports/www/nextcloud/nextcloud/3rdparty/aws/aws-sdk-php/src/
H A DCommand.php15 private $handlerList; variable in Aws\\Command
30 $this->handlerList = $list ?: new HandlerList();
42 $this->handlerList = clone $this->handlerList;
57 return $this->handlerList;
H A DAwsClient.php43 private $handlerList; variable in Aws\\AwsClient
197 $this->handlerList = new HandlerList();
199 $config = $resolver->resolve($args, $this->handlerList);
221 return $this->handlerList;
368 $this->handlerList->appendSign(
377 $this->handlerList->prependSign(Middleware::invocationId(), 'invocation-id');
401 $this->handlerList->prependSign(
H A DMultiRegionClient.php22 private $handlerList; variable in Aws\\MultiRegionClient
109 $this->handlerList = new HandlerList(function (
120 $args = $resolver->resolve($args, $this->handlerList);
181 return $this->handlerList;
/dports/www/firefox-legacy/firefox-52.8.0esr/mobile/android/geckoview/src/main/java/org/mozilla/gecko/
H A DPrefsHelper.java139 final List<PrefHandler> handlerList = new ArrayList<>(2); in addObserver() local
140 handlerList.add((PrefHandler) existing); in addObserver()
141 handlerList.add(handler); in addObserver()
142 OBSERVERS.put(pref, handlerList); in addObserver()
147 final List<PrefHandler> handlerList = (List) existing; in addObserver() local
148 handlerList.add(handler); in addObserver()
179 final List<PrefHandler> handlerList = (List) existing; in removeObserver() local
180 if (handlerList.remove(handler) && handlerList.isEmpty()) { in removeObserver()
262 final List<PrefHandler> handlerList = (List) existing; in onPrefChange() local
263 if (handlerList.isEmpty()) { in onPrefChange()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/mobile/android/geckoview/src/main/java/org/mozilla/gecko/
H A DPrefsHelper.java138 final List<PrefHandler> handlerList = new ArrayList<>(2); in addObserver() local
139 handlerList.add((PrefHandler) existing); in addObserver()
140 handlerList.add(handler); in addObserver()
141 OBSERVERS.put(pref, handlerList); in addObserver()
146 final List<PrefHandler> handlerList = (List) existing; in addObserver() local
147 handlerList.add(handler); in addObserver()
178 final List<PrefHandler> handlerList = (List) existing; in removeObserver() local
179 if (handlerList.remove(handler) && handlerList.isEmpty()) { in removeObserver()
261 final List<PrefHandler> handlerList = (List) existing; in onPrefChange() local
262 if (handlerList.isEmpty()) { in onPrefChange()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/mobile/android/geckoview/src/main/java/org/mozilla/gecko/
H A DPrefsHelper.java137 final List<PrefHandler> handlerList = new ArrayList<>(2); in addObserver() local
138 handlerList.add((PrefHandler) existing); in addObserver()
139 handlerList.add(handler); in addObserver()
140 OBSERVERS.put(pref, handlerList); in addObserver()
145 final List<PrefHandler> handlerList = (List) existing; in addObserver() local
146 handlerList.add(handler); in addObserver()
177 final List<PrefHandler> handlerList = (List) existing; in removeObserver() local
178 if (handlerList.remove(handler) && handlerList.isEmpty()) { in removeObserver()
264 final List<PrefHandler> handlerList = (List) existing; in onPrefChange() local
265 if (handlerList.isEmpty()) { in onPrefChange()
[all …]
/dports/databases/pgbackrest/pgbackrest-release-2.35/test/src/common/
H A DharnessProtocol.c163 hrnProtocolLocalShimInstall(const ProtocolServerHandler *const handlerList, const unsigned int hand… in hrnProtocolLocalShimInstall() argument
166 FUNCTION_HARNESS_PARAM_P(VOID, handlerList); in hrnProtocolLocalShimInstall()
171 hrnProtocolStatic.localHandlerList = handlerList; in hrnProtocolLocalShimInstall()
259 hrnProtocolRemoteShimInstall(const ProtocolServerHandler *const handlerList, const unsigned int han… in hrnProtocolRemoteShimInstall() argument
262 FUNCTION_HARNESS_PARAM_P(VOID, handlerList); in hrnProtocolRemoteShimInstall()
267 hrnProtocolStatic.remoteHandlerList = handlerList; in hrnProtocolRemoteShimInstall()
H A DharnessProtocol.h12 void hrnProtocolLocalShimInstall(const ProtocolServerHandler *const handlerList, const unsigned int…
17 void hrnProtocolRemoteShimInstall(const ProtocolServerHandler *const handlerList, const unsigned in…
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/render/
H A DImageHandlerRegistry.java60 private List<ImageHandler> handlerList = new java.util.LinkedList<ImageHandler>(); field in ImageHandlerRegistry
110 ListIterator<ImageHandler> iter = this.handlerList.listIterator(); in addHandler()
130 for (ImageHandler h : this.handlerList) { in getHandler()
148 for (ImageHandler handler : this.handlerList) { in getSupportedFlavors()
/dports/sysutils/sensu-go/sensu-go-5.11.1/backend/pipelined/
H A Dhandle.go46 var handlerList []string
49 handlerList = append(handlerList, event.Check.Handlers...)
53 handlerList = append(handlerList, event.Metrics.Handlers...)
56 handlers, err := p.expandHandlers(ctx, handlerList, 1)
/dports/net-im/openfire/Openfire-4.7.1/xmppserver/src/main/java/org/jivesoftware/openfire/http/
H A DHttpBindManager.java349 private final HandlerList handlerList = new HandlerList(); field in HttpBindManager
378 this.handlerList.addHandler( createBoshHandler() ); in HttpBindManager()
379 this.handlerList.addHandler( createWebsocketHandler() ); in HttpBindManager()
382 this.handlerList.addHandler( this.extensionHandlers ); in HttpBindManager()
389 this.handlerList.addHandler( staticContentHandler ); in HttpBindManager()
422 httpBindServer.setHandler( handlerList ); in start()
427 if (handlerList.getHandlers() != null) { in start()
428 Arrays.stream(handlerList.getHandlers()).forEach(handler -> { in start()
436 handlerList.start(); in start()
485 if ( handlerList.getHandlers() != null ) { in stop()
[all …]
/dports/shells/ksh93-devel/ast-cc1bca27/src/lib/libtk/generic/
H A DtkEvent.c198 if (winPtr->handlerList == NULL) {
201 winPtr->handlerList = handlerPtr;
204 for (handlerPtr = winPtr->handlerList; ;
273 for (handlerPtr = winPtr->handlerList, prevPtr = NULL; ;
300 winPtr->handlerList = handlerPtr->nextPtr;
652 for (handlerPtr = winPtr->handlerList; handlerPtr != NULL; ) {
719 while (winPtr->handlerList != NULL) {
720 handlerPtr = winPtr->handlerList;
721 winPtr->handlerList = handlerPtr->nextPtr;
/dports/shells/ksh93/ast-93u/src/lib/libtk/generic/
H A DtkEvent.c198 if (winPtr->handlerList == NULL) {
201 winPtr->handlerList = handlerPtr;
204 for (handlerPtr = winPtr->handlerList; ;
273 for (handlerPtr = winPtr->handlerList, prevPtr = NULL; ;
300 winPtr->handlerList = handlerPtr->nextPtr;
652 for (handlerPtr = winPtr->handlerList; handlerPtr != NULL; ) {
719 while (winPtr->handlerList != NULL) {
720 handlerPtr = winPtr->handlerList;
721 winPtr->handlerList = handlerPtr->nextPtr;
/dports/shells/ast-ksh/ast-ksh93v/src/lib/libtk/generic/
H A DtkEvent.c198 if (winPtr->handlerList == NULL) {
201 winPtr->handlerList = handlerPtr;
204 for (handlerPtr = winPtr->handlerList; ;
273 for (handlerPtr = winPtr->handlerList, prevPtr = NULL; ;
300 winPtr->handlerList = handlerPtr->nextPtr;
652 for (handlerPtr = winPtr->handlerList; handlerPtr != NULL; ) {
719 while (winPtr->handlerList != NULL) {
720 handlerPtr = winPtr->handlerList;
721 winPtr->handlerList = handlerPtr->nextPtr;
/dports/databases/pgbackrest/pgbackrest-release-2.35/test/src/
H A Dtest.c147 static const ErrorHandlerFunction handlerList[] = in main() local
157 errorHandlerSet(handlerList, sizeof(handlerList) / sizeof(ErrorHandlerFunction)); in main()
/dports/math/moab/fathomteam-moab-7bde9dfb84a8/src/moab/
H A DReaderWriterSet.hpp147 inline iterator begin() const { return handlerList.begin(); } in begin()
149 inline iterator end() const { return handlerList.end(); } in end()
162 std::list<Handler> handlerList; member in moab::ReaderWriterSet
/dports/databases/pgbackrest/pgbackrest-release-2.35/src/protocol/
H A Dserver.c144 …ocolServer *this, const VariantList *retryInterval, const ProtocolServerHandler *const handlerList, in protocolServerProcess() argument
150 FUNCTION_LOG_PARAM_P(VOID, handlerList); in protocolServerProcess()
155 ASSERT(handlerList != NULL); in protocolServerProcess()
175 if (command.id == handlerList[handlerIdx].command) in protocolServerProcess()
177 handler = handlerList[handlerIdx].handler; in protocolServerProcess()
/dports/security/razorback-api/api-0.5.0/src/messages/
H A Dcore.c12 static struct List * handlerList = NULL; variable
134 handlerList = List_Create(LIST_MODE_GENERIC, in Message_Init()
140 if (handlerList == NULL) in Message_Init()
178 handler = List_Find(handlerList, &message->type); in Message_Setup()
191 return List_Push(handlerList, handler); in Message_Register_Handler()
/dports/devel/aws-sdk-php/aws-sdk-php74-3.185.15/Aws/S3/
H A DS3ClientTrait.php212 $handlerList = clone $this->getHandlerList();
213 $handlerList->remove('s3.permanent_redirect');
214 $handlerList->remove('signer');
215 $handler = $handlerList->resolve();

12345