Home
last modified time | relevance | path

Searched refs:sync_notify (Results 1 – 25 of 113) sorted by relevance

12345

/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/common_test/src/
H A Dct_event.erl35 -export([notify/1, notify/2, sync_notify/1,sync_notify/2]).
104 sync_notify(Event) -> function
105 case catch gen_event:sync_notify(?CT_EVMGR_REF,Event) of
107 {error,{sync_notify,Reason}};
116 sync_notify(Name,Data) -> function
117 sync_notify(#event{ name = Name, data = Data}).
H A Dct_master_event.erl34 -export([notify/1, sync_notify/1]).
107 sync_notify(Event) -> function
108 gen_event:sync_notify(?CT_MEVMGR_REF,Event).
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/common_test/src/
H A Dct_event.erl35 -export([notify/1, notify/2, sync_notify/1,sync_notify/2]).
104 sync_notify(Event) -> function
105 case catch gen_event:sync_notify(?CT_EVMGR_REF,Event) of
107 {error,{sync_notify,Reason}};
116 sync_notify(Name,Data) -> function
117 sync_notify(#event{ name = Name, data = Data}).
H A Dct_master_event.erl34 -export([notify/1, sync_notify/1]).
107 sync_notify(Event) -> function
108 gen_event:sync_notify(?CT_MEVMGR_REF,Event).
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/common_test/src/
H A Dct_event.erl35 -export([notify/1, notify/2, sync_notify/1,sync_notify/2]).
104 sync_notify(Event) -> function
105 case catch gen_event:sync_notify(?CT_EVMGR_REF,Event) of
107 {error,{sync_notify,Reason}};
116 sync_notify(Name,Data) -> function
117 sync_notify(#event{ name = Name, data = Data}).
H A Dct_master_event.erl34 -export([notify/1, sync_notify/1]).
107 sync_notify(Event) -> function
108 gen_event:sync_notify(?CT_MEVMGR_REF,Event).
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/common_test/src/
H A Dct_event.erl35 -export([notify/1, notify/2, sync_notify/1,sync_notify/2]).
104 sync_notify(Event) -> function
105 case catch gen_event:sync_notify(?CT_EVMGR_REF,Event) of
107 {error,{sync_notify,Reason}};
116 sync_notify(Name,Data) -> function
117 sync_notify(#event{ name = Name, data = Data}).
H A Dct_master_event.erl34 -export([notify/1, sync_notify/1]).
107 sync_notify(Event) -> function
108 gen_event:sync_notify(?CT_MEVMGR_REF,Event).
/dports/lang/erlang/otp-OTP-24.1.7/lib/common_test/src/
H A Dct_event.erl35 -export([notify/1, notify/2, sync_notify/1,sync_notify/2]).
104 sync_notify(Event) -> function
105 case catch gen_event:sync_notify(?CT_EVMGR_REF,Event) of
107 {error,{sync_notify,Reason}};
116 sync_notify(Name,Data) -> function
117 sync_notify(#event{ name = Name, data = Data}).
H A Dct_master_event.erl34 -export([notify/1, sync_notify/1]).
107 sync_notify(Event) -> function
108 gen_event:sync_notify(?CT_MEVMGR_REF,Event).
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/common_test/src/
H A Dct_event.erl35 -export([notify/1, notify/2, sync_notify/1,sync_notify/2]).
104 sync_notify(Event) -> function
105 case catch gen_event:sync_notify(?CT_EVMGR_REF,Event) of
107 {error,{sync_notify,Reason}};
116 sync_notify(Name,Data) -> function
117 sync_notify(#event{ name = Name, data = Data}).
H A Dct_master_event.erl34 -export([notify/1, sync_notify/1]).
107 sync_notify(Event) -> function
108 gen_event:sync_notify(?CT_MEVMGR_REF,Event).
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/common_test/src/
H A Dct_event.erl35 -export([notify/1, notify/2, sync_notify/1,sync_notify/2]).
104 sync_notify(Event) -> function
105 case catch gen_event:sync_notify(?CT_EVMGR_REF,Event) of
107 {error,{sync_notify,Reason}};
116 sync_notify(Name,Data) -> function
117 sync_notify(#event{ name = Name, data = Data}).
H A Dct_master_event.erl34 -export([notify/1, sync_notify/1]).
107 sync_notify(Event) -> function
108 gen_event:sync_notify(?CT_MEVMGR_REF,Event).
/dports/devel/erlang-lager/lager-3.2.4/test/
H A Dsync_error_logger.erl42 gen_event:sync_notify(error_logger, {info_msg, group_leader(), {self(), Format, Args}}).
48 … gen_event:sync_notify(error_logger, {warning_msg_tag(), group_leader(), {self(), Format, Args}}).
54 gen_event:sync_notify(error_logger, {error, group_leader(), {self(), Format, Args}}).
60 gen_event:sync_notify(error_logger, {info_report, group_leader(), {self(), Type, Report}}).
67 gen_event:sync_notify(error_logger, {Tag, group_leader(), {self(), NType, Report}}).
73 gen_event:sync_notify(error_logger, {error_report, group_leader(), {self(), Type, Report}}).
/dports/net/rabbitmq/rabbitmq-server-3.9.11/deps/rabbit_common/src/
H A Drabbit_event.erl17 -export([sync_notify/2, sync_notify/3]).
56 -spec sync_notify(event_type(), event_props()) -> 'ok'.
57 -spec sync_notify(event_type(), event_props(), reference() | 'none') -> 'ok'.
154 sync_notify(Type, Props) -> sync_notify(Type, Props, none). function
156 sync_notify(Type, Props, Ref) -> function
157 gen_event:sync_notify(?MODULE, event_cons(Type, Props, Ref)).
/dports/devel/elixir-gen_stage/gen_stage-0.14.0/examples/
H A Dgen_event.exs31 def sync_notify(event, timeout \\ 5000) do function
113 Broadcaster.sync_notify(1)
114 Broadcaster.sync_notify(2)
115 Broadcaster.sync_notify(3)
116 Broadcaster.sync_notify(4)
117 Broadcaster.sync_notify(5)
/dports/lang/erlang-runtime21/otp-OTP-21.3.8.24/lib/stdlib/test/
H A Dgen_event_SUITE.erl48 swap_handler, swap_sup_handler, notify, sync_notify,
265 gen_event:sync_notify(my_dummy_handler, wakeup),
652 sync_notify(Config) when is_list(Config) -> function
657 ok = gen_event:sync_notify(my_dummy_handler, Event),
662 ok = gen_event:sync_notify(my_dummy_handler,
665 ok = gen_event:sync_notify(my_dummy_handler, Event),
689 ok = gen_event:sync_notify(my_dummy_handler, Event),
694 ok = gen_event:sync_notify(my_dummy_handler,
734 ok = gen_event:sync_notify(my_dummy_handler,
745 ok = gen_event:sync_notify(my_dummy_handler,
[all …]
/dports/lang/erlang-runtime22/otp-OTP-22.3.4.24/lib/stdlib/test/
H A Dgen_event_SUITE.erl48 swap_handler, swap_sup_handler, notify, sync_notify,
265 gen_event:sync_notify(my_dummy_handler, wakeup),
652 sync_notify(Config) when is_list(Config) -> function
657 ok = gen_event:sync_notify(my_dummy_handler, Event),
662 ok = gen_event:sync_notify(my_dummy_handler,
665 ok = gen_event:sync_notify(my_dummy_handler, Event),
689 ok = gen_event:sync_notify(my_dummy_handler, Event),
694 ok = gen_event:sync_notify(my_dummy_handler,
734 ok = gen_event:sync_notify(my_dummy_handler,
745 ok = gen_event:sync_notify(my_dummy_handler,
[all …]
/dports/lang/erlang-runtime23/otp-OTP-23.3.4.10/lib/stdlib/test/
H A Dgen_event_SUITE.erl49 swap_handler, swap_sup_handler, notify, sync_notify,
317 gen_event:sync_notify(my_dummy_handler, wakeup),
704 sync_notify(Config) when is_list(Config) -> function
709 ok = gen_event:sync_notify(my_dummy_handler, Event),
714 ok = gen_event:sync_notify(my_dummy_handler,
717 ok = gen_event:sync_notify(my_dummy_handler, Event),
741 ok = gen_event:sync_notify(my_dummy_handler, Event),
746 ok = gen_event:sync_notify(my_dummy_handler,
786 ok = gen_event:sync_notify(my_dummy_handler,
797 ok = gen_event:sync_notify(my_dummy_handler,
[all …]
/dports/lang/erlang-wx/otp-OTP-24.1.7/lib/stdlib/test/
H A Dgen_event_SUITE.erl49 swap_handler, swap_sup_handler, notify, sync_notify,
317 gen_event:sync_notify(my_dummy_handler, wakeup),
704 sync_notify(Config) when is_list(Config) -> function
709 ok = gen_event:sync_notify(my_dummy_handler, Event),
714 ok = gen_event:sync_notify(my_dummy_handler,
717 ok = gen_event:sync_notify(my_dummy_handler, Event),
741 ok = gen_event:sync_notify(my_dummy_handler, Event),
746 ok = gen_event:sync_notify(my_dummy_handler,
786 ok = gen_event:sync_notify(my_dummy_handler,
797 ok = gen_event:sync_notify(my_dummy_handler,
[all …]
/dports/lang/erlang-runtime24/otp-OTP-24.1.7/lib/stdlib/test/
H A Dgen_event_SUITE.erl49 swap_handler, swap_sup_handler, notify, sync_notify,
317 gen_event:sync_notify(my_dummy_handler, wakeup),
704 sync_notify(Config) when is_list(Config) -> function
709 ok = gen_event:sync_notify(my_dummy_handler, Event),
714 ok = gen_event:sync_notify(my_dummy_handler,
717 ok = gen_event:sync_notify(my_dummy_handler, Event),
741 ok = gen_event:sync_notify(my_dummy_handler, Event),
746 ok = gen_event:sync_notify(my_dummy_handler,
786 ok = gen_event:sync_notify(my_dummy_handler,
797 ok = gen_event:sync_notify(my_dummy_handler,
[all …]
/dports/lang/erlang/otp-OTP-24.1.7/lib/stdlib/test/
H A Dgen_event_SUITE.erl49 swap_handler, swap_sup_handler, notify, sync_notify,
317 gen_event:sync_notify(my_dummy_handler, wakeup),
704 sync_notify(Config) when is_list(Config) -> function
709 ok = gen_event:sync_notify(my_dummy_handler, Event),
714 ok = gen_event:sync_notify(my_dummy_handler,
717 ok = gen_event:sync_notify(my_dummy_handler, Event),
741 ok = gen_event:sync_notify(my_dummy_handler, Event),
746 ok = gen_event:sync_notify(my_dummy_handler,
786 ok = gen_event:sync_notify(my_dummy_handler,
797 ok = gen_event:sync_notify(my_dummy_handler,
[all …]
/dports/lang/erlang-java/otp-OTP-24.1.7/lib/stdlib/test/
H A Dgen_event_SUITE.erl49 swap_handler, swap_sup_handler, notify, sync_notify,
317 gen_event:sync_notify(my_dummy_handler, wakeup),
704 sync_notify(Config) when is_list(Config) -> function
709 ok = gen_event:sync_notify(my_dummy_handler, Event),
714 ok = gen_event:sync_notify(my_dummy_handler,
717 ok = gen_event:sync_notify(my_dummy_handler, Event),
741 ok = gen_event:sync_notify(my_dummy_handler, Event),
746 ok = gen_event:sync_notify(my_dummy_handler,
786 ok = gen_event:sync_notify(my_dummy_handler,
797 ok = gen_event:sync_notify(my_dummy_handler,
[all …]
/dports/www/erlang-webmachine/webmachine-1.10.9/src/
H A Dwebmachine_log.erl129 gen_event:sync_notify(?EVENT_LOGGER, {log_access, LogData}).
140 gen_event:sync_notify(?EVENT_LOGGER, {log_error, LogMsg}).
145 gen_event:sync_notify(?EVENT_LOGGER, {log_error, Code, Req, Reason}).
150 gen_event:sync_notify(?EVENT_LOGGER, {log_info, LogMsg}).

12345