/frameworks/base/tools/protologtool/tests/com/android/protolog/tool/ |
D | ProtoLogCallProcessorTest.kt | 33 private val calls: MutableList<LogCall> = mutableListOf() constant in com.android.protolog.tool.ProtoLogCallProcessorTest 43 calls.add(LogCall(call, messageString, level, group)) in processCall() 48 assertEquals(1, calls.size) in checkCalls() 49 val c = calls[0] in checkCalls() 70 assertEquals(2, calls.size) in process_samePackage() 71 var c = calls[0] in process_samePackage() 75 c = calls[1] in process_samePackage() 151 assertEquals(0, calls.size) in process_protoLogNotImported()
|
D | SourceTransformerTest.kt | 220 val calls = code.findAll(MethodCallExpr::class.java) in <lambda>() constant 221 visitor.processCall(calls[0], "test %d %f", in <lambda>() 223 visitor.processCall(calls[1], "test %d %f", in <lambda>() 225 visitor.processCall(calls[2], "test %d %f", in <lambda>()
|
/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/base/tools/protologtool/src/com/android/protolog/tool/ |
D | ViewerConfigBuilder.kt | 54 val calls = mutableListOf<Pair<LogCall, ParsingContext>>() in <lambda>() constant 64 calls.add(logCall to context) in <lambda>() 69 return calls in <lambda>() 72 fun addLogCalls(calls: List<Pair<LogCall, ParsingContext>>) { in <lambda>() 73 calls.forEach { (logCall, context) -> in <lambda>()
|
/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 50 // incidentd calls legacy text dumpsys for annotated field. The section will only be generated
|
/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/libs/WindowManager/Shell/src/com/android/wm/shell/docs/ |
D | sysui.md | 39 careful about how SysUI calls into the Shell and vice versa. 42 implementations of the interfaces on each side need to post to the right thread before it calls 59 Aside from direct calls into Shell controllers for exposed features, the Shell also receives 68 the Shell feature interface. Any such calls should <u>**never**</u> be synchronous calls as
|
D | changes.md | 42 - Have all incoming calls post to the main shell thread (inject @ShellMainThread Executor into the 56 - Make the controller implement `RemoteCallable<T>`, and have all incoming calls use one of 57 the `ExecutorUtils.executeRemoteCallWithTaskPermission()` calls to verify the caller's identity 95 - **Don't** add blocking synchronous calls in the SysUI interface between Shell & SysUI
|
/frameworks/base/services/core/java/com/android/server/soundtrigger_middleware/ |
D | README.md | 36 that enforces deadlines on calls into the HAL, and `SoundTriggerHalEnforcer` which enforces that 79 The `SoundTriggerMiddlewarePermission` class would reject any calls from unauthorized clients, 100 due to the fact that it is involved in both in-bound and out-bound calls from / to 108 within our calls into `AudioSessionProvider.acquireSession()` / 120 - Most calls (see exceptions below) originating from SoundTriggerMiddlewareService simply propagate 130 sequence for these calls is: 140 - `setCaptureState()` calls, originating from Audio Policy Service, into the lower layers of the 143 recipient of these calls, features a buffer and an additional thread, which allows the actual
|
/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/opt/telephony/src/java/com/android/internal/telephony/ |
D | CallManager.java | 1746 private Call getFirstNonIdleCall(List<Call> calls) { in getFirstNonIdleCall() argument 1748 for (Call call : calls) { in getFirstNonIdleCall() 1760 private Call getFirstNonIdleCall(List<Call> calls, int subId) { in getFirstNonIdleCall() argument 1762 for (Call call : calls) { in getFirstNonIdleCall() 1960 private Call getFirstActiveCall(ArrayList<Call> calls) { in getFirstActiveCall() argument 1961 for (Call call : calls) { in getFirstActiveCall() 1972 private Call getFirstActiveCall(ArrayList<Call> calls, int subId) { in getFirstActiveCall() argument 1973 for (Call call : calls) { in getFirstActiveCall() 1984 private Call getFirstCallOfState(ArrayList<Call> calls, Call.State state) { in getFirstCallOfState() argument 1985 for (Call call : calls) { in getFirstCallOfState() [all …]
|
D | VoiceResponse.java | 157 android.hardware.radio.voice.Call[] calls) { in getCurrentCallsResponse() argument 161 int num = calls.length; in getCurrentCallsResponse() 165 dc = RILUtils.convertToDriverCall(calls[i]); in getCurrentCallsResponse()
|
D | RadioResponse.java | 210 ArrayList<android.hardware.radio.V1_0.Call> calls) { in getCurrentCallsResponse() argument 211 responseCurrentCalls(responseInfo, calls); in getCurrentCallsResponse() 219 ArrayList<android.hardware.radio.V1_2.Call> calls) { in getCurrentCallsResponse_1_2() argument 220 responseCurrentCalls_1_2(responseInfo, calls); in getCurrentCallsResponse_1_2() 229 ArrayList<android.hardware.radio.V1_6.Call> calls) { in getCurrentCallsResponse_1_6() argument 230 responseCurrentCalls_1_6(responseInfo, calls); in getCurrentCallsResponse_1_6() 2038 ArrayList<android.hardware.radio.V1_0.Call> calls) { in responseCurrentCalls() argument 2042 int num = calls.size(); in responseCurrentCalls() 2047 dc = RILUtils.convertToDriverCall(calls.get(i)); in responseCurrentCalls() 2078 ArrayList<android.hardware.radio.V1_2.Call> calls) { in responseCurrentCalls_1_2() argument [all …]
|
/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/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/native/libs/binder/tests/ |
D | IBinderRpcTest.aidl | 37 void nestMe(IBinderRpcTest binder, int calls); in nestMe() argument
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | ZenModeFiltering.java | 430 private synchronized void cleanUp(ArrayMap<String, Long> calls, long now) { in cleanUp() argument 431 final int N = calls.size(); in cleanUp() 433 final long time = calls.valueAt(i); in cleanUp() 435 calls.removeAt(i); in cleanUp()
|
/frameworks/compile/mclinker/lib/Support/Windows/ |
D | System.inc | 44 /// srandom - set the initial seed value for future calls to random().
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/ |
D | TelephonyMetrics.java | 514 for (RilCall call : event.calls) { in printAllMetrics() 1571 RilCall[] calls = convertConnectionsToRilCalls(connections, countryIso); in writeRilCallList() local 1575 .setRilCalls(calls) in writeRilCallList() 1578 if (callSession.isPhoneIdle() && disconnectReasonsKnown(calls)) { in writeRilCallList() 1584 private boolean disconnectReasonsKnown(RilCall[] calls) { in disconnectReasonsKnown() argument 1585 for (RilCall call : calls) { in disconnectReasonsKnown() 1593 RilCall[] calls = new RilCall[mConnections.size()]; in convertConnectionsToRilCalls() local 1595 calls[i] = new RilCall(); in convertConnectionsToRilCalls() 1596 calls[i].index = i; in convertConnectionsToRilCalls() 1597 convertConnectionToRilCall(mConnections.get(i), calls[i], countryIso); in convertConnectionsToRilCalls() local [all …]
|
/frameworks/layoutlib/create/ |
D | README.txt | 26 calls. 93 - specific methods for which to delegate calls. 127 ReplaceMethodCallsAdapter replaces calls to certain methods. This is different from the 129 changes the calls to a method in each class instead of changing the implementation of the method. 145 listeners from these overridden method calls based on the method signatures. 165 - OverrideMethod and its associated MethodListener and MethodAdapter are used to intercept calls to 233 b- A brand new implementation of SomeClass.MethodName() which calls to a non-existing static method
|
/frameworks/base/services/robotests/backup/src/com/android/server/backup/ |
D | TransportManagerTest.java | 723 List<String> calls = new ArrayList<>(); in testForEachRegisteredTransport() local 725 transportManager.forEachRegisteredTransport(calls::add); in testForEachRegisteredTransport() 727 assertThat(calls) in testForEachRegisteredTransport() 737 List<String> calls = new ArrayList<>(); in testForEachRegisteredTransport_whenNoTransportsRegistered() local 739 transportManager.forEachRegisteredTransport(calls::add); in testForEachRegisteredTransport_whenNoTransportsRegistered() 741 assertThat(calls).isEmpty(); in testForEachRegisteredTransport_whenNoTransportsRegistered()
|
/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/packages/SystemUI/docs/ |
D | dialogs.md | 37 All these calls should be made before `Dialog#create` or `Dialog#show` (which internally calls
|