Home
last modified time | relevance | path

Searched refs:publish (Results 1 – 25 of 56) sorted by relevance

123

/frameworks/native/include/binder/
DBinderService.h37 static status_t publish(bool allowIsolated = false,
47 publish(allowIsolated, dumpFlags);
51 static void instantiate() { publish(); } in instantiate()
/frameworks/native/libs/binder/include/binder/
DBinderService.h37 static status_t publish(bool allowIsolated = false,
47 publish(allowIsolated, dumpFlags);
51 static void instantiate() { publish(); } in instantiate()
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/aware/
DWifiAwareServiceImplTest.java259 mDut.publish(mPackageName, clientId, publishConfig, mSessionCallbackMock); in testFailOnAccessClientIdFromWrongUid()
261 verify(mAwareStateManagerMock).publish(clientId, publishConfig, mSessionCallbackMock); in testFailOnAccessClientIdFromWrongUid()
279 mDut.publish(mPackageName, clientId, publishConfig, mockCallback); in testFailOnPublishRangingWithoutRttFeature()
363 mDut.publish(mPackageName, clientId, publishConfig, mockCallback); in testPublish()
365 verify(mAwareStateManagerMock).publish(clientId, publishConfig, mockCallback); in testPublish()
644 mDut.publish(mPackageName, clientId, publishConfig, mockCallback); in doBadPublishConfiguration()
646 verify(mAwareStateManagerMock).publish(clientId, publishConfig, mockCallback); in doBadPublishConfiguration()
DWifiAwareStateManagerTest.java684 mDut.publish(clientId, publishConfig, mockSessionCallback); in testHalNoResponseTimeout()
686 inOrder.verify(mMockNative).publish(anyShort(), eq((byte) 0), eq(publishConfig)); in testHalNoResponseTimeout()
695 mDut.publish(clientId, publishConfig, mockSessionCallback); in testHalNoResponseTimeout()
697 inOrder.verify(mMockNative).publish(transactionId.capture(), eq((byte) 0), in testHalNoResponseTimeout()
748 mDut.publish(clientId, publishConfig, mockSessionCallback); in testPublishFail()
750 inOrder.verify(mMockNative).publish(transactionId.capture(), eq((byte) 0), in testPublishFail()
761 when(mMockNative.publish(anyShort(), anyByte(), any())).thenReturn(false); in testPublishFail()
763 mDut.publish(clientId, publishConfig, mockSessionCallback); in testPublishFail()
765 inOrder.verify(mMockNative).publish(transactionId.capture(), eq((byte) 0), in testPublishFail()
819 mDut.publish(clientId, publishConfig, mockSessionCallback); in testPublishSuccessTerminated()
[all …]
DTestUtils.java62 public boolean publish(short transactionId, byte publishId, PublishConfig publishConfig) { in publish() method in TestUtils.MonitoredWifiAwareNativeApi
DWifiAwareNativeApiTest.java357 mDut.publish(tid, pid, pubDefault); in testDiscoveryRangingSettings()
358 mDut.publish(tid, pid, pubWithRanging); in testDiscoveryRangingSettings()
/frameworks/base/core/java/com/android/internal/logging/
DAndroidHandler.java146 public void publish(LogRecord record) { in publish() method in AndroidHandler
161 public void publish(Logger source, String tag, Level level, String message) { in publish() method in AndroidHandler
/frameworks/base/wifi/java/android/net/wifi/aware/
DWifiAwareSession.java146 public void publish(@NonNull PublishConfig publishConfig, in publish() method in WifiAwareSession
157 mgr.publish(mClientId, (handler == null) ? Looper.getMainLooper() : handler.getLooper(), in publish()
DIWifiAwareManager.aidl45 void publish(in String callingPackage, int clientId, in PublishConfig publishConfig, in publish() method
DWifiAwareManager.java293 public void publish(int clientId, Looper looper, PublishConfig publishConfig, in publish() method in WifiAwareManager
302 mService.publish(mContext.getOpPackageName(), clientId, publishConfig, in publish()
/frameworks/base/cmds/idmap2/idmap2d/
DMain.cpp39 status_t ret = BinderService<Idmap2Service>::publish(); in main()
/frameworks/base/wifi/tests/src/android/net/wifi/aware/
DWifiAwareManagerTest.java180 session.publish(publishConfig, mockSessionCallback, mMockLooperHandler); in testConnectFlow()
181 inOrder.verify(mockAwareService).publish(any(), eq(clientId), eq(publishConfig), any()); in testConnectFlow()
188 session.publish(new PublishConfig.Builder().build(), mockSessionCallback, in testConnectFlow()
315 session.publish(publishConfig, mockSessionCallback, mMockLooperHandler); in testPublishFlow()
316 inOrder.verify(mockAwareService).publish(any(), eq(clientId), eq(publishConfig), in testPublishFlow()
407 session.publish(publishConfig, mockSessionCallback, mMockLooperHandler); in testPublishRemoteTerminate()
408 inOrder.verify(mockAwareService).publish(any(), eq(clientId), eq(publishConfig), in testPublishRemoteTerminate()
953 session.publish(publishConfig, mockSessionCallback, mMockLooperHandler); in testNetworkSpecifierWithClient()
954 inOrder.verify(mockAwareService).publish(any(), eq(clientId), eq(publishConfig), in testNetworkSpecifierWithClient()
1250 session.publish(publishConfig, mockSessionCallback, mMockLooperHandler); in executeNetworkSpecifierWithClient()
[all …]
/frameworks/wilhelm/include/SLES/
DNOTICE6 rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
/frameworks/native/opengl/include/EGL/
DNOTICE6 without limitation the rights to use, copy, modify, merge, publish,
/frameworks/native/opengl/include/KHR/
DNOTICE6 without limitation the rights to use, copy, modify, merge, publish,
/frameworks/wilhelm/include/OMXAL/
DNOTICE6 without limitation the rights to use, copy, modify, merge, publish,
/frameworks/base/services/core/jni/
Dcom_android_server_SystemServer.cpp52 SensorService::publish(false /* allowIsolated */, in android_server_SystemServer_startSensorService()
/frameworks/native/opengl/include/GLES2/
DNOTICE20 without limitation the rights to use, copy, modify, merge, publish,
/frameworks/native/opengl/include/GLES/
DNOTICE20 without limitation the rights to use, copy, modify, merge, publish,
/frameworks/native/vulkan/api/
Dplatform.api6 // without limitation the rights to use, copy, modify, merge, publish,
/frameworks/native/opengl/include/GLES3/
DNOTICE23 without limitation the rights to use, copy, modify, merge, publish,
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/aware/
DWifiAwareServiceImpl.java293 public void publish(String callingPackage, int clientId, PublishConfig publishConfig, in publish() method in WifiAwareServiceImpl
318 mStateManager.publish(clientId, publishConfig, callback); in publish()
DWifiAwareDiscoverySessionState.java160 boolean success = mWifiAwareNativeApi.publish(transactionId, mPubSubId, config); in updatePublish()
/frameworks/compile/mclinker/
DLICENSE.TXT19 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
/frameworks/native/cmds/dumpstate/
DDumpstateService.cpp74 status_t ret = BinderService<DumpstateService>::publish(); in Start()

123