Searched refs:listener (Results 226 - 250 of 331) sorted by relevance

1234567891011>>

/haiku/src/libs/icon/shape/
H A DVectorPath.h170 bool AddListener(PathListener* listener);
171 bool RemoveListener(PathListener* listener);
/haiku/src/servers/app/
H A DDesktopListener.h87 void RegisterListener(DesktopListener* listener,
89 void UnregisterListener(DesktopListener* listener);
H A DEventDispatcher.h39 void RemoveListener(event_listener* listener, bool temporary);
52 bool _RemoveTemporaryListener(event_listener* listener, int32 index);
/haiku/headers/private/debugger/user_interface/
H A DUserInterface.h53 UserInterfaceListener* listener) = 0;
169 TeamMemoryBlock::Listener* listener) = 0;
/haiku/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.h100 uint32 flags, void* listener);
102 void* listener);
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DVariablesView.h43 VariablesView(Listener* listener);
46 static VariablesView* Create(Listener* listener,
H A DBreakpointListView.cpp345 BreakpointListView::BreakpointListView(Team* team, Listener* listener) argument
351 fListener(listener)
364 BreakpointListView::Create(Team* team, Listener* listener, BView* filterTarget) argument
366 BreakpointListView* self = new BreakpointListView(team, listener);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DJournal.h191 void AddListener(TransactionListener* listener);
192 void RemoveListener(TransactionListener* listener);
/haiku/src/add-ons/kernel/file_systems/nfs4/
H A DConnection.cpp463 // There is only one listener thread per connection. No need to lock.
552 // There is only one listener thread per connection. No need to lock.
710 ConnectionListener::Listen(ConnectionListener** listener, int networkFamily,
713 ASSERT(listener != NULL);
736 *listener = new(std::nothrow) ConnectionListener(address);
737 if (*listener == NULL) {
742 if ((*listener)->fWaitCancel < B_OK) {
743 result = (*listener)->fWaitCancel;
745 delete *listener;
749 (*listener)
[all...]
/haiku/src/apps/haikudepot/server/
H A DStandardMetaDataJsonEventListener.cpp333 SmdStackedEventListener *listener)
335 fStackedListener = listener;
332 SetStackedListener( SmdStackedEventListener *listener) argument
H A DLocalRepositoryUpdateProcess.cpp75 JobStateListener listener; local
76 BContext context(decisionProvider, listener);
/haiku/headers/private/shared/
H A DSettingsMessage.h38 bool AddListener(const BMessenger& listener);
39 void RemoveListener(const BMessenger& listener);
/haiku/src/kits/print/
H A DFolderWatcher.cpp88 void FolderWatcher::SetListener(FolderListener* listener) { argument
89 fListener = listener;
/haiku/src/apps/debugger/user_interface/report/
H A DReportUserInterface.cpp54 ReportUserInterface::Init(Team* team, UserInterfaceListener* listener) argument
65 fListener = listener;
/haiku/src/kits/network/libnetservices/
H A DFileRequest.cpp23 BUrlProtocolListener* listener, BUrlContext* context)
25 BUrlRequest(url, output, listener, context, "BUrlProtocol.File", "file"),
72 // Send all notifications to listener, if any
22 BFileRequest(const BUrl& url, BDataIO* output, BUrlProtocolListener* listener, BUrlContext* context) argument
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformBox.cpp475 TransformBox::AddListener(TransformBoxListener* listener) argument
477 if (listener && !fListeners.HasItem((void*)listener))
478 return fListeners.AddItem((void*)listener);
485 TransformBox::RemoveListener(TransformBoxListener* listener) argument
487 return fListeners.RemoveItem((void*)listener);
707 TransformBoxListener* listener local
709 listener->TransformBoxDeleted(this);
H A DTransformBox.h93 bool AddListener(TransformBoxListener* listener);
94 bool RemoveListener(TransformBoxListener* listener);
/haiku/src/apps/haikudepot/model/
H A DPackageScreenshotRepository.cpp19 PackageScreenshotRepositoryListenerRef listener,
22 fListener(listener),
18 PackageScreenshotRepository( PackageScreenshotRepositoryListenerRef listener, WebAppInterface* webAppInterface) argument
/haiku/src/apps/haikudepot/packagemodel/
H A DPackageInfo.h162 const PackageInfoListenerRef& listener);
164 const PackageInfoListenerRef& listener);
/haiku/src/system/kernel/
H A Dmodule.cpp190 NotificationListener* listener; member in struct:Module::module_listener
237 NotificationListener& listener);
239 NotificationListener& listener);
241 NotificationListener& listener);
255 uint32 flags, NotificationListener& listener);
1268 NotificationListener& listener)
1290 moduleListener->listener = &listener;
1299 NotificationListener& listener)
1307 NotificationListener& listener)
1267 AddListener(const KMessage* eventSpecifier, NotificationListener& listener) argument
1298 UpdateListener(const KMessage* eventSpecifier, NotificationListener& listener) argument
1306 RemoveListener(const KMessage* eventSpecifier, NotificationListener& listener) argument
1345 _AddNode(dev_t device, ino_t node, const char* path, uint32 flags, NotificationListener& listener) argument
1621 module_listener* listener = iterator.Next(); local
1768 start_watching_modules(const char* prefix, NotificationListener& listener) argument
1780 stop_watching_modules(const char* prefix, NotificationListener& listener) argument
[all...]
/haiku/src/apps/showimage/
H A DPrintOptionsWindow.h61 PrintOptions* options, BWindow* listener);
H A DPrintOptionsWindow.cpp82 BWindow* listener)
90 fListener(listener),
93 AddToSubset(listener);
81 PrintOptionsWindow(BPoint at, PrintOptions* options, BWindow* listener) argument
/haiku/src/apps/debugger/user_interface/gui/team_settings_window/
H A DSignalsConfigView.cpp180 UserInterfaceListener* listener)
184 fListener(listener),
206 SignalsConfigView::Create(::Team* team, UserInterfaceListener* listener) argument
208 SignalsConfigView* self = new SignalsConfigView(team, listener);
179 SignalsConfigView(::Team* team, UserInterfaceListener* listener) argument
/haiku/src/tools/fs_shell/
H A Dblock_cache.cpp173 // #pragma mark - notifications/listener
233 // Notify listener, we need to copy the notification, as it might
320 cache_listener* listener = iterator.Next(); local
322 bool remove = (isClosing && !is_written_event(listener->events))
323 || (isWritten && is_written_event(listener->events));
327 if ((listener->events & event) != 0)
328 add_notification(cache, listener, event, remove);
330 delete_notification(listener);
347 cache_listener* listener = iterator.Next(); local
350 delete_notification(listener);
361 cache_listener* listener = iterator.Next(); local
370 cache_listener* listener = new(std::nothrow) cache_listener; local
[all...]
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/imap_lib/
H A DCommands.h168 void SetListener(FetchListener* listener);
226 void SetListener(ExistsListener* listener);
258 void SetListener(ExpungeListener* listener);

Completed in 114 milliseconds

1234567891011>>