/frameworks/base/core/tests/coretests/apks/install_bad_dex/ |
D | Android.bp | 8 // Inject bad classes.dex file. 17 "classes.dex", 20 cmd: "$(location soong_zip) -o $(genDir)/classes.dex.zip -j -f $(location classes.dex) && " + 21 "$(location merge_zips) -ignore-duplicates $(out) $(genDir)/classes.dex.zip " +
|
/frameworks/layoutlib/create/ |
D | README.txt | 21 generated by the Android build, right before the classes are converted to a DEX format. 25 - some classes need to be overridden, for example all the drawing code that is replaced by Java 2D 27 - some of the classes that need to be changed are final and/or we need access to their private 32 - modifies some of the classes directly using some bytecode manipulation, 34 - injects some new classes, 42 platform as new classes are added, changed or removed. Some configuration that may be platform 61 The goal of the analyzer is to create a graph of all the classes from the input JAR with their 64 To do that, the analyzer is created with a list of base classes to keep -- everything that derives 73 The analyzer is also given a list of classes to exclude. A fake implementation of these classes is 76 With this information, the analyzer parses the input zip to find all the classes. All classes [all …]
|
/frameworks/base/location/lib/ |
D | README.txt | 2 containing classes required by unbundled location providers. 9 o This library can see and instantiate internal platform classes (such as 12 library because they cannot see the internal platform classes. 21 can not use internal platform classes. 23 So ideally all of these classes would be part of the public platform SDK API, 29 It wraps internal platform classes (like ProviderRequest) with a stable 30 API that does not leak the internal classes.
|
/frameworks/base/tools/bit/ |
D | make.cpp | 57 for (vector<string>::const_iterator c = classes.begin(); c != classes.end(); c++) { in HasClass() 239 get_values(value, "class", &module.classes); in read_modules() 244 for (ssize_t i = module.classes.size() - 1; i >= 0; i--) { in read_modules() 245 string cl = module.classes[i]; in read_modules() 248 module.classes.erase(module.classes.begin() + i); in read_modules() 251 if (module.classes.size() == 0) { in read_modules()
|
/frameworks/native/services/inputflinger/reader/ |
D | InputReader.cpp | 189 uint32_t classes = mEventHub->getDeviceClasses(deviceId); in addDeviceLocked() local 192 InputDevice* device = createDeviceLocked(deviceId, controllerNumber, identifier, classes); in addDeviceLocked() 242 uint32_t classes) { in createDeviceLocked() argument 244 controllerNumber, identifier, classes); in createDeviceLocked() 247 if (classes & INPUT_DEVICE_CLASS_EXTERNAL) { in createDeviceLocked() 252 if (classes & INPUT_DEVICE_CLASS_MIC) { in createDeviceLocked() 257 if (classes & INPUT_DEVICE_CLASS_SWITCH) { in createDeviceLocked() 262 if (classes & INPUT_DEVICE_CLASS_ROTARY_ENCODER) { in createDeviceLocked() 267 if (classes & INPUT_DEVICE_CLASS_VIBRATOR) { in createDeviceLocked() 274 if (classes & INPUT_DEVICE_CLASS_KEYBOARD) { in createDeviceLocked() [all …]
|
D | EventHub.cpp | 200 classes(0), in Device() 344 return device->classes; in getDeviceClasses() 1308 device->classes |= INPUT_DEVICE_CLASS_KEYBOARD; in openDeviceLocked() 1314 device->classes |= INPUT_DEVICE_CLASS_CURSOR; in openDeviceLocked() 1322 device->classes |= INPUT_DEVICE_CLASS_ROTARY_ENCODER; in openDeviceLocked() 1334 device->classes |= INPUT_DEVICE_CLASS_TOUCH | INPUT_DEVICE_CLASS_TOUCH_MT; in openDeviceLocked() 1339 device->classes |= INPUT_DEVICE_CLASS_TOUCH; in openDeviceLocked() 1344 device->classes |= INPUT_DEVICE_CLASS_EXTERNAL_STYLUS; in openDeviceLocked() 1348 device->classes &= ~INPUT_DEVICE_CLASS_KEYBOARD; in openDeviceLocked() 1355 uint32_t assumedClasses = device->classes | INPUT_DEVICE_CLASS_JOYSTICK; in openDeviceLocked() [all …]
|
/frameworks/base/services/robotests/ |
D | README | 10 Robolectric loads some classes that it decides from versioned jars of the framework. Since we are 11 part of the framework some of our classes get loaded from these jars. This is NOT what we want, we 13 FrameworkRobolectricTestRunner, that bypasses these jars and loads certain classes from the system 16 To specify which classes to load use either @SystemLoaderClasses or @SystemLoaderPackages. In
|
/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/ |
D | Utils.java | 30 String[] classes = classList.split(","); in getTargetsFromLegacyJackConfig() local 34 int total = classes.length; in getTargetsFromLegacyJackConfig() 41 config.add(new LockTarget(classes[i], requests[i], resets[i])); in getTargetsFromLegacyJackConfig()
|
/frameworks/base/media/lib/remotedisplay/ |
D | README.txt | 3 containing classes required by unbundled remote display providers. 10 app statically or dynamically, the real classes are loaded from the shared 18 o This library can see and instantiate internal platform classes, but it must not 20 break clients of the library because they cannot see the internal platform classes. 29 platform classes.
|
/frameworks/base/media/lib/tvremote/ |
D | README.txt | 2 containing classes required by unbundled atv remote providers. 9 o This library can see and instantiate internal platform classes, but it must not 11 break clients of the library because they cannot see the internal platform classes. 20 platform classes.
|
/frameworks/base/media/lib/signer/ |
D | README.txt | 3 containing classes required by unbundled apps running on devices that use 12 app statically or dynamically, the real classes are loaded from the shared 20 o This library can see and instantiate internal platform classes, but it must not 22 break clients of the library because they cannot see the internal platform classes. 30 Unbundled apps cannot use internal platform classes.
|
/frameworks/base/test-base/ |
D | Android.bp | 19 // This contains the junit.framework and android.test classes that were in 21 // Also contains the com.android.internal.util.Predicate[s] classes. 67 // This contains repackaged versions of the classes from 82 // This contains the android.test classes from android.test.base plus 83 // the com.android.internal.util.Predicate[s] classes. This is only
|
/frameworks/base/test-base/src/junit/framework/ |
D | TestSuite.java | 177 public TestSuite (Class<?>... classes) { 178 for (Class<?> each : classes) 193 public TestSuite(Class<? extends TestCase>[] classes, String name) { 194 this(classes);
|
/frameworks/base/packages/SystemUI/plugin/ |
D | update_plugin_lib.sh | 8 …ES/framework_intermediates/classes.jar:$ANDROID_BUILD_TOP/out/target/common/obj/JAVA_LIBRARIES/cor…
|
/frameworks/base/config/ |
D | Android.bp | 16 name: "preloaded-classes-blacklist", 17 srcs: ["preloaded-classes-blacklist"],
|
/frameworks/base/core/java/com/android/internal/util/ |
D | MessageUtils.java | 52 public static SparseArray<String> findMessageNames(Class[] classes, String[] prefixes) { in findMessageNames() argument 54 for (Class c : classes) { in findMessageNames()
|
/frameworks/base/packages/Tethering/ |
D | jarjar-rules.txt | 2 # If there are files in that filegroup that do not appear here, the classes in the 4 # Don't jar-jar the entire package because tethering still use some internal classes
|
/frameworks/base/services/net/ |
D | Android.bp | 46 // All the classes in netd_aidl_interface must be jarjar so they do not conflict with the 47 // classes generated by netd_aidl_interfaces-platform-java above.
|
/frameworks/opt/net/wifi/service/ |
D | proguard.flags | 1 # Prevent proguard from stripping out any wifi-service classes.
|
/frameworks/av/media/libaaudio/src/legacy/ |
D | README.md | 1 The legacy folder contains the classes that implement AAudio AudioStream on top of
|
/frameworks/base/packages/SystemUI/docs/ |
D | plugins.md | 15 All interfaces need to be independent and not reference classes from SysUI. They should be placed … 18 …ddition of a new method that doesn’t have a default implementation. All classes that are in the p… 98 …agged with an annotation to declare its dependency on each of the plugin classes it depends on. T… 132 … in SysUI like the rest of the plugin, so it cannot reference any of the classes from SystemUIPlug… 177 To be able to implement a plugin, you’ll need a jar file that contains the plugin classes for compi… 217 …sloader is a special classloader based on SysUI’s that only includes the classes within the packag… 221 …gins to include any classes they want without worrying about collisions with SysUI. Plugins can i… 227 … and tries to determine the plugin that caused the crash. If any of the classes in the stack trac…
|
/frameworks/base/tools/preload/ |
D | PrintHtmlDiff.java | 88 Iterable<LoadedClass> classes) { in printTable() argument 100 for (LoadedClass clazz : classes) { in printTable()
|
/frameworks/av/media/utils/ |
D | README | 1 This is a common shared library for media utility classes.
|
/frameworks/base/core/java/android/ddm/ |
D | README.txt | 1 Some classes that handle DDM traffic.
|
/frameworks/base/tests/SmokeTest/tests/ |
D | Android.bp | 7 // automatically get all of its classes loaded into our environment.
|