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

1 2 3 4 5

  /external/tensorflow/tensorflow/contrib/data/python/ops/
stats_ops.py 88 def subscribe(self, iterator): member in class:StatsAggregator
  /external/tensorflow/tensorflow/python/framework/
subscribe.py 16 """Subscribe function."""
110 side_effects: List of side_effect functions see subscribe for details.
160 tensor: A `tf.Tensor` as returned by subscribe().
161 side_effects: List of side_effect functions, see subscribe for details.
184 """Checks if the given tensor is an identity op returned by `subscribe()`.
199 # created by subscribe().
220 it's a tensor returned by a previous call to `subscribe()` and, if so, will
226 side_effects: List of side_effect functions, see subscribe for details.
233 # If not, we cannot subscribe it, so we just return the original tensor.
297 side_effects: List of side_effect functions, see subscribe for details
309 def subscribe(tensors, side_effects): function
    [all...]
  /frameworks/support/media/api26/android/support/v4/media/
MediaBrowserCompatApi26.java 33 public static void subscribe(Object browserObj, String parentId, Bundle options, method in class:MediaBrowserCompatApi26
35 ((MediaBrowser) browserObj).subscribe(parentId, options, method
  /hardware/qcom/gps/msm8909w_3100/core/observer/
IOsObserver.h 68 inline virtual void subscribe function in class:loc_core::IOsObserver
  /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
  /packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/mockable/
MediaBrowser.java 126 * Wrapper for MediaBrowser.subscribe(String parentId, Bundle options,
129 public void subscribe(String parentId, Bundle options, SubscriptionCallback callback) { method in class:MediaBrowser
130 mDelegate.subscribe(parentId, options, callback);
134 * Wrapper for MediaBrowser.subscribe(String parentId, SubscriptionCallback callback)
136 public void subscribe(String parentId, SubscriptionCallback callback) { method in class:MediaBrowser
137 mDelegate.subscribe(parentId, callback);
  /system/netd/server/
NetlinkListener.cpp 67 expectOk(NetlinkListener::subscribe(kNetlinkMsgErrorType, rxErrorHandler));
87 Status NetlinkListener::subscribe(uint16_t type, const DispatchFn& fn) { function in class:android::net::NetlinkListener
NFLogListenerTest.cpp 59 MOCK_METHOD2(subscribe, netdutils::Status(uint16_t type, const DispatchFn& fn));
67 EXPECT_CALL(*mNLListener, subscribe(kNFLogPacketMsgType, _))
69 EXPECT_CALL(*mNLListener, subscribe(kNetlinkMsgDoneType, _))
81 void subscribe(uint16_t type, NFLogListenerInterface::DispatchFn fn) { function in class:android::net::NFLogListenerTest
84 mListener->subscribe(type, fn);
106 TEST_F(NFLogListenerTest, subscribe) {
109 subscribe(kType, dispatchFn);
115 subscribe(kType, dispatchFn);
127 subscribe(kType, dispatchFn);
139 subscribe(kType, dispatchFn)
    [all...]
NFLogListener.cpp 156 expectOk(mListener->subscribe(kNFLogPacketMsgType, rxHandler));
165 expectOk(mListener->subscribe(kNetlinkDoneMsgType, rxDoneHandler));
177 Status NFLogListener::subscribe(uint16_t nfLogGroup, const DispatchFn& fn) { function in class:android::net::NFLogListener
178 return subscribe(nfLogGroup, kDefaultPacketRange, fn);
181 Status NFLogListener::subscribe( function in class:android::net::NFLogListener
  /frameworks/base/media/java/android/media/
MediaBrowser2.java 66 * @param parentId parent id that you've specified with {@link #subscribe(String, Bundle)}
69 * you've specified with {@link #subscribe(String, Bundle)}.
162 * Subscribe to a parent id for the change in its children. When there's a change,
170 public void subscribe(@NonNull String parentId, @Nullable Bundle extras) { method in class:MediaBrowser2
176 * {@link #subscribe(String, Bundle)}.
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/
TestUtils.java 67 public boolean subscribe(short transactionId, byte subscribeId, method in class:TestUtils.MonitoredWifiAwareNativeApi
  /frameworks/base/wifi/java/android/net/wifi/aware/
WifiAwareSession.java 162 * Issue a request to the Aware service to create a new Aware subscribe discovery session, using
163 * the specified {@code subscribeConfig} configuration. The results of the subscribe
169 * is called when the subscribe session is created and provides a handle to the session.
170 * Further operations on the subscribe session can be executed on that object.
172 * subscribe operation failed.
175 * Other results of the subscribe session operations will also be routed to callbacks
176 * on the {@code callback} object. The resulting subscribe session can be modified using
180 * terminate the subscribe discovery session once it isn't needed. This will free
183 * permission to start a subscribe discovery session.
186 * configuration of the requested subscribe session
192 public void subscribe(@NonNull SubscribeConfig subscribeConfig, method in class:WifiAwareSession
    [all...]
  /packages/services/Car/service/src/com/android/car/hal/
HalClient.java 72 public void subscribe(SubscribeOptions... options) throws RemoteException { method in class:HalClient
73 mVehicle.subscribe(mInternalCallback, new ArrayList<>(Arrays.asList(options)));
  /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...]
  /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/support/media/api21/android/support/v4/media/
MediaBrowserCompatApi21.java 77 public static void subscribe( method in class:MediaBrowserCompatApi21
79 ((MediaBrowser)browserObj).subscribe(parentId, method
  /frameworks/support/paging/rxjava2/src/main/java/androidx/paging/
RxPagedListBuilder.java 277 public void subscribe(ObservableEmitter<PagedList<Value>> emitter) method in class:RxPagedListBuilder.PagingObservableOnSubscribe
282 // known that subscribe is already on fetchScheduler
  /hardware/qcom/gps/msm8909w_3100/gnss/
XtraSystemStatusObserver.cpp 144 void XtraSystemStatusObserver::subscribe(bool yes) function in class:XtraSystemStatusObserver
152 mSystemStatusObsrvr->subscribe(subItemIdList, this);
  /packages/services/Car/car-lib/src/android/car/vms/
VmsOperationRecorder.java 22 * VmsOperationRecorder.get().subscribe(layer);
45 public void subscribe(VmsLayer layer) { method in class:VmsOperationRecorder
46 recordOp("subscribe", layer);
53 public void subscribe(VmsLayer layer, int publisherId) { method in class:VmsOperationRecorder
54 recordOp("subscribe", "publisherId", publisherId, layer);
  /prebuilts/tools/common/m2/repository/org/reactivestreams/reactive-streams/1.0.0/
reactive-streams-1.0.0.jar 
  /frameworks/support/media/src/main/java/androidx/media/
MediaBrowser2.java 96 * @param parentId parent id that you've specified with {@link #subscribe(String, Bundle)}
99 * you've specified with {@link #subscribe(String, Bundle)}.
221 * Subscribe to a parent id for the change in its children. When there's a change,
229 public void subscribe(@NonNull String parentId, @Nullable Bundle extras) { method in class:MediaBrowser2
250 browser.subscribe(parentId, options, callback);
255 * {@link #subscribe(String, Bundle)}.
308 browser.subscribe(parentId, options, new GetChildrenCallback(parentId, page, pageSize));
514 // Currently no way to tell failures in MediaBrowser2#subscribe().
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
WifiAwareServiceImpl.java 342 public void subscribe(String callingPackage, int clientId, SubscribeConfig subscribeConfig, method in class:WifiAwareServiceImpl
363 Log.v(TAG, "subscribe: uid=" + uid + ", clientId=" + clientId + ", config="
367 mStateManager.subscribe(clientId, subscribeConfig, callback);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/wifiaware/testcase/
DataPathOutOfBandTestCase.java 68 * 2. Subscribe
69 * wait for results (subscribe session)
305 // 2. Subscribe
309 mWifiAwareSession.subscribe(subscribeConfig, discoveryCb, mHandler);
311 // wait for results - subscribe session
318 Log.e(TAG, "executeTestInitiator: subscribe TIMEOUT");
322 Log.e(TAG, "executeTestInitiator: subscribe ON_SESSION_CONFIG_FAILED");
329 Log.e(TAG, "executeTestInitiator: subscribe succeeded but null session returned");
333 if (DBG) Log.d(TAG, "executeTestInitiator: subscribe succeeded");
  /cts/tests/tests/media/src/android/media/cts/
MediaBrowserServiceTest.java 134 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_ROOT, mSubscriptionCallback);
153 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_ROOT, options,
168 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_CHILDREN_DELAYED,
209 mMediaBrowser.subscribe(StubMediaBrowserService.MEDIA_ID_ROOT, mSubscriptionCallback);

Completed in 533 milliseconds

1 2 3 4 5