/aosp_15_r20/cts/tests/tests/appop/AppThatUsesAppOps/src/android/app/appops/cts/appthatusesappops/ |
H A D | AppOpsUserService.kt | 54 private val noted = mutableListOf<Pair<SyncNotedAppOp, Array<StackTraceElement>>>() in noteSyncOpFromNativeCode() constant 62 noted.add(op to Throwable().stackTrace) in noteSyncOpFromNativeCode() 106 assertThat(noted).isEmpty() in noteSyncOpFromNativeCode() 110 assertThat(noted).isEmpty() in noteSyncOpFromNativeCode() 131 assertThat(noted).isEmpty() in noteSyncOpFromNativeCode() 140 assertThat(noted.map { it.first.attributionTag to it.first.op }) in noteSyncOpFromNativeCode() 142 assertThat(noted[0].second.map { it.methodName }) in noteSyncOpFromNativeCode() 153 assertThat(noted.map { it.first.op }).containsExactly(OPSTR_COARSE_LOCATION) in noteSyncOpFromNativeCode() 154 assertThat(noted[0].second.map { it.methodName }) in noteSyncOpFromNativeCode() 159 noted.clear() in noteSyncOpFromNativeCode() [all …]
|
/aosp_15_r20/cts/tests/tests/appop/src/android/app/appops/cts/ |
H A D | AppOpsLoggingTest.kt | 150 private val noted = mutableListOf<Pair<SyncNotedAppOp, Array<StackTraceElement>>>() in nativeNoteOp() constant 206 noted.clear() in nativeNoteOp() 216 noted.add(op to Throwable().stackTrace) in nativeNoteOp() 243 assertThat(noted).isEmpty() in nativeNoteOp() 395 assertThat(noted[0].first.op).isEqualTo(OPSTR_FINE_LOCATION) in nativeNoteOp() 396 assertThat(noted[0].first.attributionTag).isEqualTo(TEST_ATTRIBUTION_TAG) in nativeNoteOp() 397 assertThat(noted[0].second.map { it.methodName }).contains("getWifiScanResults") in nativeNoteOp() 488 assertThat(noted.map { it.first.op }).containsAnyOf(OPSTR_COARSE_LOCATION, in nativeNoteOp() 490 assertThat(noted[0].first.attributionTag).isEqualTo(TEST_ATTRIBUTION_TAG) in nativeNoteOp() 491 assertThat(noted[0].second.map { it.methodName }).contains("getLastKnownLocation") in nativeNoteOp() [all …]
|
/aosp_15_r20/frameworks/base/core/java/android/app/ |
H A D | AsyncNotedAppOp.java | 30 * When an {@link AppOpsManager#noteOp(String, int, String, String, String) app-op is noted} and the 31 * app the app-op is noted for has a {@link AppOpsManager.OnOpNotedCallback} registered the 46 /** Op that was noted */ 49 /** Uid that noted the op */ 58 /** Milliseconds since epoch when the op was noted */ 62 * @return Op that was noted. 97 * Op that was noted 99 * Uid that noted the op 105 * Milliseconds since epoch when the op was noted 135 * Uid that noted the op [all …]
|
H A D | SyncNotedAppOp.java | 29 * Description of an app-op that was noted for the current process. 51 /** op code of synchronous appop noted */ 53 /** attributionTag of synchronous appop noted */ 82 * op code of synchronous appop noted 84 * attributionTag of synchronous appop noted 95 * op code of synchronous appop noted 97 * attributionTag of synchronous appop noted 109 * @return The op that was noted. 142 * attributionTag of synchronous appop noted
|
H A D | AppOpsManager.java | 182 * APIs. This is done by tracking when an app-op was {@link #noteOp noted} or 3212 * the app-ops that were noted during this transaction. 3582 /** UID of the proxy app that noted the op */ 3584 /** Package of the proxy that noted the op */ 3586 /** Attribution tag of the proxy that noted the op */ 3588 /** Persistent device Id of the proxy that noted the op */ 3594 * @param uid UID of the proxy app that noted the op 3595 * @param packageName Package of the proxy that noted the op 3596 * @param attributionTag attribution tag of the proxy that noted the op 3597 * @param deviceId Persistent device Id of the proxy that noted the op [all …]
|
H A D | AppOpsManagerInternal.java | 83 * @param message The message in the async noted op 99 * @param message The message in the async noted op 122 * @param message The message in the async noted op 145 * @param message The message in the async noted op 169 * @param uid The UID for which the op was noted. 170 * @param packageName The package for which it was noted. {@code null} for system package.
|
H A D | AppOps.md | 167 attribution tags of the app. In this case an app-op is noted for the forwarding app (proxy) and 174 APIs. This is done by tracking when an app-op was noted or started. The tracked data can only be 281 As `onNoted` also reports the attributionTag and the noted op the app can now build a mapping 356 changed. Further there were cases where app-ops were noted even though no data was accessed or
|
/aosp_15_r20/frameworks/base/core/tests/coretests/AppThatUsesAppOps/src/android/app/appops/appthatusesappops/ |
H A D | AppOpsUserService.kt | 79 private val noted = mutableListOf<Pair<SyncNotedAppOp, Array<StackTraceElement>>>() in onBind() constant 87 noted.add(op to Throwable().stackTrace) in onBind() 130 assertThat(noted).isEmpty() in onBind() 142 assertThat(noted).isEmpty() in onBind() 159 assertThat(noted).isEmpty() in onBind() 170 assertThat(noted).isEmpty() in onBind() 183 assertThat(noted).isEmpty() in onBind()
|
/aosp_15_r20/external/libcap/goapps/captree/ |
H A D | captree.go | 450 var noted []string 452 noted = append(noted, pid) 454 sort.Slice(noted, func(i, j int) bool { 455 return wanted[noted[i]] < wanted[noted[j]] 459 for _, pid := range noted {
|
/aosp_15_r20/external/ltp/testcases/kernel/syscalls/statx/ |
H A D | statx06.c | 12 * - btime - The time before and after the execution of the create system call is noted. 14 * - mtime - The time before and after the execution of the write system call is noted. 16 * - atime - The time before and after the execution of the read system call is noted. 18 * - ctime - The time before and after the execution of the chmod system call is noted.
|
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/app/ |
H A D | AppOpsLoggingTest.kt | 90 private val noted = mutableListOf<Pair<SyncNotedAppOp, Array<StackTraceElement>>>() in <lambda>() constant in android.app.AppOpsLoggingTest 142 noted.clear() in <lambda>() 153 noted.add(op to Throwable().stackTrace) in <lambda>() 214 assertThat(noted).isEmpty() in <lambda>() 277 // 4. freezeAndNoteSyncOp calls nativeNoteOp which leads to an async op noted callback in <lambda>()
|
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/ |
D | admin_directory_v1.chromeosdevices.html | 155 …"annotatedAssetId": "A String", # The asset identifier as noted by an administ… 156 …n": "A String", # The address or location of the device as noted by the administrat… 157 …"annotatedUser": "A String", # The user of the device as noted by the administ… 321 …"annotatedAssetId": "A String", # The asset identifier as noted by an administ… 322 …n": "A String", # The address or location of the device as noted by the administrat… 323 …"annotatedUser": "A String", # The user of the device as noted by the administ… 501 …"annotatedAssetId": "A String", # The asset identifier as noted by an administ… 502 …n": "A String", # The address or location of the device as noted by the administrat… 503 …"annotatedUser": "A String", # The user of the device as noted by the administ… 640 …"annotatedAssetId": "A String", # The asset identifier as noted by an administ… [all …]
|
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/appops/ |
H A D | AppOpsControllerImpl.java | 73 // This is the minimum time that we will keep AppOps that are noted on record. If multiple 466 // Check if the item is also noted, in that case, there's no update. in onOpActiveChanged() 471 // If active is true, we only send the update if the op is not actively noted (already true) in onOpActiveChanged() 472 // If active is false, we only send the update if the op is not actively noted (prevent in onOpActiveChanged() 484 Log.w(TAG, "Noted op: " + code + " with result " in onOpNoted() 517 pw.println(" Noted Items:"); in dump()
|
/aosp_15_r20/prebuilts/go/linux-x86/src/runtime/ |
D | sys_plan9_arm.s | 188 //func noted(mode int32) int32 189 TEXT runtime·noted(SB),NOSPLIT,$0-8 272 // call noted(R0) 274 BL runtime·noted(SB)
|
D | sys_plan9_386.s | 124 TEXT runtime·noted(SB),NOSPLIT,$0 216 // call noted(AX) 218 CALL runtime·noted(SB)
|
D | sys_plan9_amd64.s | 117 TEXT runtime·noted(SB),NOSPLIT,$0 212 // call noted(AX) 214 CALL runtime·noted(SB)
|
/aosp_15_r20/cts/tests/tests/appop2/src/android/app/appops2/cts/ |
H A D | AppOpsLoggingTest.kt | 54 private val noted = mutableListOf<Pair<SyncNotedAppOp, Array<StackTraceElement>>>() in <lambda>() constant 65 noted.clear() in <lambda>() 74 noted.add(op to Throwable().stackTrace) in <lambda>()
|
/aosp_15_r20/frameworks/base/services/tests/servicestests/src/com/android/server/appop/ |
H A D | AppOpsNotedWatcherTest.java | 44 * Tests watching noted ops. 58 // Start watching noted ops in testWatchNotedOps() 69 // Verify that we got called for the ops being noted in testWatchNotedOps()
|
/aosp_15_r20/hardware/google/camera/common/hal/google_camera_hal/ |
D | camera_device_session.h | 323 // imported_buffer_handle_map_lock_ protects the following variables as noted. 331 // session_lock_ protects the following variables as noted. 334 // capture_session_lock_ protects the following variables as noted. 406 // request_record_lock_ protects the following variables as noted
|
/aosp_15_r20/external/google-cloud-java/java-gkehub/proto-google-cloud-gkehub-v1/src/main/java/com/google/cloud/gkehub/v1/ |
H A D | MonitoringConfig.java | 246 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 272 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 1133 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 1158 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 1183 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 1207 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 1227 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today
|
/aosp_15_r20/external/google-cloud-java/java-gkehub/proto-google-cloud-gkehub-v1beta1/src/main/java/com/google/cloud/gkehub/v1beta1/ |
H A D | MonitoringConfig.java | 246 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 272 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 1134 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 1159 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 1184 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 1208 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today 1228 * eventually. Noted: Anthos MultiCloud will have kubernetes.io prefix today
|
/aosp_15_r20/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/ |
D | Utils.java | 581 * <p>Should be used in situations where the app op should not be noted. 595 * noted. 609 * <p>Should be used in situations where the app op should not be noted. 622 * noted. 636 * <p>Should be used in situations where the app op should not be noted. 650 * noted.
|
/aosp_15_r20/external/wpa_supplicant_8/wpa_supplicant/ |
H A D | android.config | 286 # are used. It should be noted that some existing TLS v1.0 -based 293 # noted that some existing TLS v1.0 -based implementation may not be compatible 405 # works by reading /dev/urandom. It should be noted that the OS entropy pool 463 # should be noted that this is mainly aimed at simple cases like
|
/aosp_15_r20/external/apache-xml/test/tests/conf-gold/position/ |
H A D | position91.out | 3 <noted>subsection A2c</noted></out>
|
/aosp_15_r20/external/brotli/tests/testdata/ |
H A D | lcet10.txt | 322 and quality of results, as opposed to methods of conversion. ERWAY noted 339 find and use what they need. LYNCH noted that a lack of standards 378 textual materials. As noted above, those interested in imaging discussed 747 and noted that the scientific community was outside the panel's overview. 923 sources, analytical tools, and publications. MICHELSON noted further 1178 FREEMAN also noted the obvious fear of the computer, which constitutes a 1191 the system. She noted the occasional existence of a gap in communication 1375 moderator of the "show-and-tell" session. She noted that a 2102 noted in particular the implications of citation counts for tenure 2109 characters or by complex graphics and halftones. In addition, she noted [all …]
|