/frameworks/base/services/tests/servicestests/src/com/android/server/content/ |
D | ObserverNodeTest.java | 68 ArrayList<ObserverCall> calls = new ArrayList<ObserverCall>(); in testUri() local 71 root.collectObserversLocked(uris[i], 0, null, false, 0, myUserHandle, calls); in testUri() 72 assertEquals(nums[i], calls.size()); in testUri() 73 calls.clear(); in testUri() 98 ArrayList<ObserverCall> calls = new ArrayList<ObserverCall>(); in testUriNotNotify() local 101 root.collectObserversLocked(uris[i], 0, null, false, 0, myUserHandle, calls); in testUriNotNotify() 102 assertEquals(nums[i], calls.size()); in testUriNotNotify() 103 calls.clear(); in testUriNotNotify()
|
/frameworks/base/core/tests/benchmarks/src/android/util/ |
D | StreamsBenchmark.java | 43 private SparseIntArray calls; field in StreamsBenchmark 47 calls = new SparseIntArray(); in setUp() 50 calls.put(i, r.nextInt(Integer.MAX_VALUE)); in setUp() 56 calls = null; in tearDown() 61 final int N = calls.size(); in timeDirect() 64 values[j] = ((long) calls.valueAt(j) << 32) | calls.keyAt(j); in timeDirect() 86 getOpenSessionCallsList(calls).stream().sorted( in timeStreams()
|
/frameworks/rs/script_api/ |
D | GenerateRSFunctionsList.cpp | 456 static void generateTestCall(GeneratedFile* file, ostringstream* calls, in generateTestCall() argument 459 *calls << " "; in generateTestCall() 464 *calls << "*(" << ret->rsType << "*)" << addVariable(file, variableNumber) << " = "; in generateTestCall() 467 *calls << permutation.getName() << "("; in generateTestCall() 472 *calls << separator; in generateTestCall() 475 *calls << "context"; in generateTestCall() 478 *calls << addVariable(file, variableNumber); in generateTestCall() 480 *calls << "(" << p->rsType << "*) " << addVariable(file, variableNumber); in generateTestCall() 482 *calls << "*(" << p->rsType << "*)" << addVariable(file, variableNumber); in generateTestCall() 486 *calls << ");\n"; in generateTestCall() [all …]
|
/frameworks/opt/net/ims/ |
D | README.txt | 2 especially making and taking VoLTE calls using IMS. 3 At the moment, this only supports VoLTE calls which is compliant to GSMA IR.92 specification. 16 With the ImsManager, you can initiate VoLTE calls with ImsManager#makeCall() 27 To receive calls, an IMS application MUST provide a BroadcastReceiver that 47 Provides APIs for IMS services, such as initiating IMS calls, and provides access to 51 Provides IMS voice / video calls over LTE network. 54 Manages all IMS calls which are established hereafter the initial 1-to-1 call is established. 55 It's for providing the dummy calls which are disconnected with the IMS network after 95 Manages all calls which are established hereafter the initial 1-to-1 call is established. 96 It's for providing the dummy calls which are disconnected with the IMS network after [all …]
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
D | RadioResponse.java | 213 ArrayList<android.hardware.radio.V1_0.Call> calls) { in getCurrentCallsResponse() argument 214 responseCurrentCalls(responseInfo, calls); in getCurrentCallsResponse() 222 ArrayList<android.hardware.radio.V1_2.Call> calls) { in getCurrentCallsResponse_1_2() argument 223 responseCurrentCalls_1_2(responseInfo, calls); in getCurrentCallsResponse_1_2() 1892 ArrayList<android.hardware.radio.V1_0.Call> calls) { in responseCurrentCalls() argument 1896 int num = calls.size(); in responseCurrentCalls() 1904 dc.state = DriverCall.stateFromCLCC((int) (calls.get(i).state)); in responseCurrentCalls() 1905 dc.index = calls.get(i).index; in responseCurrentCalls() 1906 dc.TOA = calls.get(i).toa; in responseCurrentCalls() 1907 dc.isMpty = calls.get(i).isMpty; in responseCurrentCalls() [all …]
|
D | CallManager.java | 1756 private Call getFirstNonIdleCall(List<Call> calls) { in getFirstNonIdleCall() argument 1758 for (Call call : calls) { in getFirstNonIdleCall() 1770 private Call getFirstNonIdleCall(List<Call> calls, int subId) { in getFirstNonIdleCall() argument 1772 for (Call call : calls) { in getFirstNonIdleCall() 1972 private Call getFirstActiveCall(ArrayList<Call> calls) { in getFirstActiveCall() argument 1973 for (Call call : calls) { in getFirstActiveCall() 1984 private Call getFirstActiveCall(ArrayList<Call> calls, int subId) { in getFirstActiveCall() argument 1985 for (Call call : calls) { in getFirstActiveCall() 1997 private Call getFirstCallOfState(ArrayList<Call> calls, Call.State state) { in getFirstCallOfState() argument 1998 for (Call call : calls) { in getFirstCallOfState() [all …]
|
/frameworks/av/drm/libmediadrm/protos/ |
D | metrics.proto | 82 // Count and execution time of getKeyRequest calls. 85 // Count and execution time of provideKeyResponse calls. 88 // Count of getProvisionRequest calls. 91 // Count of provideProvisionResponse calls. 100 // Count getPropertyByteArray calls to retrieve the device unique id.
|
/frameworks/base/core/proto/android/ |
D | section.proto | 38 // incidentd calls dumpsys for annotated field 41 // incidentd calls logs for annotated field 47 // incidentd calls tombstoned for annotated field
|
/frameworks/opt/telephony/ |
D | README.txt | 9 the system. This includes making phone calls, sending SMS/MMS, and connecting 10 to data. Many APIs are plumbed down to the radio through HIDL calls defined in
|
/frameworks/base/tools/dump-coverage/ |
D | README.md | 5 The JVMTI agent is used to make the calls to JaCoCo in its process. 38 In dump mode, the agent makes JNI calls equivalent to
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/ |
D | TelephonyMetrics.java | 492 for (RilCall call : event.calls) { in printAllMetrics() 1493 RilCall[] calls = convertConnectionsToRilCalls(connections, countryIso); in writeRilCallList() local 1497 .setRilCalls(calls) in writeRilCallList() 1500 if (callSession.isPhoneIdle() && disconnectReasonsKnown(calls)) { in writeRilCallList() 1506 private boolean disconnectReasonsKnown(RilCall[] calls) { in disconnectReasonsKnown() argument 1507 for (RilCall call : calls) { in disconnectReasonsKnown() 1515 RilCall[] calls = new RilCall[mConnections.size()]; in convertConnectionsToRilCalls() local 1517 calls[i] = new RilCall(); in convertConnectionsToRilCalls() 1518 calls[i].index = i; in convertConnectionsToRilCalls() 1519 convertConnectionToRilCall(mConnections.get(i), calls[i], countryIso); in convertConnectionsToRilCalls() local [all …]
|
/frameworks/compile/slang/lit-tests/P_ref_count/ |
D | func_params.rscript | 4 // Check rsSetObject() calls are properly added. 20 // Check rsClearObject() calls are properly added.
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | ZenModeFiltering.java | 318 private synchronized void cleanUp(ArrayMap<String, Long> calls, long now) { in cleanUp() argument 319 final int N = calls.size(); in cleanUp() 323 calls.removeAt(i); in cleanUp()
|
/frameworks/base/services/robotests/backup/src/com/android/server/backup/ |
D | TransportManagerTest.java | 637 List<String> calls = new ArrayList<>(); in testForEachRegisteredTransport() local 639 transportManager.forEachRegisteredTransport(calls::add); in testForEachRegisteredTransport() 641 assertThat(calls) in testForEachRegisteredTransport() 651 List<String> calls = new ArrayList<>(); in testForEachRegisteredTransport_whenNoTransportsRegistered() local 653 transportManager.forEachRegisteredTransport(calls::add); in testForEachRegisteredTransport_whenNoTransportsRegistered() 655 assertThat(calls).isEmpty(); in testForEachRegisteredTransport_whenNoTransportsRegistered()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/metrics/ |
D | PersistAtomsStorageTest.java | 520 VoiceCallSession[] calls = mPersistAtomsStorage.getVoiceCallSessions(0L); in addVoiceCallSession_tooManyCalls() local 521 assertHasCall(calls, mCall1Proto, 49); in addVoiceCallSession_tooManyCalls() 522 assertHasCall(calls, mCall2Proto, 1); in addVoiceCallSession_tooManyCalls() 761 VoiceCallSession[] calls, @Nullable VoiceCallSession expectedCall, int expectedCount) { in assertHasCall() argument 762 assertNotNull(calls); in assertHasCall() 764 for (VoiceCallSession call : calls) { in assertHasCall()
|
D | TelephonyMetricsTest.java | 647 RilCall[] calls = events[0].calls; in testWriteRilDialHangup() local 648 assertEquals(CallState.CALL_DIALING, calls[0].state); in testWriteRilDialHangup() 652 calls = events[1].calls; in testWriteRilDialHangup() 653 assertEquals(3, calls[0].index); in testWriteRilDialHangup() 654 assertEquals(CallState.CALL_DISCONNECTED, calls[0].state); in testWriteRilDialHangup()
|
/frameworks/native/opengl/libs/EGL/ |
D | GLES_layers.md | 20 …make independent GLES 1.x calls, they will be routed to GLES2+ libraries, which may not behave as … 29 …t wait for calls to `AndroidGLESLayer_GetProcAddress`). Layers must be sure to use gen_next_layer… 106 …rocAddress` requests from the loader so the platform knows where to route calls. See below for an …
|
/frameworks/base/services/core/java/com/android/server/content/ |
D | ContentService.java | 427 ArrayList<ObserverCall> calls = new ArrayList<ObserverCall>(); in notifyChange() local 430 flags, userHandle, calls); in notifyChange() 432 final int numCalls = calls.size(); in notifyChange() 434 ObserverCall oc = calls.get(i); in notifyChange() 1555 int targetUserHandle, ArrayList<ObserverCall> calls) { in collectMyObserversLocked() argument 1595 calls.add(new ObserverCall(this, entry.observer, selfChange, in collectMyObserversLocked() 1606 int targetUserHandle, ArrayList<ObserverCall> calls) { in collectObserversLocked() argument 1613 flags, targetUserHandle, calls); in collectObserversLocked() 1620 flags, targetUserHandle, calls); in collectObserversLocked() 1629 observerWantsSelfNotifications, flags, targetUserHandle, calls); in collectObserversLocked()
|
/frameworks/layoutlib/create/ |
D | README.txt | 26 calls in Eclipse. 93 - specific methods for which to delegate calls. 134 ReplaceMethodCallsAdapter replaces calls to certain methods. This is different from the 136 changes the calls to a method in each class instead of changing the implementation of the method. 152 listeners from these overridden method calls based on the method signatures. 172 - OverrideMethod and its associated MethodListener and MethodAdapter are used to intercept calls to 240 b- A brand new implementation of SomeClass.MethodName() which calls to a non-existing static method
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
D | System.inc | 44 /// srandom - set the initial seed value for future calls to random().
|
/frameworks/base/core/tests/hosttests/test-apps/SharedUid/java_only/ |
D | Android.bp | 18 // bundles the shared library and calls it using JNI.
|
/frameworks/base/core/tests/hosttests/test-apps/SharedUid/32/ |
D | Android.bp | 18 // bundles the shared library and calls it using JNI.
|
/frameworks/base/core/tests/hosttests/test-apps/SharedUid/64/ |
D | Android.bp | 18 // bundles the shared library and calls it using JNI.
|
/frameworks/base/core/tests/hosttests/test-apps/SharedUid/dual/ |
D | Android.bp | 18 // bundles the shared library and calls it using JNI.
|
/frameworks/base/core/proto/android/telecomm/ |
D | enums.proto | 31 * not expected to ever interact with NEW calls, but {@link android.telecom.InCallService}s will 32 * see calls in this state. 100 * to the InCall UI for calls where disconnection has been initiated by the user but the
|