/frameworks/base/tools/hoststubgen/hoststubgen/src/com/android/hoststubgen/asm/ |
D | ClassNodes.kt | 152 for (an in visibleTypeAnnotations ?: emptyList()) { in <lambda>() method 153 pw.printf("%sTypeAnnotation(vis): %s\n", prefix, an.desc) in <lambda>() 155 for (an in invisibleTypeAnnotations ?: emptyList()) { in <lambda>() method 156 pw.printf("%sTypeAnnotation(inv): %s\n", prefix, an.desc) in <lambda>() 158 for (an in visibleAnnotations ?: emptyList()) { in <lambda>() method 159 pw.printf("%sAnnotation(vis): %s\n", prefix, an.desc) in <lambda>() 160 if (an.values == null) { in <lambda>() 164 while (i < an.values.size - 1) { in <lambda>() 165 pw.printf("%s - %s -> %s \n", prefix, an.values[i], an.values[i + 1]) in <lambda>() 169 for (an in invisibleAnnotations ?: emptyList()) { in <lambda>() variable [all …]
|
D | AsmUtils.kt | 48 for (an in visibleAnnotations ?: emptyList()) { in <lambda>() method 49 if (anyAnnotations.contains(an.desc)) { in <lambda>() 50 return an in <lambda>() 53 for (an in invisibleAnnotations ?: emptyList()) { in <lambda>() method 54 if (anyAnnotations.contains(an.desc)) { in <lambda>() 55 return an in <lambda>() 61 fun findAnnotationValueAsString(an: AnnotationNode, propertyName: String): String? { in findAnnotationValueAsString() 62 for (i in 0..(an.values?.size ?: 0) - 2 step 2) { in findAnnotationValueAsString() 63 val name = an.values[i] in findAnnotationValueAsString() 68 val value = an.values[i + 1] in findAnnotationValueAsString()
|
/frameworks/compile/slang/tests/F_reduce_general_bad_result/ |
D | stderr.txt.expect | 13 …:198:12) parameter 'accum' (type 'rs_matrix2x2 (*)[10]') must not point to an array of matrix type… 14 …ipt:208:12) parameter 'out' (type 'rs_matrix2x2 (*)[10]') must not point to an array of matrix type 15 …2) parameter 'out' (type 'struct rs_allocation *') must not point to data containing an object type 16 …ameter 'out' (type 'struct rs_allocation (*)[10]') must not point to data containing an object type 17 …4:12) parameter 'out' (type 'struct StructObj1 *') must not point to data containing an object type 18 …parameter 'out' (type 'struct StructObj2 (*)[10]') must not point to data containing an object type 21 … containing pointers cannot be used as the type of an exported global variable or the parameter to… 22 … containing pointers cannot be used as the type of an exported global variable or the parameter to… 23 … containing pointers cannot be used as the type of an exported global variable or the parameter to… 24 … containing pointers cannot be used as the type of an exported global variable or the parameter to… [all …]
|
/frameworks/native/services/inputflinger/docs/ |
D | anr.md | 3 …g'. This is an event that gets triggered when the system thinks that an application is too slow to… 8 2. The application did not have a focused window, and an input event that requires focus was genera… 12 ## 1. Application does not respond to an input event that was sent to it. ## 14 The most common case is when an application does not respond to input that dispatcher sent to it. T… 16 When the event is being dispatched to an application, the normal flow is: `mPendingEvent` → `connec… 18 … an app is not responding, we look at the oldest entry in the `waitQueue`. If the entry sits in th… 29 For example, if an application is being debugged, the ActivityManager may want to increase the time… 33 …f date. Duplicate entries are allowed because there may be two events with an identical timeout ti… 37 When an application sends a response for a particular dispatch entry, that entry is removed from th… 42 In order to test this behaviour, you can create an application that calls `SystemClock.sleep` while… [all …]
|
/frameworks/compile/slang/tests/F_ptr_in_struct/ |
D | stderr.txt.expect | 1 … containing pointers cannot be used as the type of an exported global variable or the parameter to… 2 … containing pointers cannot be used as the type of an exported global variable or the parameter to…
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_native_fence_sync.txt | 43 except that they have an additional attribute storing the file descriptor 47 object that behaves similarly to an EGL fence sync object. These native 48 objects must have a signal status like that of an EGLSyncKHR object that 75 by eglDupNativeFenceFDANDROID in the event of an error: 89 "If <type> is EGL_SYNC_NATIVE_FENCE_ANDROID, an EGL native fence sync 115 "When a fence sync object is created or when an EGL native fence sync 122 After associating the fence command with an EGL native fence sync object, 133 If the sync object is an EGL native fence sync object then the native 154 EGL_NO_SYNC_KHR is returned and an EGL_BAD_DISPLAY error is 157 empty (containing only EGL_NONE), EGL_NO_SYNC_KHR is returned and an [all …]
|
D | EGL_ANDROID_presentation_time.txt | 42 an EGLSurface, allowing the native window system to use it. 80 an absolute time is needed such as displaying the color buffer on a 82 clock. For situations in which an absolute time is not needed such as 95 returned. Otherwise EGL_FALSE is returned and an appropriate error is 96 set. If <dpy> is not the name of a valid, initialized EGLDisplay, an 98 then an EGL_BAD_SURFACE error is generated. 110 presentation time when an absolute time is needed be queried on Android? 117 or should it be a new parameter to an extended variant of eglSwapBuffers? 131 - Clarified how uses that either do or do not need an absolute time should
|
D | EGL_ANDROID_get_native_client_buffer.txt | 41 This extension allows creating an EGLClientBuffer from an Android 42 AHardwareBuffer object which can be later used to create an EGLImage. 67 may be used to create an EGLClientBuffer from an AHardwareBuffer object.
|
/frameworks/proto_logging/stats/enums/federatedcompute/ |
D | enums.proto | 11 * distributed under the License is distributed on an "AS IS" BASIS, 36 // Client is about to issue an eligibility eval checkin request to the 49 // Client received an eligibility eval plan from the server. 58 // Client was rejected from an eligibility eval checkin request. 62 // Client issued an eligibility eval checkin request, but an IO error was 67 // Client issued an eligibility eval checkin request, but an invalid payload 72 // Client issued an eligibility eval checkin request, but got interrupted on 76 // Client issued an eligibility eval checkin request, but server aborted. 80 // Client issued a regular checkin request, but got an IO error. 84 // Client issued a regular checkin request, but the server returned an [all …]
|
/frameworks/base/tools/hoststubgen/hoststubgen/src/com/android/hoststubgen/filters/ |
D | AnnotationBasedFilter.kt | 115 for (an in visibles ?: emptyList()) { in <lambda>() variable 116 if (visibilityAnnotations.contains(an.desc)) { in <lambda>() 120 for (an in invisibles ?: emptyList()) { in <lambda>() variable 121 if (visibilityAnnotations.contains(an.desc)) { in <lambda>() 289 cn.visibleAnnotations, cn.invisibleAnnotations)?.let { an -> in <lambda>() method 290 return getAnnotationField(an, "value")?.toJvmClassName() in <lambda>() 299 cn.visibleAnnotations, cn.invisibleAnnotations)?.let { an -> in <lambda>() method 300 getAnnotationField(an, "value")?.toHumanReadableMethodName() in <lambda>() 365 mn.invisibleAnnotations)?.let { an -> in <lambda>() method 380 val suffix = getAnnotationField(an, "suffix", false) ?: "\$ravenwood" in <lambda>() [all …]
|
/frameworks/rs/script_api/ |
D | rs_allocation_create.spec | 22 These functions can be called directly or indirectly from an invokable 31 summary: Creates an rs_element object of the specified data type 33 Creates an rs_element object of the specified data type. The data kind of 44 summary: Creates an rs_element object of the specified data type and vector width 46 Creates an rs_element object of the specified data type and vector width. 57 summary: Creates an rs_element object of the specified data type and data kind 59 Creates an rs_element object of the specified data type and data kind. The 85 summary: Creates an rs_type object with the specified Element and shape attributes 87 Creates an rs_type object with the specified Element and shape attributes. 137 summary: Create an rs_allocation object of given Type. [all …]
|
/frameworks/proto_logging/stats/enums/app/wearservices/ |
D | wearservices_enums.proto | 11 * distributed under the License is distributed on an "AS IS" BASIS, 49 // Depicts an ADD action. 91 // This enum depicts an action taken during a backup attempt 94 // Depicts an unknown backup action 107 // This enum depicts an action taken during a restore attempt 110 // Depicts an unknown restore action 123 // Describes an action triggered by a notification update. 355 // Defines on which device the notification blocked state is changed for an application. 585 // This enum depicts an action taken on a call 588 // Depicts an unknown call action [all …]
|
/frameworks/proto_logging/stats/atoms/expresslog/ |
D | expresslog_extension_atoms.proto | 11 * distributed under the License is distributed on an "AS IS" BASIS, 44 // for counter metric it is an incremental amount 54 // for counter metric it is an incremental amount 73 // dim[bins_count] - could be considered as an underflow bin 74 // dim[bins_count + 1] - could be considered as an overflow bin 90 // dim[bins_count] - could be considered as an underflow bin 91 // dim[bins_count + 1] - could be considered as an overflow bin
|
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
D | EGLExtHeader.java-if | 11 ** distributed under the License is distributed on an "AS IS" BASIS, 50 * Retrieves the SyncFence for an EGLSync created with EGL_SYNC_NATIVE_FENCE_ANDROID 58 * an {@link SyncFence#isValid() invalid} SyncFence is returned and an EGL_BAD_PARAMETER 61 * EGL_NO_NATIVE_FENCE_FD_ANDROID, an {@link SyncFence#isValid() invalid} SyncFence is 62 * returned and an EGL_BAD_PARAMETER error is generated.
|
/frameworks/proto_logging/stats/enums/app/ |
D | media_output_enum.proto | 11 * distributed under the License is distributed on an "AS IS" BASIS, 23 * The medium type specified in an output switching operation. 49 * The result of an output switching operation. 57 * The sub result of an output switching operation.
|
/frameworks/proto_logging/stats/enums/telecomm/ |
D | enums.proto | 11 * distributed under the License is distributed on an "AS IS" BASIS, 37 * The initial state of an outgoing {@code Call}. 44 * The state of an outgoing {@code Call} when waiting on user to select a 51 * once an outgoing call has begun (e.g., user presses the dial button in Dialer). Calls in this 75 * to this state is by the user putting an {@link #ACTIVE} call on hold by explicitly performing 76 * an action, such as clicking the hold button. 115 * Indicates that an incoming call has been answered by the in-call UI, but Telephony hasn't yet 136 * Disconnected because of an unknown or unspecified reason. 141 * Disconnected because there was an error, such as a problem with the network. 162 * Disconnected because there was no response to an incoming call. [all …]
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/docs/ |
D | changes.md | 20 you can create an appropriate package for this component to add your new code. The current 30 In addition to doing the above, you will also need to provide an interface for calling to SysUI 36 add an appropriate method in `WMComponent` to get the interface and update the `Builder` in 40 Specifically, to support calling into a controller from an external process (like Launcher): 41 - Create an implementation of the external interface within the controller 44 - Note that callbacks into SysUI should take an associated executor to call back on 52 Specifically, to support calling into a controller from an external process (like Launcher): 53 - Create an implementation of the interface binder's `Stub` class within the controller, have it 66 - Inject `ShellInit` into your component and add an init callback 68 - Making this component a dependency of an existing component already exposed to SystemUI [all …]
|
/frameworks/proto_logging/stats/ |
D | attribution_node.proto | 11 * distributed under the License is distributed on an "AS IS" BASIS, 25 * This proto represents a node of an attribution chain. 34 // The (optional) string tag for an element in the attribution chain. If the 35 // element has no tag, it is encoded as an empty string.
|
/frameworks/base/services/core/java/com/android/server/rollback/ |
D | README.md | 6 updatability efforts. RollbackManager adds support for rolling back an APK or 15 updating an application. For example: 62 of an update if there are 5 ANRs or process crashes within a 1 minute window for 67 If a native service crashes repeatedly after an update is installed, rollback 70 native services have been affected by an update, *any* crashing native service 75 There is an explicit check to verify the network stack is functional after an 77 an update, rollback is triggered. 80 The RollbackManager API may be used by the installer to roll back an update 87 The RollbackManager API is an @SystemAPI guarded by the MANAGE_ROLLBACKS and 94 was no concept of data associated with an APEX, so only the APEX itself is [all …]
|
/frameworks/proto_logging/stats/enums/stats/otaupdate/ |
D | updateengine_enums.proto | 11 * distributed under the License is distributed on an "AS IS" BASIS, 20 // The payload type of an OTA update attempt on A/B devices. 26 // The attempt result reported by the update engine for an OTA update. 43 // The error code reported by the update engine after an OTA update attempt
|
/frameworks/proto_logging/stats/atoms/media/ |
D | media_editing_extension_atoms.proto | 11 * distributed under the License is distributed on an "AS IS" BASIS, 31 // Media metric for an editing operation having ended, since Android V. 62 // Name of the library implementing the exporting operation, or an empty 65 // Name of the library implementing the muxing operation, or an empty string 101 // First input media item's media container MIME type, or an empty string if 104 // First input media item's audio sample MIME type, or an empty string if 107 // First input media item's video sample MIME type, or an empty string if 136 …// The first MediaCodec codec component name used to decode the first input, or an empty string if… 138 …// The second MediaCodec codec component name used to decode the first input, or an empty string i… 166 // Output media item's media container MIME type, or an empty string if [all …]
|
/frameworks/rs/script_api/include/ |
D | rs_object_types.rsh | 11 * distributed under the License is distributed on an "AS IS" BASIS, 48 * rs_element: Handle to an element 66 * rs_allocation: Handle to an allocation 109 * rs_allocation_usage_type: Bitfield to specify how an allocation is used 112 * relevant to an allocation or an operation on an allocation. 150 RS_TYPE_BOOLEAN = 12, // 0 or 1 (false or true) stored in an 8 bit container. 157 RS_TYPE_ELEMENT = 1000, // A handle to an Element. 159 RS_TYPE_ALLOCATION = 1002, // A handle to an Allocation.
|
/frameworks/base/core/proto/android/server/ |
D | usagestatsservice.proto | 11 * distributed under the License is distributed on an "AS IS" BASIS, 48 // Time attributes stored as an offset of the IntervalStats's beginTime. 54 // Time attributes stored as an offset of the IntervalStats's beginTime. 57 // Time attributes stored as an offset of the IntervalStats's beginTime. 60 // Time attributes stored as an offset of the IntervalStats's beginTime. 64 // Stores the relevant information an IntervalStats will have about a Configuration 90 // If class field is an Activity, instance_id is a unique id of the
|
/frameworks/base/tests/AccessoryDisplay/ |
D | README | 2 displays created over an Android Open Accessories Protocol link. 11 The role of the sink is to emulate an external display that happens 25 The role of the source is to present some content onto an external 28 play content to an external monitor. 36 an encoder and streams the output to the sink over USB. Then
|
/frameworks/base/packages/SystemUI/accessibility/accessibilitymenu/ |
D | README.md | 1 The Accessibility Menu is an accessibility service 14 In the settings for the menu, there is an option to display the buttons in a 3x3 grid per page, 23 A majority of the shortcuts correspond directly to an existing accessibility service global action 25 Shortcuts that navigate to a different menu, such as Quick Settings, use an intent to do so. 32 2. Put an entry for the enum value into the `sShortcutResource` `HashMap` in `A11yMenuShortcut`.
|