/packages/modules/Bluetooth/system/audio_hal_interface/aidl/ |
D | provider_info.cc | 44 SessionType sessionType) { in GetProviderInfo() argument 45 auto provider_info = BluetoothAudioClientInterface::GetProviderInfo(sessionType); in GetProviderInfo() 52 return std::make_unique<ProviderInfo>(sessionType, std::move(codecInfos)); in GetProviderInfo() 55 ProviderInfo::ProviderInfo(SessionType sessionType, std::vector<CodecInfo> codecs) in ProviderInfo() argument 63 if (sessionType == SessionType::HFP_HARDWARE_OFFLOAD_DATAPATH || in ProviderInfo() 64 sessionType == SessionType::HFP_SOFTWARE_ENCODING_DATAPATH || in ProviderInfo() 65 sessionType == SessionType::HFP_SOFTWARE_DECODING_DATAPATH) { in ProviderInfo()
|
D | transport_instance.h | 39 IBluetoothTransportInstance(SessionType sessionType, AudioConfiguration audioConfig) in IBluetoothTransportInstance() argument 40 : session_type_(sessionType), audio_config_(std::move(audioConfig)) {} in IBluetoothTransportInstance() 106 IBluetoothSinkTransportInstance(SessionType sessionType, AudioConfiguration audioConfig) in IBluetoothSinkTransportInstance() argument 107 : IBluetoothTransportInstance{sessionType, audioConfig} {} in IBluetoothSinkTransportInstance() 118 IBluetoothSourceTransportInstance(SessionType sessionType, AudioConfiguration audioConfig) in IBluetoothSourceTransportInstance() argument 119 : IBluetoothTransportInstance{sessionType, audioConfig} {} in IBluetoothSourceTransportInstance()
|
D | hfp_client_interface_aidl.h | 75 SessionType sessionType); 90 HfpDecodingTransport(SessionType sessionType); 130 HfpEncodingTransport(SessionType sessionType);
|
D | provider_info.h | 33 static std::unique_ptr<ProviderInfo> GetProviderInfo(SessionType sessionType); 35 ProviderInfo(SessionType sessionType, std::vector<CodecInfo> codecs);
|
D | hfp_client_interface_aidl.cc | 94 SessionType sessionType) { in GetHfpScoConfig() argument 95 auto providerInfo = ::bluetooth::audio::aidl::ProviderInfo::GetProviderInfo(sessionType); in GetHfpScoConfig()
|
/packages/modules/Uwb/ranging/service/java/com/android/server/ranging/metrics/ |
D | SessionMetricsLogger.java | 44 @RangingConfig.RangingSessionType int sessionType, in startLogging() argument 48 return new SessionMetricsLogger(sessionHandle, deviceRole, sessionType, attributionSource, in startLogging() 55 @RangingConfig.RangingSessionType int sessionType, in SessionMetricsLogger() argument 61 mSessionType = sessionType; in SessionMetricsLogger() 63 sessionType == RANGING_SESSION_RAW in SessionMetricsLogger()
|
/packages/modules/Bluetooth/system/audio_hal_interface/hidl/ |
D | client_interface_hidl.h | 87 IBluetoothTransportInstance(SessionType sessionType, AudioConfiguration audioConfig) in IBluetoothTransportInstance() argument 88 : session_type_(sessionType), in IBluetoothTransportInstance() 139 IBluetoothSinkTransportInstance(SessionType sessionType, AudioConfiguration audioConfig) in IBluetoothSinkTransportInstance() argument 140 : IBluetoothTransportInstance{sessionType, audioConfig} {} in IBluetoothSinkTransportInstance() 152 IBluetoothSourceTransportInstance(SessionType sessionType, AudioConfiguration audioConfig) in IBluetoothSourceTransportInstance() argument 153 : IBluetoothTransportInstance{sessionType, audioConfig} {} in IBluetoothSourceTransportInstance()
|
D | a2dp_encoding_hidl.cc | 100 A2dpTransport(SessionType sessionType) in A2dpTransport() argument 101 : IBluetoothSinkTransportInstance(sessionType, (AudioConfiguration){}), in A2dpTransport()
|
/packages/modules/Uwb/indev_uwb_adaptation/java/com/android/server/uwb/indev/ |
D | UwbServiceCore.java | 152 public boolean initSession(int sessionId, byte sessionType, Params appConfigParams) { in initSession() argument 153 return nativeInitSession(sessionId, sessionType, appConfigParams); in initSession() 252 private native boolean nativeInitSession(int sessionId, byte sessionType, in nativeInitSession() argument
|
/packages/modules/HealthFitness/framework/java/android/health/connect/datatypes/ |
D | ExerciseSessionType.java | 368 public static boolean isKnownSessionType(int sessionType) { in isKnownSessionType() argument 369 if (sessionType < 0) { in isKnownSessionType() 373 return VALID_TYPES.contains(sessionType); in isKnownSessionType()
|
/packages/modules/HealthFitness/framework/java/android/health/connect/datatypes/validation/ |
D | ExerciseSessionTypesValidation.java | 282 int sessionType, List<ExerciseSegment> segments) { in validateSessionAndSegmentsTypes() argument 283 if (!isKnownSessionType(sessionType)) { in validateSessionAndSegmentsTypes() 284 Slog.w(TAG, "Unknown exercise session type: " + sessionType); in validateSessionAndSegmentsTypes() 298 if (!UNIVERSAL_SESSIONS.contains(sessionType)) { in validateSessionAndSegmentsTypes() 303 if (!(SESSION_TO_SEGMENT_MAPPING.containsKey(sessionType) in validateSessionAndSegmentsTypes() 304 && SESSION_TO_SEGMENT_MAPPING.get(sessionType).contains(segmentType))) { in validateSessionAndSegmentsTypes()
|
/packages/modules/Connectivity/framework/src/android/net/ |
D | QosSession.java | 91 public QosSession(final int sessionId, @QosSessionType final int sessionType) { in QosSession() argument 94 mSessionType = sessionType; in QosSession()
|
/packages/modules/Bluetooth/system/audio_hal_interface/fuzzer/ |
D | libbt_audio_hal_client_interface_fuzzer.cpp | 346 SessionType sessionType; in process() local 355 sessionType = mFdp->PickValueInArray(kSessionTypes); in process() 356 mTestSinkTransport = new TestSinkTransport(sessionType); in process() 357 mTestSourceTransport = new TestSourceTransport(sessionType); in process() 383 if ((!isSessionType_2_1) && (sessionType == SessionType::A2DP_HARDWARE_OFFLOAD_DATAPATH)) { in process() 417 mClientIfSink->GetAudioCapabilities(sessionType); in process()
|
D | README.md | 14 3. Session Type (parameter name: `sessionType`) 38 | `sessionType` | 0.`SessionType::UNKNOWN` 1.`SessionType::A2DP_SOFTWARE_ENCODING_DATAPATH` 2.`Sess…
|
/packages/modules/Bluetooth/system/audio_hal_interface/aidl/a2dp/ |
D | transport_instance.h | 41 IBluetoothTransportInstance(SessionType sessionType, AudioConfiguration audioConfig) in IBluetoothTransportInstance() argument 42 : session_type_(sessionType), audio_config_(std::move(audioConfig)) {} in IBluetoothTransportInstance()
|
D | a2dp_encoding_aidl.cc | 65 A2dpTransport(SessionType sessionType); 133 A2dpTransport::A2dpTransport(SessionType sessionType) in A2dpTransport() argument 134 : IBluetoothTransportInstance(sessionType, (AudioConfiguration){}), in A2dpTransport()
|
/packages/modules/Uwb/service/java/com/android/server/uwb/ |
D | UwbServiceCore.java | 656 int sessionType = 0; in openRanging() local 683 sessionType = firaOpenSessionParams.getSessionType(); in openRanging() 685 (byte) sessionType, firaOpenSessionParams.getProtocolName(), in openRanging() 699 sessionType = cccOpenRangingParams.getSessionType(); in openRanging() 701 (byte) sessionType, cccOpenRangingParams.getProtocolName(), in openRanging() 716 sessionType = aliroOpenRangingParams.getSessionType(); in openRanging() 718 (byte) sessionType, aliroOpenRangingParams.getProtocolName(), in openRanging() 724 sessionType = radarOpenSessionParams.getSessionType(); in openRanging() 726 (byte) sessionType, radarOpenSessionParams.getProtocolName(), in openRanging() 732 sessionType = rfTestOpenSessionParams.getSessionType(); in openRanging() [all …]
|
D | UwbSessionManager.java | 675 SessionHandle sessionHandle, int sessionId, byte sessionType, String protocolName, in initSession() argument 679 + ", sessionType: " + sessionType); in initSession() 681 sessionType, protocolName, params, rangingCallbacks, chipId); in initSession() 790 int sessionId, byte sessionType, String protocolName, Params params, in createUwbSession() argument 792 return new UwbSession(attributionSource, sessionHandle, sessionId, sessionType, in createUwbSession() 1589 int sessionType = uwbSession.getSessionType(); in handleSetHybridSessionControllerConfiguration() local 1592 || UwbUciConstants.SESSION_TYPE_HUS_PRIMARY_SESSION != sessionType) { in handleSetHybridSessionControllerConfiguration() 1595 + scheduleMode + " sessionType: " + sessionType); in handleSetHybridSessionControllerConfiguration() 1690 int sessionType = uwbSession.getSessionType(); in handleSetHybridSessionControleeConfiguration() local 1693 || UwbUciConstants.SESSION_TYPE_HUS_PRIMARY_SESSION != sessionType) { in handleSetHybridSessionControleeConfiguration() [all …]
|
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/ |
D | ImsMediaController.java | 61 final int sessionType, final RtpConfig rtpConfig, final IBinder callback) { in openSession() argument 66 + ", type=" + sessionType + "," + Log.hidePii(String.valueOf(rtpConfig))); in openSession() 68 switch (sessionType) { in openSession()
|
/packages/modules/ImsMedia/framework/src/android/telephony/imsmedia/ |
D | ImsMediaManager.java | 75 @NonNull final @ImsMediaSession.SessionType int sessionType, in openSession() argument 83 ParcelFileDescriptor.fromDatagramSocket(rtcpSocket), sessionType, in openSession() local
|
D | IImsMedia.aidl | 32 int sessionType, in openSession() argument
|
/packages/modules/Uwb/service/java/com/android/server/uwb/jni/ |
D | NativeUwbManager.java | 218 public byte initSession(int sessionId, byte sessionType, String chipId) { in initSession() argument 220 return nativeSessionInit(sessionId, sessionType, chipId); in initSession() 647 private native byte nativeSessionInit(int sessionId, byte sessionType, String chipId); in nativeSessionInit() argument
|
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/ |
D | IkeSessionTestBase.java | 250 protected void verifyMetricsLogged(int sessionType, int stateCode, int exceptionCode) { in verifyMetricsLogged() argument 253 IkeMetrics.IKE_CALLER_UNKNOWN, sessionType, stateCode, exceptionCode); in verifyMetricsLogged()
|
/packages/modules/Uwb/service/support_lib/src/com/google/uwb/support/radar/ |
D | RadarOpenSessionParams.java | 74 @SessionType int sessionType, in RadarOpenSessionParams() argument 90 mSessionType = sessionType; in RadarOpenSessionParams()
|
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/ |
D | UwbConfigurationManagerTest.java | 251 int sessionType = SESSION_TYPE_RANGING; in getFiraParams() local 315 .setSessionType(sessionType) in getFiraParams()
|