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

1 2 3

  /frameworks/support/media/api26/android/support/v4/media/
MediaBrowserCompatApi26.java 39 public static void unsubscribe(Object browserObj, String parentId, method in class:MediaBrowserCompatApi26
41 ((MediaBrowser) browserObj).unsubscribe(parentId, method
  /hardware/qcom/gps/msm8909w_3100/core/observer/
IOsObserver.h 83 inline virtual void unsubscribe function in class:loc_core::IOsObserver
  /packages/services/Car/car-lib/src/android/car/app/menu/
CarMenuCallbacks.java 43 * Unsubscribe for changes to the children of the specified id.
47 public abstract void unsubscribe(String parentId, SubscriptionCallbacks callbacks); method in class:CarMenuCallbacks
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/mockable/
MediaBrowser.java 141 * Wrapper for MediaBrowser.unsubscribe(String parentId)
143 public void unsubscribe(String parentId) { method in class:MediaBrowser
144 mDelegate.unsubscribe(parentId);
149 * Wrapper for MediaBrowser.unsubscribe(String parentId, SubscriptionCallback callback)
151 public void unsubscribe(String parentId, SubscriptionCallback callback) { method in class:MediaBrowser
152 mDelegate.unsubscribe(parentId, callback);
  /system/netd/server/
NetlinkListener.cpp 93 Status NetlinkListener::unsubscribe(uint16_t type) { function in class:android::net::NetlinkListener
NFLogListener.cpp 169 expectOk(mListener->unsubscribe(kNFLogPacketMsgType));
170 expectOk(mListener->unsubscribe(kNetlinkDoneMsgType));
196 Status NFLogListener::unsubscribe(uint16_t nfLogGroup) { function in class:android::net::NFLogListener
  /frameworks/base/media/java/android/media/
MediaBrowser2.java 175 * Unsubscribe for changes to the children of the parent, which was previously subscribed with
183 public void unsubscribe(@NonNull String parentId) { method in class:MediaBrowser2
  /packages/services/Car/service/src/com/android/car/hal/
HalClient.java 76 public void unsubscribe(int prop) throws RemoteException { method in class:HalClient
77 mVehicle.unsubscribe(mInternalCallback, prop);
  /frameworks/support/media/api21/android/support/v4/media/
MediaBrowserCompatApi21.java 83 public static void unsubscribe(Object browserObj, String parentId) { method in class:MediaBrowserCompatApi21
84 ((MediaBrowser)browserObj).unsubscribe(parentId); method
  /packages/services/Car/car-lib/src/android/car/vms/
VmsOperationRecorder.java 49 public void unsubscribe(VmsLayer layer) { method in class:VmsOperationRecorder
50 recordOp("unsubscribe", layer);
57 public void unsubscribe(VmsLayer layer, int publisherId) { method in class:VmsOperationRecorder
58 recordOp("unsubscribe", "publisherId", publisherId, layer);
VmsSubscriberManager.java 256 * @param layer the layer to unsubscribe from.
260 public void unsubscribe(VmsLayer layer) { method in class:VmsSubscriberManager
264 VmsOperationRecorder.get().unsubscribe(layer);
276 * @param layer the layer to unsubscribe from.
281 public void unsubscribe(VmsLayer layer, int publisherId) { method in class:VmsSubscriberManager
285 VmsOperationRecorder.get().unsubscribe(layer, publisherId);
  /frameworks/support/media/src/main/java/androidx/media/
MediaBrowser2.java 254 * Unsubscribe for changes to the children of the parent, which was previously subscribed with
262 public void unsubscribe(@NonNull String parentId) { method in class:MediaBrowser2
270 // Note: don't use MediaBrowserCompat#unsubscribe(String) here, to keep the subscription
278 browser.unsubscribe(parentId, list.get(i));
579 browser.unsubscribe(mParentId, GetChildrenCallback.this);
  /hardware/interfaces/automotive/vehicle/2.0/default/common/src/
SubscriptionManager.cpp 232 void SubscriptionManager::unsubscribe(ClientId clientId, function in class:android::hardware::automotive::vehicle::V2_0::SubscriptionManager
238 ALOGW("Unable to unsubscribe: no callback found, propId: 0x%x", propId);
290 unsubscribe(clientId, propId);
VehicleHalManager.cpp 164 Return<StatusCode> VehicleHalManager::unsubscribe(const sp<IVehicleCallback>& callback, function in class:android::hardware::automotive::vehicle::V2_0::VehicleHalManager
166 mSubscriptionManager.unsubscribe(getClientId(callback), propId);
327 mHal->unsubscribe(propertyId);
  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
EmulatedVehicleHal.cpp 294 StatusCode EmulatedVehicleHal::unsubscribe(int32_t property) { function in class:android::hardware::automotive::vehicle::V2_0::impl::EmulatedVehicleHal
  /hardware/qcom/gps/msm8909w_3100/core/
SystemStatusOsObserver.cpp 213 // Send unsubscribe to framework
214 mParent->mContext.mSubscriptionObj->unsubscribe(unsubscribeList, mParent);
215 LOC_LOGD("Unsubscribe Request sent to framework for the following");
266 void SystemStatusOsObserver::unsubscribe( function in class:loc_core::SystemStatusOsObserver
303 // Send unsubscribe to framework
304 mParent->mContext.mSubscriptionObj->unsubscribe(unsubscribeList, mParent);
305 LOC_LOGD("Unsubscribe Request sent to framework for the following data items");
337 // Send unsubscribe to framework
338 mParent->mContext.mSubscriptionObj->unsubscribe(unsubscribeList, mParent);
339 LOC_LOGD("Unsubscribe Request sent to framework for the following data items")
    [all...]
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/input/
InputTestFragment.java 248 mVehicle.unsubscribe(mHalKeyEventHandler, HW_KEY_INPUT);
  /packages/services/Car/tests/carservice_test/src/com/android/car/
VmsOperationRecorderTest.java 96 mRecorder.unsubscribe(layer1);
97 assertJsonMsgEquals("{'unsubscribe':{'layer':{'type':1,'subtype':3,'version':2}}}");
197 mRecorder.unsubscribe(layer1, 99);
199 "{'unsubscribe':{'publisherId':99, 'layer':{'type':1,'subtype':3,'version':2}}}}");
VmsSubscriberManagerTest.java 223 vmsSubscriberManager.unsubscribe(SUBSCRIPTION_LAYER);
278 vmsSubscriberManager.unsubscribe(SUBSCRIPTION_LAYER, PUBLISHER_ID);
    [all...]
  /packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
MockedVehicleHal.java 207 public synchronized int unsubscribe(IVehicleCallback callback, int propId) { method in class:MockedVehicleHal
  /frameworks/support/media/src/main/java/android/support/v4/media/
MediaBrowserCompat.java 188 // To workaround an issue of {@link #unsubscribe(String, SubscriptionCallback)} on API 24
349 public void unsubscribe(@NonNull String parentId) { method in class:MediaBrowserCompat
354 mImpl.unsubscribe(parentId, null);
368 public void unsubscribe(@NonNull String parentId, @NonNull SubscriptionCallback callback) { method in class:MediaBrowserCompat
376 mImpl.unsubscribe(parentId, callback);
736 * If this is called, the subscription remains until {@link MediaBrowserCompat#unsubscribe}
748 * If this is called, the subscription remains until {@link MediaBrowserCompat#unsubscribe}
965 void unsubscribe(@NonNull String parentId, SubscriptionCallback callback); method in interface:MediaBrowserCompat.MediaBrowserImpl
1205 public void unsubscribe(@NonNull String parentId, SubscriptionCallback callback) { method in class:MediaBrowserCompat.MediaBrowserImplBase
1715 public void unsubscribe(@NonNull String parentId, SubscriptionCallback callback) { method in class:MediaBrowserCompat.MediaBrowserImplApi21
2020 public void unsubscribe(@NonNull String parentId, SubscriptionCallback callback) { method in class:MediaBrowserCompat.MediaBrowserImplApi26
    [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 89 'UNSUBSCRIBE': ('AUTH', 'SELECTED'),
781 def unsubscribe(self, mailbox): member in class:IMAP4
782 """Unsubscribe from old mailbox.
784 (typ, [data]) = <instance>.unsubscribe(mailbox)
786 return self._simple_command('UNSUBSCRIBE', mailbox)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
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...]

Completed in 1387 milliseconds

1 2 3