/packages/apps/Messaging/src/com/android/messaging/datamodel/data/ |
D | ParticipantData.java | 130 final ParticipantData pd = new ParticipantData(); in getFromCursor() local 131 pd.mParticipantId = cursor.getString(ParticipantsQuery.INDEX_ID); in getFromCursor() 132 pd.mSubId = cursor.getInt(ParticipantsQuery.INDEX_SUB_ID); in getFromCursor() 133 pd.mSlotId = cursor.getInt(ParticipantsQuery.INDEX_SIM_SLOT_ID); in getFromCursor() 134 pd.mNormalizedDestination = cursor.getString( in getFromCursor() 136 pd.mSendDestination = cursor.getString(ParticipantsQuery.INDEX_SEND_DESTINATION); in getFromCursor() 137 pd.mDisplayDestination = cursor.getString(ParticipantsQuery.INDEX_DISPLAY_DESTINATION); in getFromCursor() 138 pd.mContactDestination = cursor.getString(ParticipantsQuery.INDEX_CONTACT_DESTINATION); in getFromCursor() 139 pd.mFullName = cursor.getString(ParticipantsQuery.INDEX_FULL_NAME); in getFromCursor() 140 pd.mFirstName = cursor.getString(ParticipantsQuery.INDEX_FIRST_NAME); in getFromCursor() [all …]
|
/packages/modules/Bluetooth/system/stack/include/ |
D | bt_dev_class.h | 106 #define BTM_COD_MINOR_CLASS(u8, pd) \ argument 107 { (u8) = (pd)[2] & BTM_COD_MINOR_CLASS_MASK; } 108 #define BTM_COD_MAJOR_CLASS(u8, pd) \ argument 109 { (u8) = (pd)[1] & BTM_COD_MAJOR_CLASS_MASK; } 110 #define BTM_COD_SERVICE_CLASS(u16, pd) \ argument 112 (u16) = (pd)[0]; \ 114 (u16) += (pd)[1] & 0xE0; \ 118 #define FIELDS_TO_COD(pd, mn, mj, sv) \ argument 120 (pd)[2] = mn; \ 121 (pd)[1] = (mj) + ((sv)&BTM_COD_SERVICE_CLASS_LO_B); \ [all …]
|
/packages/modules/NetworkStack/src/android/net/dhcp6/ |
D | Dhcp6Client.java | 543 final PrefixDelegation pd = new PrefixDelegation(IAID, 0 /* t1 */, 0 /* t2 */, in sendPacket() local 545 return sendSolicitPacket(transId, elapsedTimeMs, pd.build()); in sendPacket() 550 final PrefixDelegation pd = packet.mPrefixDelegation; in receivePacket() local 553 if (pd.statusCode == Dhcp6Packet.STATUS_NO_PREFIX_AVAIL) { in receivePacket() 558 Log.d(TAG, "Get prefix delegation option from Advertise: " + pd); in receivePacket() 559 mAdvertise = pd; in receivePacket() 569 Log.d(TAG, "Get prefix delegation option from RapidCommit Reply: " + pd); in receivePacket() 570 mReply = pd; in receivePacket() 596 final PrefixDelegation pd = packet.mPrefixDelegation; in receivePacket() 597 if (pd.statusCode == Dhcp6Packet.STATUS_NO_PREFIX_AVAIL) { in receivePacket() [all …]
|
D | Dhcp6Packet.java | 447 PrefixDelegation pd = null; in decode() local 492 pd = PrefixDelegation.decode(ByteBuffer.wrap(iapd)); in decode() 561 if (pd != null) { in decode() 562 newPacket.mPrefixDelegation = pd; in decode() 563 newPacket.mIaId = pd.iaid; in decode()
|
/packages/services/Telephony/src/com/android/phone/ |
D | PhoneUtils.java | 284 ProgressDialog pd = new ProgressDialog(context, THEME); in displayMMIInitiate() local 285 pd.setMessage(context.getText(R.string.ussdRunning)); in displayMMIInitiate() 286 pd.setCancelable(false); in displayMMIInitiate() 287 pd.setIndeterminate(true); in displayMMIInitiate() 288 pd.getWindow().addFlags(WindowManager.LayoutParams.FLAG_DIM_BEHIND); in displayMMIInitiate() 290 pd.show(); in displayMMIInitiate() 292 return pd; in displayMMIInitiate() 371 ProgressDialog pd = new ProgressDialog(app, THEME); in displayMMIComplete() local 372 pd.setTitle(title); in displayMMIComplete() 373 pd.setMessage(text); in displayMMIComplete() [all …]
|
/packages/services/Car/car_product/car_ui_portrait/apps/CarUiPortraitSystemUI/src/com/android/systemui/wm/ |
D | CarUiPortraitDisplaySystemBarsController.java | 94 CarUiPortraitPerDisplay pd = new CarUiPortraitPerDisplay(displayId); in onDisplayAdded() local 95 pd.register(); in onDisplayAdded() 107 mCarUiPerDisplaySparseArray.put(displayId, pd); in onDisplayAdded() 112 CarUiPortraitPerDisplay pd = mCarUiPerDisplaySparseArray.get(displayId); in onDisplayRemoved() local 113 pd.unregister(); in onDisplayRemoved()
|
/packages/apps/Car/SystemUI/src/com/android/systemui/wm/ |
D | DisplaySystemBarsController.java | 123 PerDisplay pd = new PerDisplay(displayId); in onDisplayAdded() local 124 pd.register(); in onDisplayAdded() 136 mPerDisplaySparseArray.put(displayId, pd); in onDisplayAdded() 141 PerDisplay pd = mPerDisplaySparseArray.get(displayId); in onDisplayRemoved() local 142 pd.unregister(); in onDisplayRemoved()
|
/packages/modules/Connectivity/netbpfload/ |
D | loader.cpp | 401 static int readProgDefs(ifstream& elfFile, vector<struct bpf_prog_def>& pd, in readProgDefs() argument 414 pd.resize(progCount); in readProgDefs() 418 for (auto& p : pd) { in readProgDefs() 485 vector<struct bpf_prog_def> pd; in readCodeSections() local 486 ret = readProgDefs(elfFile, pd, sizeOfBpfProgDef); in readCodeSections() 490 if (!pd.empty() && ret) return ret; in readCodeSections() 524 cs_temp.prog_def = pd[i]; in readCodeSections()
|
/packages/modules/NetworkStack/tests/integration/common/android/net/ip/ |
D | IpClientIntegrationTestCommon.java | 4973 final PrefixDelegation pd = new PrefixDelegation(packet.getIaId(), t1, t2, ipos); 4974 iapd = pd.build(); 5289 final PrefixDelegation pd = new PrefixDelegation(packet.getIaId(), 3600 /* t1 */, 5291 final ByteBuffer iapd = pd.build(); 5327 final PrefixDelegation pd = new PrefixDelegation(packet.getIaId(), 3600 /* t1 */, 5329 final ByteBuffer iapd = pd.build(); 5363 final PrefixDelegation pd = new PrefixDelegation(packet.getIaId(), 3600 /* t1 */, 5365 final ByteBuffer iapd = pd.build(); 5393 final PrefixDelegation pd = new PrefixDelegation(packet.getIaId(), 3600 /* t1 */, 5395 final ByteBuffer iapd = pd.build(); [all …]
|
/packages/apps/DocumentsUI/tests/res/raw/ |
D | images_tar | 488 …���kƉs�A�̺�D��y���z�21�ק |����څ�Zqbk�2��N�������A�A#��|Ж�:���e�ھ�pd�܈Q~\��b���/[˻�gi!��… 1218 …�mt�'���梻��,q�=��RjR��lÒU P:R݃w������?-��r����n���̂g!�k.����E�Y�pd��8��E�2c��U66�W+iV… 1934 �f����O���I���/�Y�멌�'���ʧ��%�y<Gp��l�ǿR/�nm;�vҀ�ຒpvc~5Ka�=n>�öpd�@�>T�k^�3�$;�@8�p@����… 4702 …W�dAS�2pE0�˒s���ւN�9@�$��b�� -�s�� R��>\�A��}�X��g�c��`e�UAܓҁ�pd�O�x�d��+��p:1��RO#�… 5298 …K�g���z@3z��/Ӧi��sD���s�j�bmfS�j6�1�FO�AH�l�d9��8�ȭ���M,�/!�pd��]���q,,T�� !s��Lc… 6174 $���rr@��J�ѵpd�h��>��>���k����M������]x�?�O�r:�mJ$v�hJ�������|Uq�ܧ�ٚB�Z0��_R1��ZL��w�i… 6277 …�ْ�H�>@�0ߟJ����vp���g���E�P8W��@�]�����'��_%�8�pGP?�^��������+��#pd�8�pz�\���=��jm������… 7009 …G����K�Xɏ.�$�gV�Xv��O\�Ƹ=W��Ę>"����K�����u(�;�py�>��xᯉ�/}��{m�pd&EH���z:g�t��Xr�z��… 7514 ���1lQ֭D��P`�sںodsH�p��������q��{Q!A!����h.�ˀ���3�h ��9�ZoH#�&���Ө�NW-�g�ژ��!��(pd��… 7674 y{�0t^Pr�q��֙�kr5���n��>���+'.VhӒ:]W�4�Ӥ:U��pd-@2����>���k��w���34�7I,r?7@����3ֺ� [all …]
|
/packages/modules/AdServices/adservices/tests/unittest/service-core/assets/classifier/ |
D | precomputed_test_app_list.csv | 2287 com.pd.thecook 10230
|
/packages/modules/AdServices/adservices/apk/assets/classifier/ |
D | precomputed_app_list.csv | 2287 com.pd.thecook 10230
|
/packages/inputmethods/LatinIME/dictionaries/ |
D | pl_wordlist.combined.gz |
|