HomeSort by relevance Sort by last modified time
    Searched refs:subscribe (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /packages/services/Car/car-lib/src/android/car/app/menu/
CarMenuCallbacks.java 40 public abstract void subscribe(String parentId, SubscriptionCallbacks callback); method in class:CarMenuCallbacks
  /frameworks/support/media-compat/api24/android/support/v4/media/
MediaBrowserCompatApi24.java 32 public static void subscribe(Object browserObj, String parentId, Bundle options, method in class:MediaBrowserCompatApi24
34 ((MediaBrowser) browserObj).subscribe(parentId, options, method
  /hardware/interfaces/automotive/vehicle/2.0/
IVehicle.hal 71 * Clients must be able to subscribe to multiple properties at a time
75 * @param options List of options to subscribe. SubscribeOption contains
78 subscribe(IVehicleCallback callback, vec<SubscribeOptions> options)
  /prebuilts/tools/common/m2/repository/org/reactivestreams/reactive-streams/1.0.0/
reactive-streams-1.0.0.jar 
  /external/ltp/utils/sctp/func_tests/
test_sctp_sendrecvmsg.c 83 struct sctp_event_subscribe subscribe; local
133 memset(&subscribe, 0, sizeof(subscribe));
134 subscribe.sctp_data_io_event = 1;
135 subscribe.sctp_association_event = 1;
136 subscribe.sctp_send_failure_event = 1;
137 test_setsockopt(sk1, SCTP_EVENTS, &subscribe, sizeof(subscribe));
138 test_setsockopt(sk2, SCTP_EVENTS, &subscribe, sizeof(subscribe));
    [all...]
test_timetolive.c 109 struct sctp_event_subscribe subscribe; local
161 memset(&subscribe, 0, sizeof(subscribe));
162 subscribe.sctp_data_io_event = 1;
163 subscribe.sctp_association_event = 1;
164 subscribe.sctp_send_failure_event = 1;
165 test_setsockopt(sk1, SCTP_EVENTS, &subscribe, sizeof(subscribe));
166 test_setsockopt(sk2, SCTP_EVENTS, &subscribe, sizeof(subscribe));
    [all...]
test_sockopt.c 87 struct sctp_event_subscribe subscribe; local
298 optlen = sizeof(subscribe);
299 test_getsockopt(udp_svr_sk, SCTP_EVENTS, &subscribe, &optlen);
302 optlen = sizeof(subscribe);
303 test_getsockopt(udp_clt_sk, SCTP_EVENTS, &subscribe, &optlen);
308 memset(&subscribe, 0, sizeof(struct sctp_event_subscribe));
309 test_setsockopt(udp_svr_sk, SCTP_EVENTS, &subscribe,
310 sizeof(subscribe));
311 test_setsockopt(udp_clt_sk, SCTP_EVENTS, &subscribe,
312 sizeof(subscribe));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/pulse/
pulseaudio.h 32 #include <pulse/subscribe.h>
52 * context.h, \ref stream.h, \ref introspect.h, \ref subscribe.h, \ref
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/pulse/
pulseaudio.h 33 #include <pulse/subscribe.h>
53 * context.h, \ref stream.h, \ref introspect.h, \ref subscribe.h, \ref
  /external/ltp/utils/sctp/testlib/
sctputil.c 334 struct sctp_event_subscribe subscribe; local
336 memset(&subscribe, 0, sizeof(subscribe));
337 subscribe.sctp_data_io_event = 1;
338 subscribe.sctp_association_event = 1;
339 test_setsockopt(fd, SCTP_EVENTS, (char *)&subscribe,
340 sizeof(subscribe));
  /frameworks/base/wifi/java/android/net/wifi/aware/
IWifiAwareManager.aidl 47 void subscribe(int clientId, in SubscribeConfig subscribeConfig,
WifiAwareSession.java 142 * Issue a request to the Aware service to create a new Aware subscribe discovery session, using
143 * the specified {@code subscribeConfig} configuration. The results of the subscribe
149 * is called when the subscribe session is created and provides a handle to the session.
150 * Further operations on the subscribe session can be executed on that object.
152 * subscribe operation failed.
155 * Other results of the subscribe session operations will also be routed to callbacks
156 * on the {@code callback} object. The resulting subscribe session can be modified using
160 * terminate the subscribe discovery session once it isn't needed. This will free
163 * permission to start a subscribe discovery session.
166 * configuration of the requested subscribe session
172 public void subscribe(@NonNull SubscribeConfig subscribeConfig, method in class:WifiAwareSession
    [all...]
  /frameworks/support/media-compat/api21/android/support/v4/media/
MediaBrowserCompatApi21.java 76 public static void subscribe( method in class:MediaBrowserCompatApi21
78 ((MediaBrowser)browserObj).subscribe(parentId, method
  /hardware/interfaces/automotive/vehicle/2.1/default/
service.cpp 64 Return<StatusCode> subscribe(const sp<V2_0::IVehicleCallback>& callback,
67 return mVehicle20->subscribe(callback, options);
  /hardware/libhardware/tests/vehicle/
vehicle_tests.cpp 69 // Test the workflows for subscribe and init/release.
70 // Subscribe will return error before init() is called or after release() is
96 // Test that subscribe works.
100 // If the device is not init subscribe should fail off the bat.
101 int ret_code = vehicle_device()->subscribe(vehicle_device(), VEHICLE_PROPERTY_DRIVING_STATUS,
109 // Subscribe should now go through.
110 ret_code = vehicle_device()->subscribe(vehicle_device(), VEHICLE_PROPERTY_DRIVING_STATUS, 0, 0);
  /hardware/interfaces/automotive/vehicle/2.0/default/common/include/vhal_v2_0/
VehicleHal.h 50 * Subscribe to HAL property events. This method might be called multiple
54 * @param property to subscribe
60 virtual StatusCode subscribe(int32_t property,
VehicleHalManager.h 70 Return<StatusCode> subscribe(const sp<IVehicleCallback>& callback,
  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
EmulatedVehicleHal.h 59 StatusCode subscribe(int32_t property, int32_t areas, float sampleRate) override;
  /cts/tests/tests/media/src/android/media/cts/
MediaBrowserTest.java 116 // Test subscribe.
118 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_ROOT, mSubscriptionCallback);
182 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_ROOT, mSubscriptionCallback);
224 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_ROOT, options,
267 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_INVALID, mSubscriptionCallback);
288 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_INVALID, options,
309 // Subscribe four pages, one item per page.
317 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_ROOT, options, callback);
355 // Subscribe four pages, one item per page.
363 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_ROOT, options, callback)
    [all...]
MediaBrowserServiceTest.java 125 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_ROOT, mSubscriptionCallback);
144 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_ROOT, options,
159 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_CHILDREN_DELAYED,
  /packages/services/Car/evs/app/
evs_app.cpp 108 StatusCode status = pVnet->subscribe(pEvsListener, options);
  /frameworks/support/media-compat/tests/src/android/support/v4/media/
MediaBrowserCompatTest.java 182 // Test subscribe.
184 mMediaBrowser.subscribe(
261 mMediaBrowser.subscribe(
307 mMediaBrowser.subscribe(StubMediaBrowserServiceCompat.MEDIA_ID_ROOT, options,
355 mMediaBrowser.subscribe(StubMediaBrowserServiceCompat.MEDIA_ID_INVALID,
376 mMediaBrowser.subscribe(StubMediaBrowserServiceCompat.MEDIA_ID_INVALID, options,
397 // Subscribe four pages, one item per page.
405 mMediaBrowser.subscribe(StubMediaBrowserServiceCompat.MEDIA_ID_ROOT, options,
444 // Subscribe four pages, one item per page.
452 mMediaBrowser.subscribe(StubMediaBrowserServiceCompat.MEDIA_ID_ROOT, options
    [all...]
  /hardware/interfaces/automotive/vehicle/2.0/default/tests/
VehicleHalManager_test.cpp 107 StatusCode subscribe(int32_t /* property */,
250 StatusCode res = manager->subscribe(cb, options);
256 TEST_F(VehicleHalManagerTest, subscribe) {
268 StatusCode res = manager->subscribe(cb, options);
309 StatusCode res = manager->subscribe(cb, options);
310 // Unable to subscribe on Hal Events for write-only properties.
316 res = manager->subscribe(cb, options);
317 // OK to subscribe on SET method call for write-only properties.
  /packages/services/Car/car-ui-provider/src/android/car/ui/provider/
DrawerController.java 204 subscribe(id);
247 subscribe(mSubscriptionIds.peek());
347 // will subscribe to that menu id, set the title appropriately, and properly handle the
390 private void subscribe(String id) { method in class:DrawerController
392 mCarMenuCallbacks.subscribe(id, mSubscriptionCallbacks);
408 subscribe(mSubscriptionIds.peek());
441 subscribe(mRootId);
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/
WifiAwareStateManagerTest.java 135 when(mMockNative.subscribe(anyShort(), anyInt(), any()))
    [all...]

Completed in 1214 milliseconds

1 2 3 4 5