/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/ |
D | LockFindingClassVisitor.java | 129 InsnList instructions = mn.instructions; in visitEnd() local 137 for (int i = 0; i < instructions.size(); i++) { in visitEnd() 142 AbstractInsnNode s = instructions.getFirst(); in visitEnd() 150 for (int i = 0; i < instructions.size(); i++) { in visitEnd() 151 AbstractInsnNode s = instructions.get(i); in visitEnd() 183 checkState(instructions.get(i + 1).getType() == AbstractInsnNode.LABEL, in visitEnd() 187 checkElementIndex(labelIndex, instructions.size()); in visitEnd() 189 LabelNode label = (LabelNode)instructions.get(labelIndex); in visitEnd() 236 InsnList instructions = mn.instructions; in insertInvokeAcquire() local 240 instructions.insertBefore(node, new InsnNode(Opcodes.DUP)); in insertInvokeAcquire() [all …]
|
/frameworks/libs/binary_translation/assembler/ |
D | Android.bp | 45 "instructions/insn_def_x86.json", 46 "instructions/insn_def_x86_32.json", 53 "instructions/insn_def_x86.json", 54 "instructions/insn_def_x86_64.json",
|
/frameworks/native/libs/binder/tests/parcel_fuzzer/ |
D | main.cpp | 92 std::vector<uint8_t> instructions = provider.ConsumeBytes<uint8_t>( in doReadFuzz() local 105 FUZZ_LOG() << "instructions: " << HexString(instructions.data(), instructions.size()); in doReadFuzz() 107 FuzzedDataProvider instructionsProvider(instructions.data(), instructions.size()); in doReadFuzz()
|
/frameworks/native/libs/binder/rust/tests/parcel_fuzzer/ |
D | parcel_fuzzer.rs | 38 ReadBasicTypes { instructions: Vec<usize> }, 134 ReadOperation::ReadBasicTypes { instructions } => { in do_read_fuzz() 135 for instruction in instructions.iter() { in do_read_fuzz()
|
/frameworks/base/services/core/jni/ |
D | com_android_server_pm_PackageManagerShellCommandDataLoader.cpp | 792 std::vector<IncFsDataBlock> instructions; in receiver() local 857 instructions.push_back(inst); in receiver() 860 writeInstructions(instructions); in receiver() 862 writeInstructions(instructions); in receiver() 870 void writeInstructions(std::vector<IncFsDataBlock>& instructions) { in writeInstructions() argument 871 auto res = this->mIfs->writeBlocks(instructions); in writeInstructions() 872 if (res != instructions.size()) { in writeInstructions() 874 int(instructions.size())); in writeInstructions() 876 instructions.clear(); in writeInstructions()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/ |
D | ChallengeDialogs.kt | 65 val (title, instructions) = if (useRetryStrings) { in <lambda>() constant 113 editText.setHint(instructions) in <lambda>()
|
/frameworks/layoutlib/create/tests/res/mock_data/ |
D | README.md | 5 First, use set up instructions from layoutlib tutorial to make commands like `m` work.
|
/frameworks/base/core/java/android/appwidget/ |
D | flags.aconfig | 33 description: "Enable support for transporting draw instructions as data parcel"
|
/frameworks/compile/libbcc/tests/libbcc/ |
D | getelementptr.ll | 2 ; instructions into the driver info structure as expected - namely, 4 ; the instructions that are generated are in the loop header.
|
/frameworks/base/tests/CompanionDeviceMultiDeviceTests/ |
D | README.md | 11 To test on virtual devices, follow instructions to [set up netsim on cuttlefish](https://g3doc.corp…
|
/frameworks/base/apct-tests/perftests/surfaceflinger/ |
D | README.md | 5 is available, it is better to use the following instructions to lock CPU and GPU frequencies.
|
/frameworks/minikin/app/ |
D | Android.bp | 15 // see how_to_run.txt for instructions on running these tests
|
/frameworks/base/apct-tests/perftests/windowmanager/ |
D | README.md | 5 is available, it is better to use the following instructions to lock CPU and GPU frequencies.
|
/frameworks/minikin/tests/stresstest/ |
D | Android.bp | 15 // see how_to_run.txt for instructions on running these tests
|
/frameworks/compile/libbcc/lib/ |
D | RSAddDebugInfoPass.cpp | 183 for (llvm::Instruction &inst : llvm::instructions(Func)) { in attachDebugInfo() 250 for (llvm::Instruction &inst : llvm::instructions(Func)) { in attachDebugInfo()
|
/frameworks/base/apct-tests/perftests/inputmethod/ |
D | README.md | 7 is available, it is better to use the following instructions to lock CPU and GPU frequencies.
|
/frameworks/libs/binary_translation/backend/ |
D | Android.bp | 76 // fields. lir instructions MUST end with `lir_instructions.json` and 105 // fields. lir instructions MUST end with `lir_instructions.json` and
|
/frameworks/base/tools/lock_agent/ |
D | agent.cpp | 140 for (auto it = c.instructions.begin(); it != c.instructions.end(); ++it) { in transform() 188 cIr->instructions.InsertBefore(instructionAfter, instruction); in addInst()
|
/frameworks/minikin/tests/unittest/ |
D | Android.bp | 15 // see how_to_run.txt for instructions on running these tests
|
/frameworks/av/media/module/codecs/amrwb/enc/ |
D | Android.bp | 99 // don't actually generate neon instructions, see bug 26932980
|
/frameworks/native/cmds/evemu-record/ |
D | README.md | 10 Android-specific features. For usage instructions, run `evemu-record --help`.
|
/frameworks/av/media/tests/benchmark/ |
D | README.md | 23 … can use a different location, but you have to modify the rest of the instructions to replace /dat… 125 To get the resource files for the test follow instructions given in [Resources](#Resources) 179 To get the resource files for the test follow instructions given in [Resources](#Resources)
|
/frameworks/base/core/proto/android/media/ |
D | audioattributes.proto | 100 // instructions or help utterances.
|
/frameworks/base/tools/protologtool/ |
D | README.md | 114 … logging groups or statements you should build the project and follow instructions printed by the …
|
/frameworks/base/core/java/android/widget/ |
D | RemoteViews.java | 3931 SetDrawInstructionAction(@NonNull final DrawInstructions instructions) { 3932 mInstructions = instructions; 7631 private DrawInstructions(@NonNull List<byte[]> instructions) { 7633 mInstructions = new ArrayList<>(instructions.size()); 7634 for (byte[] instruction : instructions) { 7649 final List<byte[]> instructions = new ArrayList<>(size); 7652 instructions.add(instruction); 7654 return new DrawInstructions(instructions); 7663 final List<byte[]> instructions = drawInstructions.mInstructions; 7664 dest.writeInt(instructions.size()); [all …]
|