/packages/modules/Bluetooth/system/btcore/src/ |
D | device_class.cc | 60 static bool device_class_get_major_service_(const bt_device_class_t* dc, 62 static void device_class_clr_major_service_(bt_device_class_t* dc, int bitmask); 63 static void device_class_set_major_service_(bt_device_class_t* dc, int bitmask); 65 void device_class_from_stream(bt_device_class_t* dc, const uint8_t* data) { in device_class_from_stream() argument 66 log::assert_that(dc != NULL, "assert failed: dc != NULL"); in device_class_from_stream() 68 *dc = *(bt_device_class_t*)data; in device_class_from_stream() 71 int device_class_to_stream(const bt_device_class_t* dc, uint8_t* data, in device_class_to_stream() argument 73 log::assert_that(dc != NULL, "assert failed: dc != NULL"); in device_class_to_stream() 78 data[i] = dc->_[i]; in device_class_to_stream() 83 void device_class_from_int(bt_device_class_t* dc, int data) { in device_class_from_int() argument [all …]
|
D | property.cc | 90 bt_property_t* property_new_device_class(const bt_device_class_t* dc) { in property_new_device_class() argument 91 log::assert_that(dc != NULL, "assert failed: dc != NULL"); in property_new_device_class() 92 return property_new_((void*)dc, sizeof(bt_device_class_t), in property_new_device_class()
|
/packages/modules/Bluetooth/system/btcore/test/ |
D | device_class_test.cc | 59 bt_device_class_t dc; in TEST_F() local 60 device_class_from_stream(&dc, (uint8_t*)&dc_stream[i]); in TEST_F() 62 uint8_t* to_stream = (uint8_t*)&dc; in TEST_F() 74 bt_device_class_t dc; in TEST_F() local 77 device_class_from_stream(&dc, dc_stream0); in TEST_F() 80 int rc = device_class_to_stream(&dc, dc_stream1, sizeof(dc_stream1)); in TEST_F() 84 memcpy(&val, &dc, sizeof(dc)); in TEST_F() 96 bt_device_class_t dc; in TEST_F() local 97 device_class_from_stream(&dc, dc_stream0); in TEST_F() 99 int rc = device_class_to_stream(&dc, dc_stream1, sizeof(dc_stream1)); in TEST_F() [all …]
|
/packages/modules/Bluetooth/system/btcore/include/ |
D | device_class.h | 37 void device_class_from_stream(bt_device_class_t* dc, const uint8_t* data); 42 int device_class_to_stream(const bt_device_class_t* dc, uint8_t* data, 47 void device_class_from_int(bt_device_class_t* dc, int data); 50 int device_class_to_int(const bt_device_class_t* dc); 63 int device_class_get_major_device(const bt_device_class_t* dc); 64 void device_class_set_major_device(bt_device_class_t* dc, int val); 67 int device_class_get_minor_device(const bt_device_class_t* dc); 68 void device_class_set_minor_device(bt_device_class_t* dc, int val); 72 bool device_class_get_limited(const bt_device_class_t* dc); 73 void device_class_set_limited(bt_device_class_t* dc, bool set); [all …]
|
D | property.h | 47 bt_property_t* property_new_device_class(const bt_device_class_t* dc);
|
/packages/services/Telephony/src/com/android/phone/ |
D | DiagnosticDataCollector.java | 76 public void persistEmergencyDianosticData(@NonNull DataCollectorConfig.Adapter dc, in persistEmergencyDianosticData() argument 80 persistTelephonyState(dc, tag); in persistEmergencyDianosticData() 83 persistTelecomState(dc, tag); in persistEmergencyDianosticData() 86 persistLogcat(dc, tag, ecdData.getLogcatCollectionStartTimeMillis()); in persistEmergencyDianosticData() 92 private void persistLogcat(DataCollectorConfig.Adapter dc, String tag, long logcatStartTime) { in persistLogcat() argument 97 maxLines = dc.getMaxLogcatLinesForLowMemDevice(); in persistLogcat() 99 maxLines = dc.getMaxLogcatLines(); in persistLogcat() 103 dc.getLogcatReadTimeoutMillis(), dc.getLogcatProcTimeoutMillis(), in persistLogcat() 104 tag, dc.getMaxLogcatLinesForLowMemDevice()); in persistLogcat() 108 private void persistTelecomState(DataCollectorConfig.Adapter dc, String tag) { in persistTelecomState() argument [all …]
|
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/config/ |
D | ConfigPreference.java | 101 Log.dc(LOG_TAG, "onCreate"); in onCreate() 136 Log.dc(LOG_TAG, "onResume"); in onResume() 150 Log.dc(LOG_TAG, "initPreferences"); in initPreferences() 152 Log.dc(LOG_TAG, "initPreferences, key=" + KEY_LIST_PREFERENCES[i]); in initPreferences() 164 Log.dc(LOG_TAG, "initPreferences, key=" + KEY_CHECKBOX_PREFERENCES[i]); in initPreferences() 178 Log.dc(LOG_TAG, "initPreferences, LogMode=" + mLogMode + ", DebugLogMode=" + mDebugLogMode); in initPreferences() 193 Log.dc(LOG_TAG, "onPreferenceChange: key=" + preference.getKey() + ",value=" + value); in onPreferenceChange() 215 Log.dc(LOG_TAG, "onPreferenceChange: key=" + preference.getKey() + ", value=" + value); in onPreferenceChange()
|
/packages/modules/Bluetooth/system/stack/test/btm/ |
D | stack_btm_test.cc | 231 DEV_CLASS dc; member 239 [](const RawAddress& bd_addr, DEV_CLASS dc, BD_NAME bd_name) { in TEST_F() argument 241 btm_test.dc = dc; in TEST_F() 252 ASSERT_THAT(btm_test.dc, Each(Eq(0))); in TEST_F() 260 ASSERT_THAT(btm_test.dc, Each(Eq(0))); in TEST_F()
|
/packages/modules/Bluetooth/system/stack/btm/ |
D | btm_inq.cc | 1283 DEV_CLASS dc; in btm_process_inq_results_standard() local 1310 dc[0] = response.class_of_device_.cod[2]; in btm_process_inq_results_standard() 1311 dc[1] = response.class_of_device_.cod[1]; in btm_process_inq_results_standard() 1312 dc[2] = response.class_of_device_.cod[0]; in btm_process_inq_results_standard() 1341 p_cur->dev_class[0] = dc[0]; in btm_process_inq_results_standard() 1342 p_cur->dev_class[1] = dc[1]; in btm_process_inq_results_standard() 1343 p_cur->dev_class[2] = dc[2]; in btm_process_inq_results_standard() 1404 DEV_CLASS dc; in btm_process_inq_results_rssi() local 1431 dc[0] = response.class_of_device_.cod[2]; in btm_process_inq_results_rssi() 1432 dc[1] = response.class_of_device_.cod[1]; in btm_process_inq_results_rssi() [all …]
|
/packages/modules/Bluetooth/system/main/shim/ |
D | helpers.h | 259 DEV_CLASS dc; in ToDevClass() local 260 dc[0] = cod.cod[2], dc[1] = cod.cod[1], dc[2] = cod.cod[0]; in ToDevClass() 261 return dc; in ToDevClass()
|
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/ |
D | VideoLocalSession.java | 49 Log.dc(TAG, "getSessionId"); in getSessionId() 132 Log.dc(TAG, "sendHeaderExtension"); in sendHeaderExtension()
|
D | VideoSession.java | 141 Log.dc(TAG, "setPreviewSurface: " + surface); in setPreviewSurface() 147 Log.dc(TAG, "setDisplaySurface: " + surface); in setDisplaySurface() 165 Log.dc(TAG, "requestVideoDataUsage: "); in requestVideoDataUsage() 194 Log.dc(TAG, "handleMessage() -" + VideoSessionHandler.this + ", " + msg.what); in handleMessage()
|
D | AudioSession.java | 196 Log.dc(TAG, "sendDtmf: digit=" + digit + ",duration=" + duration); in sendDtmf() 202 Log.dc(TAG, "startDtmf: digit=" + digit); in startDtmf() 208 Log.dc(TAG, "stopDtmf"); in stopDtmf() 264 Log.dc(TAG, "handleMessage() -" + AudioSessionHandler.this + ", " + msg.what); in handleMessage()
|
D | TextSession.java | 135 Log.dc(TAG, "sendRtt: "); in sendRtt() 164 Log.dc(TAG, "handleMessage() -" + TextSessionHandler.this + ", " + msg.what); in handleMessage()
|
D | TextLocalSession.java | 47 Log.dc(TAG, "getSessionId"); in getSessionId()
|
D | TextListener.java | 66 Log.dc(TAG, "onMessage() -" + TextListener.this + ", event=" + event); in onMessage()
|
D | VideoService.java | 118 Log.dc(LOG_TAG, "closeSession"); in closeSession()
|
D | TextService.java | 116 Log.dc(LOG_TAG, "closeSession"); in closeSession()
|
D | AudioService.java | 118 Log.dc(LOG_TAG, "closeSession"); in closeSession()
|
D | VideoListener.java | 66 Log.dc(TAG, "onMessage() -" + VideoListener.this + ", event=" + event); in onMessage()
|
D | JNIImsMediaService.java | 167 Log.dc(TAG, "sendData2Java() - sessionId=" + sessionId); in sendData2Java()
|
/packages/modules/ImsMedia/tests/unit/src/com/android/telephony/imsmedia/util/ |
D | LogTest.java | 73 Log.dc(TAG, LOG_TEST_MESSAGE); in debugConditional() 77 Log.dc(TAG, LOG_TEST_MESSAGE + ": debug conditional"); in debugConditional()
|
/packages/services/Telecomm/src/com/android/server/telecom/ |
D | EmergencyCallDiagnosticLogger.java | 306 int dc = removedCall.getDisconnectCause().getCode(); in maybeTriggerDiagnosticsCollection() local 317 if (dc == DisconnectCause.LOCAL in maybeTriggerDiagnosticsCollection() 324 } else if (dc != DisconnectCause.LOCAL) { in maybeTriggerDiagnosticsCollection()
|
/packages/services/Telephony/src/com/android/services/telephony/rcs/ |
D | SipTransportController.java | 1149 for (SipDelegateController dc : mDelegatePriorityQueue) { 1150 dc.setSipDialogsListener(mSipDialogsListener, true); 1177 for (SipDelegateController dc : mDelegatePriorityQueue) { 1178 dc.setSipDialogsListener(null, false);
|
/packages/modules/Virtualization/java/framework/src/android/system/virtualmachine/ |
D | VirtualMachineConfig.java | 712 .map(dc -> dc.toParcelable()) in toVsRawConfig() 716 .map(dc -> dc.toParcelable()) in toVsRawConfig()
|