/frameworks/libs/binary_translation/guest_os_primitives/riscv64/ |
D | gen_syscall_numbers.cc | 21 int ToHostSyscallNumber(int nr) { in ToHostSyscallNumber() argument 22 switch (nr) { in ToHostSyscallNumber() 640 int ToGuestSyscallNumber(int nr) { in ToGuestSyscallNumber() argument 641 switch (nr) { in ToGuestSyscallNumber()
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | NotificationRecordLoggerFake.java | 96 NotificationReported nr = NotificationRecordLogger.super.prepareToLogNotificationPosted(r, in prepareToLogNotificationPosted() local 101 if (nr != null) { in prepareToLogNotificationPosted() 102 mPendingLogs.put(nr, callRecord); in prepareToLogNotificationPosted() 104 return nr; in prepareToLogNotificationPosted() 108 public void logNotificationPosted(NotificationReported nr) { in logNotificationPosted() argument 109 CallRecord callRecord = mPendingLogs.get(nr); in logNotificationPosted() 115 mPendingLogs.remove(nr); in logNotificationPosted() 117 callRecord.postDurationMillisLogged = nr.post_duration_millis; in logNotificationPosted()
|
D | NotificationManagerServiceTest.java | 1341 NotificationRecord nr = new NotificationRecord(mContext, sbn, mTestNotificationChannel); in createAndPostNotification() local 1344 nr.getSbn().getId(), nr.getSbn().getNotification(), nr.getSbn().getUserId()); in createAndPostNotification() 1348 mPkg, nr.getSbn().getTag(), nr.getSbn().getId(), nr.getSbn().getUserId()); in createAndPostNotification() 1920 NotificationRecord nr = generateNotificationRecord( in testEnqueueNotificationInternal_noChannel() local 1923 mBinderService.enqueueNotificationWithTag(mPkg, mPkg, nr.getSbn().getTag(), in testEnqueueNotificationInternal_noChannel() 1924 nr.getSbn().getId(), nr.getSbn().getNotification(), nr.getSbn().getUserId()); in testEnqueueNotificationInternal_noChannel() 1933 mBinderService.enqueueNotificationWithTag(mPkg, mPkg, nr.getSbn().getTag(), in testEnqueueNotificationInternal_noChannel() 1934 nr.getSbn().getId(), nr.getSbn().getNotification(), nr.getSbn().getUserId()); in testEnqueueNotificationInternal_noChannel() 4868 final NotificationRecord nr = generateNotificationRecord( in testSystemNotificationListenerCanUnsnooze() local 4873 nr.getSbn().getId(), nr.getSbn().getNotification(), in testSystemNotificationListenerCanUnsnooze() [all …]
|
/frameworks/libs/binary_translation/kernel_api/tools/ |
D | gen_kernel_syscalls_numbers.py | 59 for nr, syscall in sorted(kernel_syscalls.items()): 61 assert nr.startswith('__') 62 print(' GUEST_%s = %s,' % (nr[2:], syscall[arch]['id']))
|
D | gen_kernel_syscalls_mapping.py | 57 for nr, syscall in sorted(kernel_syscalls.items()): 60 print(' case %s: // %s' % (syscall[src_arch]['id'], nr)) 63 print(' case %s: // %s - missing on %s' % (syscall[src_arch]['id'], nr, dst_arch))
|
/frameworks/libs/binary_translation/guest_os_primitives/include/berberis/guest_os_primitives/ |
D | syscall_numbers.h | 22 int ToHostSyscallNumber(int nr); 23 int ToGuestSyscallNumber(int nr);
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | NotificationShellCmd.java | 335 final NotificationRecord nr = mDirectService.getNotificationRecord(key); in onCommand() local 336 if (nr != null) { in onCommand() 337 nr.dump(pw, "", mDirectService.getContext(), false); in onCommand() 347 for (NotificationRecord nr : sh.getSnoozed()) { in onCommand() 348 final String pkg = nr.getSbn().getPackageName(); in onCommand() 349 final String key = nr.getKey(); in onCommand() 352 nr.getUserId(), pkg, key) in onCommand() 355 nr.getUserId(), pkg, key)); in onCommand() 685 NotificationRecord nr = mDirectService.findNotificationLocked( in doNotify() local 688 if (nr != null) break; in doNotify() [all …]
|
D | NotificationRecordLoggerImpl.java | 35 public void logNotificationPosted(NotificationReported nr) { in logNotificationPosted() argument 36 writeNotificationReportedAtom(nr); in logNotificationPosted()
|
D | NotificationRecordLogger.java | 87 void logNotificationPosted(NotificationReported nr); in logNotificationPosted() argument
|
D | NotificationManagerService.java | 6800 final NotificationRecord nr = mNotificationList.get(i); 6801 if (filter.filtered && !filter.matches(nr.getSbn())) continue; 6802 nr.dump(proto, NotificationServiceDumpProto.RECORDS, filter.redact, 6807 final NotificationRecord nr = mEnqueuedNotifications.get(i); 6808 if (filter.filtered && !filter.matches(nr.getSbn())) continue; 6809 nr.dump(proto, NotificationServiceDumpProto.RECORDS, filter.redact, 6815 final NotificationRecord nr = snoozed.get(i); 6816 if (filter.filtered && !filter.matches(nr.getSbn())) continue; 6817 nr.dump(proto, NotificationServiceDumpProto.RECORDS, filter.redact, 6876 final NotificationRecord nr = mNotificationList.get(i); [all …]
|
/frameworks/base/libs/hwui/tests/scripts/ |
D | prep_taieye.sh | 1 nr=$(adb shell cat /proc/cpuinfo | grep processor | wc -l) 22 while [ $((cpu < $nr)) -eq 1 ]; do
|
D | prep_buller.sh | 3 nr=$(adb shell cat /proc/cpuinfo | grep processor | wc -l) 30 while [ $((cpu < $nr)) -eq 1 ]; do
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RILUtils.java | 2342 case android.hardware.radio.V1_4.CellInfo.Info.hidl_discriminator.nr: in convertHalCellInfo() 2344 android.hardware.radio.V1_4.CellInfoNr nr = record.info.nr(); in convertHalCellInfo() local 2345 nrCi = convertHalCellIdentityNr(nr.cellidentity); in convertHalCellInfo() 2346 nrSs = convertHalNrSignalStrength(nr.signalStrength); in convertHalCellInfo() 2396 .CellInfoRatSpecificInfo.hidl_discriminator.nr: in convertHalCellInfo() 2398 android.hardware.radio.V1_5.CellInfoNr nr = record.ratSpecificInfo.nr(); in convertHalCellInfo() local 2399 nrCi = convertHalCellIdentityNr(nr.cellIdentityNr); in convertHalCellInfo() 2400 nrSs = convertHalNrSignalStrength(nr.signalStrengthNr); in convertHalCellInfo() 2450 .CellInfoRatSpecificInfo.hidl_discriminator.nr: in convertHalCellInfo() 2452 android.hardware.radio.V1_6.CellInfoNr nr = record.ratSpecificInfo.nr(); in convertHalCellInfo() local [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | CellIdentityTest.java | 220 CellIdentityNr nr = new CellIdentityNr(PCI, TAC, EARFCN, BANDS, MCC_STR, MNC_STR, CI, in testGetMccMncString() local 222 identities.add(nr); in testGetMccMncString()
|
D | CellularNetworkServiceTest.java | 422 regResult.cellIdentity.nr(new android.hardware.radio.V1_5.CellIdentityNr()); in testGetNetworkRegistrationInfoV1_6WithNr()
|
D | RILTest.java | 2261 record.info.nr(cellinfo); in testConvertHalCellInfoList_1_4ForNr()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/data/ |
D | TelephonyNetworkFactory.java | 338 TelephonyNetworkRequest nr = entry.getKey(); in dump() local 340 pw.println(nr + (transport != AccessNetworkConstants.TRANSPORT_TYPE_INVALID in dump()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/data/ |
D | TelephonyNetworkFactoryTest.java | 137 private void activatePhoneInPhoneSwitcher(int phoneId, NetworkRequest nr, boolean active) { in activatePhoneInPhoneSwitcher() argument 139 new TelephonyNetworkRequest(nr, mPhone, mFeatureFlags); in activatePhoneInPhoneSwitcher()
|
/frameworks/libs/binary_translation/assembler/ |
D | gen_asm_tests_x86.py | 521 '%sarg%d' % ('*' if arg['class'] != 'Label' else '**', nr) 522 for nr, arg in enumerate(insn_args)
|
/frameworks/base/telephony/java/android/telephony/ |
D | SignalStrength.java | 111 @NonNull CellSignalStrengthNr nr) { in SignalStrength() argument 117 mNr = nr; in SignalStrength()
|
/frameworks/base/tests/vcn/java/com/android/server/vcn/ |
D | VcnGatewayConnectionTest.java | 344 final NetworkRequest nr = networkRequestCaptor.getValue(); in testDataStallHandlingEnabled() local 347 assertEquals(expected, nr); in testDataStallHandlingEnabled()
|
/frameworks/base/services/core/java/com/android/server/pm/ |
D | VerifyingSession.java | 772 final int nr = receivers.size(); in matchComponentForVerifier() local 773 for (int i = 0; i < nr; i++) { in matchComponentForVerifier()
|
/frameworks/av/media/libstagefright/httplive/fuzzer/corpus/ |
D | index17 | 16 …_pskip=1 chroma_qp_offset=0 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interla… 270 WJ7���m�G]�������|o�����!��O��&�nr��5�z�;Z�z���u����(}�z��o
|
D | index9 | 17 …_pskip=1 chroma_qp_offset=0 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interla… 270 WJ7���m�G]�������|o�����!��O��&�nr��5�z�;Z�z���u����(}�z��o 1813 …O��jM� ��q�'8�d~��s9+r����5a��"�_�xɍb���ozۮ\L�S�F+����=�nc0r�t^A,��.�nr�{�����zc��=�v!�…
|
D | index13 | 16 …_pskip=1 chroma_qp_offset=0 threads=6 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interla… 269 WJ7���m�G]�������|o�����!��O��&�nr��5�z�;Z�z���u����(}�z��o 1812 …O��jM� ��q�'8�d~��s9+r����5a��"�_�xɍb���ozۮ\L�S�F+����=�nc0r�t^A,��.�nr�{�����zc��=�v!�…
|