HomeSort by relevance Sort by last modified time
    Searched defs:unsubscribe (Results 1 - 14 of 14) sorted by null

  /external/grpc-grpc/src/python/grpcio_testing/grpc_testing/_channel/
_channel.py 32 def unsubscribe(self, callback): member in class:TestingChannel
  /external/grpc-grpc/src/python/grpcio/grpc/beta/
implementations.py 69 Only the "subscribe" and "unsubscribe" methods are supported for application
92 def unsubscribe(self, callback): member in class:Channel
99 self._channel.unsubscribe(callback)
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
rx-subscriber.hpp 42 that->unsubscribe();
72 that->unsubscribe();
90 that->unsubscribe();
217 void unsubscribe() const { function in class:rxcpp::subscriber
218 return lifetime.unsubscribe();
    [all...]
rx-notification.hpp 29 inline long unsubscribe() const { function in class:rxcpp::notifications::subscription
35 return lhs.subscribe() == rhs.subscribe() && lhs.unsubscribe() == rhs.unsubscribe();
39 out << s.subscribe() << "-" << s.unsubscribe();
rx-subscription.hpp 41 template<class Unsubscribe>
44 typedef rxu::decay_t<Unsubscribe> unsubscribe_call_type;
62 void unsubscribe() const { function in class:rxcpp::static_subscription
79 virtual void unsubscribe() { function in class:rxcpp::subscription::base_subscription_state
96 virtual void unsubscribe() { function in struct:rxcpp::subscription::subscription_state
99 inner.unsubscribe();
178 void unsubscribe() const { function in class:rxcpp::subscription
183 state->unsubscribe();
229 template<class Unsubscribe>
230 auto make_subscription(Unsubscribe&& u
366 inline void unsubscribe() { function in struct:rxcpp::detail::composite_subscription_inner::composite_subscription_state
441 inline void unsubscribe() { function in class:rxcpp::detail::composite_subscription_inner
602 void unsubscribe() const { function in class:rxcpp::resource
    [all...]
rx-scheduler.hpp 246 inline void unsubscribe() const { function in class:rxcpp::schedulers::worker
247 return lifetime.unsubscribe();
441 that->unsubscribe();
609 inline void unsubscribe() const { function in class:rxcpp::schedulers::schedulable
610 return lifetime.unsubscribe();
  /external/Reactive-Extensions/RxCpp/Rx/v2/test/subjects/
subject.cpp 49 void unsubscribe() {issubscribed = false;} function in class:syncwithvoid::sync_subscriber
112 void unsubscribe() {issubscribed = false;} function in class:asyncwithready::async_subscriber
187 void unsubscribe() {issubscribed = false;} function in class:asyncwithfuture::async_subscriber
338 cs.unsubscribe();
408 cs.unsubscribe();
495 o.unsubscribe(); record(1000);});
505 results1.unsubscribe(); record(600);});
507 results2.unsubscribe(); record(700);});
509 results1.unsubscribe(); record(800);});
511 results3.unsubscribe(); record(950);})
    [all...]
  /external/grpc-grpc/src/python/grpcio/grpc/
_interceptor.py 403 def unsubscribe(self, callback): member in class:_Channel
404 self._channel.unsubscribe(callback)
_channel.py 919 def unsubscribe(self, callback): member in class:Channel
    [all...]
__init__.py 844 def unsubscribe(self, callback): member in class:Channel
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaBrowserTest.java 37 * To check {@link MediaBrowser#unsubscribe} works properly,
198 // Test unsubscribe.
200 mMediaBrowser.unsubscribe(StubMediaBrowserService.MEDIA_ID_ROOT);
247 // Test unsubscribe with callback argument.
249 mMediaBrowser.unsubscribe(StubMediaBrowserService.MEDIA_ID_ROOT, mSubscriptionCallback);
346 // Reset callbacks and unsubscribe.
350 mMediaBrowser.unsubscribe(StubMediaBrowserService.MEDIA_ID_ROOT);
392 // Unsubscribe existing subscriptions one-by-one.
401 mMediaBrowser.unsubscribe(StubMediaBrowserService.MEDIA_ID_ROOT,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
imaplib.py 79 'UNSUBSCRIBE': ('AUTH', 'SELECTED'),
768 def unsubscribe(self, mailbox): member in class:IMAP4
769 """Unsubscribe from old mailbox.
771 (typ, [data]) = <instance>.unsubscribe(mailbox)
773 return self._simple_command('UNSUBSCRIBE', mailbox)
    [all...]
  /external/python/cpython2/Lib/
imaplib.py 90 'UNSUBSCRIBE': ('AUTH', 'SELECTED'),
784 def unsubscribe(self, mailbox): member in class:IMAP4
785 """Unsubscribe from old mailbox.
787 (typ, [data]) = <instance>.unsubscribe(mailbox)
789 return self._simple_command('UNSUBSCRIBE', mailbox)
    [all...]
  /external/python/cpython3/Lib/
imaplib.py 100 'UNSUBSCRIBE': ('AUTH', 'SELECTED'),
887 def unsubscribe(self, mailbox): member in class:IMAP4
888 """Unsubscribe from old mailbox.
890 (typ, [data]) = <instance>.unsubscribe(mailbox)
892 return self._simple_command('UNSUBSCRIBE', mailbox)
    [all...]

Completed in 677 milliseconds