/external/linux-kselftest/tools/testing/selftests/uevent/ |
D | uevent_filtering.c | 104 goto on_error; in uevent_listener() 114 goto on_error; in uevent_listener() 120 goto on_error; in uevent_listener() 125 goto on_error; in uevent_listener() 134 goto on_error; in uevent_listener() 144 goto on_error; in uevent_listener() 152 goto on_error; in uevent_listener() 188 on_error: in uevent_listener()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/test/subscriptions/ |
D | observer.cpp | 48 scrbResult.on_error(rxu::current_exception()); 146 dob.on_error(rxu::current_exception()); 150 so.on_error(rxu::current_exception()); 154 dob.on_error(rxu::current_exception()); 158 so.on_error(rxu::current_exception());
|
/external/Reactive-Extensions/RxCpp/Rx/v2/test/operators/ |
D | lift.cpp | 37 dest.on_error(rxu::current_exception()); in on_next() 44 void on_error(rxu::error_ptr e) const { in on_error() function 45 dest.on_error(e); in on_error() 251 … RXCPP_TRY {pass = predicate(n);} RXCPP_CATCH(...){dest.on_error(rxu::current_exception());}; in __anon3f4dc8d90602() 254 [=](rxu::error_ptr e){dest.on_error(e);}, in __anon3f4dc8d90602()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/subjects/ |
D | rx-synchronize.hpp | 78 destination.on_error(rxu::current_exception()); in ensure_processing() 113 void on_error(rxu::error_ptr e) const { in on_error() function 116 fill_queue.push_back(notification_type::on_error(e)); in on_error() 153 void on_error(rxu::error_ptr e) const { in on_error() function in rxcpp::subjects::detail::synchronize_observer 154 state->on_error(e); in on_error()
|
D | rx-subject.hpp | 162 o.on_error(e); in add() 194 void on_error(rxu::error_ptr e) const { in on_error() function in rxcpp::subjects::detail::multicast_observer 206 o.on_error(e); in on_error()
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/operators/ |
D | rx-element_at.hpp | 80 void on_error(rxu::error_ptr e) const { in on_error() function 81 dest.on_error(e); in on_error() 85 dest.on_error(rxu::make_error_ptr(std::range_error("index is out of bounds"))); in on_completed()
|
D | rx-tap.hpp | 95 void on_error(rxu::error_ptr e) const { in on_error() function 96 out.on_error(e); in on_error() 97 dest.on_error(e); in on_error()
|
D | rx-window.hpp | 106 void on_error(rxu::error_ptr e) const { in on_error() function 108 s.get_subscriber().on_error(e); in on_error() 110 dest.on_error(e); in on_error()
|
D | rx-window_toggle.hpp | 180 localState->dest.on_error(e); in window_toggle_observer() 190 localState->dest.on_error(e); in window_toggle_observer() 221 void on_error(rxu::error_ptr e) const { in on_error() function 225 s.get_subscriber().on_error(e); in on_error() 227 localState->dest.on_error(e); in on_error()
|
D | rx-merge_delay_error.hpp | 172 state->out.on_error( in on_subscribe() 182 state->out.on_error( in on_subscribe() 197 state->out.on_error( in on_subscribe() 207 state->out.on_error( in on_subscribe()
|
D | rx-ignore_elements.hpp | 59 void on_error(rxu::error_ptr e) const { in on_error() function 60 dest.on_error(e); in on_error()
|
D | rx-distinct.hpp | 64 void on_error(rxu::error_ptr e) const { in on_error() function 65 dest.on_error(e); in on_error()
|
D | rx-take_while.hpp | 76 void on_error(rxu::error_ptr e) const { in on_error() function 77 dest.on_error(e); in on_error()
|
D | rx-retry.hpp | 46 static inline void on_error(State& state, rxu::error_ptr& e) { in on_error() function 50 state->out.on_error(e); in on_error()
|
D | rx-pairwise.hpp | 70 void on_error(rxu::error_ptr e) const { in on_error() function 71 dest.on_error(e); in on_error()
|
D | rx-repeat.hpp | 50 static inline void on_error(State& state, rxu::error_ptr& e) { in on_error() function 51 state->out.on_error(e); in on_error()
|
D | rx-skip_while.hpp | 78 void on_error(rxu::error_ptr e) const { in on_error() function 79 dest.on_error(e); in on_error()
|
D | rx-finally.hpp | 73 void on_error(rxu::error_ptr e) const { in on_error() function 74 dest.on_error(e); in on_error()
|
D | rx-filter.hpp | 82 void on_error(rxu::error_ptr e) const { in on_error() function 83 dest.on_error(e); in on_error()
|
D | rx-group_by.hpp | 203 [this](rxu::error_ptr e){on_error(e);}); in on_next() 218 [this](rxu::error_ptr e){on_error(e);}); in on_next() 247 [this](rxu::error_ptr e){on_error(e);}); in on_next() 253 void on_error(rxu::error_ptr e) const { in on_error() function 255 g.second.on_error(e); in on_error() 257 dest.on_error(e); in on_error()
|
D | rx-distinct_until_changed.hpp | 77 void on_error(rxu::error_ptr e) const { in on_error() function 78 dest.on_error(e); in on_error()
|
/external/autotest/server/cros/update_engine/ |
D | update_engine_event.py | 54 previous_version=None, on_error=None): argument 69 self._on_error = on_error
|
D | update_engine_test.py | 106 on_error=self._error_initial_check) 111 on_error=self._error_incorrect_event) 116 on_error=self._error_incorrect_event) 121 on_error=self._error_incorrect_event) 157 on_error=self._error_reboot_after_update)
|
/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/ |
D | rx-observer.hpp | 89 s.on_error(ep); in operator ()() 247 void on_error(rxu::error_ptr e) const { in on_error() function in rxcpp::observer 335 void on_error(rxu::error_ptr e) const { in on_error() function in rxcpp::observer 355 virtual void on_error(rxu::error_ptr) const {}; in on_error() function 374 virtual void on_error(rxu::error_ptr e) const { in on_error() function 375 destination.on_error(e); in on_error() 442 void on_error(rxu::error_ptr e) const { in on_error() function in rxcpp::observer 444 destination->on_error(e); in on_error() 658 s.on_error(rxu::current_exception()); in on_exception()
|
/external/grpc-grpc/tools/codegen/core/ |
D | gen_settings_ids.py | 181 decorated_setting.setting.on_error.behavior, 182 decorated_setting.setting.on_error.code,
|