Home
last modified time | relevance | path

Searched refs:dc (Results 1 – 25 of 44) sorted by relevance

12

/packages/modules/Bluetooth/system/btcore/src/
Ddevice_class.cc60 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 …]
Dproperty.cc90 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/
Ddevice_class_test.cc59 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/
Ddevice_class.h37 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 …]
Dproperty.h47 bt_property_t* property_new_device_class(const bt_device_class_t* dc);
/packages/services/Telephony/src/com/android/phone/
DDiagnosticDataCollector.java76 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/
DConfigPreference.java101 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/
Dstack_btm_test.cc231 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/
Dbtm_inq.cc1283 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/
Dhelpers.h259 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/
DVideoLocalSession.java49 Log.dc(TAG, "getSessionId"); in getSessionId()
132 Log.dc(TAG, "sendHeaderExtension"); in sendHeaderExtension()
DVideoSession.java141 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()
DAudioSession.java196 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()
DTextSession.java135 Log.dc(TAG, "sendRtt: "); in sendRtt()
164 Log.dc(TAG, "handleMessage() -" + TextSessionHandler.this + ", " + msg.what); in handleMessage()
DTextLocalSession.java47 Log.dc(TAG, "getSessionId"); in getSessionId()
DTextListener.java66 Log.dc(TAG, "onMessage() -" + TextListener.this + ", event=" + event); in onMessage()
DVideoService.java118 Log.dc(LOG_TAG, "closeSession"); in closeSession()
DTextService.java116 Log.dc(LOG_TAG, "closeSession"); in closeSession()
DAudioService.java118 Log.dc(LOG_TAG, "closeSession"); in closeSession()
DVideoListener.java66 Log.dc(TAG, "onMessage() -" + VideoListener.this + ", event=" + event); in onMessage()
DJNIImsMediaService.java167 Log.dc(TAG, "sendData2Java() - sessionId=" + sessionId); in sendData2Java()
/packages/modules/ImsMedia/tests/unit/src/com/android/telephony/imsmedia/util/
DLogTest.java73 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/
DEmergencyCallDiagnosticLogger.java306 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/
DSipTransportController.java1149 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/
DVirtualMachineConfig.java712 .map(dc -> dc.toParcelable()) in toVsRawConfig()
716 .map(dc -> dc.toParcelable()) in toVsRawConfig()

12