/frameworks/base/services/core/java/com/android/server/storage/ |
D | AppFuseBridge.java | 101 final MountScope scope; 103 scope = mScopes.get(mountId); 104 if (scope == null) { 108 final boolean result = scope.waitForMount(); 114 return scope.openFile(mountId, fileId, flags); 122 final MountScope scope = mScopes.get(mountId); 123 if (scope != null) { 124 scope.setMountResultLocked(true); 130 final MountScope scope = mScopes.get(mountId); 131 if (scope != null) { [all …]
|
/frameworks/native/services/surfaceflinger/sysprop/ |
D | SurfaceFlingerProperties.sysprop | 39 scope: Public 47 scope: Public 56 scope: Public 65 scope: Public 75 scope: Public 85 scope: Public 103 scope: Public 113 scope: Public 131 scope: Public 140 scope: Public [all …]
|
/frameworks/base/tools/bit/ |
D | aapt.cpp | 175 Scope* scope = new Scope(NULL, -1); in inspect_apk() local 185 while (depth < scope->depth) { in inspect_apk() 186 Scope* tmp = scope; in inspect_apk() 187 scope = scope->parent; in inspect_apk() 190 scope = new Scope(scope, depth); in inspect_apk() 191 scope->namespaces[match[2]] = match[3]; in inspect_apk() 200 element->ns = scope->namespaces[string(str, 0, colon)]; in inspect_apk() 233 while (scope != NULL) { in inspect_apk() 234 Scope* tmp = scope; in inspect_apk() 235 scope = scope->parent; in inspect_apk()
|
/frameworks/base/tools/protologtool/src/com/android/protolog/tool/ |
D | ProtoLogCallProcessor.kt | 53 expr.scope.toString() == protoLogGroupClassName in <lambda>() 55 expr.scope.toString() == protoLogGroupSimpleClassName -> expr.nameAsString in <lambda>() 70 return call.scope.isPresent && call.scope.get().toString() == protoLogClassName || in <lambda>() 71 isLogClassImported && call.scope.isPresent && in <lambda>() 72 call.scope.get().toString() == protoLogSimpleClassName || in <lambda>() 73 !call.scope.isPresent && staticLogImports.contains(call.name.toString()) in <lambda>()
|
/frameworks/base/core/sysprop/api/ |
D | com.android.sysprop.watchdog-latest.txt | 6 scope: Internal 12 scope: Internal 17 scope: Internal
|
D | com.android.sysprop.localization-latest.txt | 6 scope: Internal
|
/frameworks/av/drm/mediadrm/plugins/clearkey/default/ |
D | DrmPlugin.cpp | 84 const Vector<uint8_t>& scope, in getKeyRequest() argument 93 if (scope.size() == 0) { in getKeyRequest() 103 sp<Session> session = mSessionLibrary->findSession(scope); in getKeyRequest() 120 const Vector<uint8_t>& scope, in provideKeyResponse() argument 123 if (scope.size() == 0 || response.size() == 0) { in provideKeyResponse() 126 sp<Session> session = mSessionLibrary->findSession(scope); in provideKeyResponse() 135 sendEvent(kDrmPluginEventVendorDefined, 0, &scope, NULL); in provideKeyResponse()
|
/frameworks/base/core/java/android/os/ |
D | AggregateBatteryConsumer.java | 83 @BatteryUsageStats.AggregateBatteryConsumerScope int scope) throws IOException { in writeToXml() argument 85 serializer.attributeInt(null, BatteryUsageStats.XML_ATTR_SCOPE, scope); in writeToXml() 94 final int scope = parser.getAttributeInt(null, BatteryUsageStats.XML_ATTR_SCOPE); in parseXml() local 95 final Builder consumerBuilder = builder.getAggregateBatteryConsumerBuilder(scope); in parseXml()
|
D | BatteryUsageStats.java | 259 @AggregateBatteryConsumerScope int scope) { in getAggregateBatteryConsumer() 260 return mAggregateBatteryConsumers[scope]; in getAggregateBatteryConsumer() 642 for (int scope = 0; scope < BatteryUsageStats.AGGREGATE_BATTERY_CONSUMER_SCOPE_COUNT; in writeXml() 643 scope++) { in writeXml() 644 mAggregateBatteryConsumers[scope].writeToXml(serializer, scope); in writeXml() 871 @AggregateBatteryConsumerScope int scope) { in getAggregateBatteryConsumerBuilder() 872 return mAggregateBatteryConsumersBuilders[scope]; in getAggregateBatteryConsumerBuilder() 964 for (int scope = 0; scope < AGGREGATE_BATTERY_CONSUMER_SCOPE_COUNT; scope++) { in add() 965 getAggregateBatteryConsumerBuilder(scope) in add() 966 .add(stats.mAggregateBatteryConsumers[scope]); in add()
|
/frameworks/base/libs/hwui/ |
D | HWUIProperties.sysprop | 7 scope: Public 14 scope: Public
|
/frameworks/base/core/sysprop/ |
D | WatchdogProperties.sysprop | 25 scope: Internal 34 scope: Internal 44 scope: Internal
|
/frameworks/compile/libbcc/tests/libbcc/ |
D | test_slang_version_info.ll | 85 !4 = distinct !DISubprogram(name: "swizzle", scope: !5, file: !5, line: 5, type: !6, isLocal: false… 108 !27 = !DILocalVariable(name: "in", arg: 1, scope: !4, file: !5, line: 5, type: !8) 110 !29 = !DILocation(line: 5, scope: !4) 111 !30 = !DILocalVariable(name: "result", scope: !4, file: !5, line: 7, type: !8) 112 !31 = !DILocation(line: 7, scope: !4) 113 !32 = !DILocation(line: 8, scope: !4)
|
/frameworks/libs/net/client-libs/netd/com/android/net/module/util/ |
D | BaseNetdUnsolicitedEventListener.java | 41 int scope) { } in onInterfaceAddressUpdated() argument 45 int scope) { } in onInterfaceAddressRemoved() argument
|
/frameworks/base/tools/protologtool/tests/com/android/protolog/tool/ |
D | SourceTransformerTest.kt | 199 assertEquals(PROTO_LOG_IMPL_PATH, methodCall.scope.get().toString()) in <lambda>() 241 assertEquals(PROTO_LOG_IMPL_PATH, methodCall.scope.get().toString()) in <lambda>() 279 assertEquals(PROTO_LOG_IMPL_PATH, methodCall.scope.get().toString()) in <lambda>() 316 assertEquals(PROTO_LOG_IMPL_PATH, methodCall.scope.get().toString()) in <lambda>() 350 assertEquals(PROTO_LOG_IMPL_PATH, methodCall.scope.get().toString()) in <lambda>() 388 assertEquals(PROTO_LOG_IMPL_PATH, methodCall.scope.get().toString()) in <lambda>()
|
/frameworks/base/services/core/java/com/android/server/am/ |
D | SettingsToPropertiesMapper.java | 148 String scope = properties.getNamespace(); in updatePropertiesFromSettings() 150 String propertyName = makePropertyName(scope, key); in updatePropertiesFromSettings() 152 log("unable to construct system property for " + scope + "/" in updatePropertiesFromSettings()
|
/frameworks/base/tools/powermodel/src/com/android/powermodel/ |
D | RawBatteryStats.java | 104 Scope scope(); in scope() method 171 @Line(tag="bt", scope=Scope.SYSTEM, count=Count.SINGLE) 212 @Line(tag="gn", scope=Scope.SYSTEM, count=Count.SINGLE) 245 @Line(tag="gmcd", scope=Scope.SYSTEM, count=Count.SINGLE) 260 @Line(tag="m", scope=Scope.SYSTEM, count=Count.SINGLE) 326 @Line(tag="nt", scope=Scope.UID, count=Count.SINGLE) 396 @Line(tag="sgt", scope=Scope.SYSTEM, count=Count.SINGLE) 402 @Line(tag="sst", scope=Scope.SYSTEM, count=Count.SINGLE) 408 @Line(tag="uid", scope=Scope.UID, count=Count.MULTIPLE) 417 @Line(tag="vers", scope=Scope.SYSTEM, count=Count.SINGLE)
|
/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/ |
D | DrmPlugin.cpp | 172 Status_V1_2 DrmPlugin::getKeyRequestCommon(const hidl_vec<uint8_t>& scope, in getKeyRequestCommon() argument 194 if (scope.size() == 0 || in getKeyRequestCommon() 201 const std::vector<uint8_t> scopeId = toVector(scope); in getKeyRequestCommon() 246 const hidl_vec<uint8_t>& scope, in getKeyRequest() argument 258 scope, initData, mimeType, keyType, optionalParameters, in getKeyRequest() 268 const hidl_vec<uint8_t>& scope, in getKeyRequest_1_1() argument 280 scope, initData, mimeType, keyType, optionalParameters, in getKeyRequest_1_1() 289 const hidl_vec<uint8_t>& scope, in getKeyRequest_1_2() argument 301 scope, initData, mimeType, keyType, optionalParameters, in getKeyRequest_1_2() 351 const hidl_vec<uint8_t>& scope, in provideKeyResponse() argument [all …]
|
/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/include/ |
D | DrmPlugin.h | 84 const hidl_vec<uint8_t>& scope, 92 const hidl_vec<uint8_t>& scope, 100 const hidl_vec<uint8_t>& scope, 108 const hidl_vec<uint8_t>& scope, 397 Status_V1_2 getKeyRequestCommon(const hidl_vec<uint8_t>& scope,
|
/frameworks/av/media/tests/SampleVideoEncoder/ |
D | gradlew.bat | 8 @rem Set local scope for the variables with windows NT shell 72 @rem End local scope for the variables with windows NT shell
|
/frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/ |
D | gradlew.bat | 8 @rem Set local scope for the variables with windows NT shell 78 @rem End local scope for the variables with windows NT shell
|
/frameworks/base/startop/apps/ColorChanging/ |
D | gradlew.bat | 8 @rem Set local scope for the variables with windows NT shell 72 @rem End local scope for the variables with windows NT shell
|
/frameworks/av/media/ndk/include/media/ |
D | NdkMediaDrm.h | 294 media_status_t AMediaDrm_getKeyRequest(AMediaDrm *, const AMediaDrmScope *scope, 317 media_status_t AMediaDrm_provideKeyResponse(AMediaDrm *, const AMediaDrmScope *scope,
|
/frameworks/base/tests/TouchLatency/ |
D | gradlew.bat | 8 @rem Set local scope for the variables with windows NT shell 72 @rem End local scope for the variables with windows NT shell
|
/frameworks/base/tools/streaming_proto/test/ |
D | test.proto | 24 * Enum that outside the scope of any classes. 40 * Enum that is inside the scope of a class.
|
/frameworks/base/tests/ProtoInputStreamTests/src/com/android/test/protoinputstream/ |
D | test.proto | 22 * Enum that outside the scope of any classes. 42 * Enum that is inside the scope of a class.
|